[GRASS5] Re: grass5 digest, Vol 1 #2162 - 1 msg

If we could get a command-line module like I proposed for "i.gcp", I (or
Cedric) could write a TckTk GUI wrapper for it.

Michael
______________________________
Michael Barton, Professor of Anthropology
School of Human Evolution and Social Change
Arizona State University
Tempe, AZ 85287-2402
USA

voice: 480-965-6262; fax: 480-965-7671
www: http://www.public.asu.edu/~cmbarton

From: <grass5-request@grass.itc.it>
Reply-To: <grass5@grass.itc.it>
Date: Wed, 22 Mar 2006 12:01:06 +0100
To: <grass5@grass.itc.it>
Subject: grass5 digest, Vol 1 #2162 - 1 msg

Send grass5 mailing list submissions to
grass5@grass.itc.it

To subscribe or unsubscribe via the World Wide Web, visit
http://grass.itc.it/mailman/listinfo/grass5
or, via email, send a message with subject or body 'help' to
grass5-request@grass.itc.it

You can reach the person managing the list at
grass5-admin@grass.itc.it

When replying, please edit your Subject line so it is more specific
than "Re: Contents of grass5 digest..."

Today's Topics:

   1. Re: [GRASSLIST:290] Re: dem from satellite data (Markus Neteler)
_______________________________________________
grass5 mailing list
grass5@grass.itc.it
http://grass.itc.it/mailman/listinfo/grass5

If we could get a command-line module like I proposed for "i.gcp", I
(or Cedric) could write a TckTk GUI wrapper for it.

The file format of $MAPSET/group/$GROUP/POINTS is very easy to recreate,
the rms error algorithm is easily borrowed & recoded.

for adding GCPs to a TIFF, see also

gdal_translate \
  -gcp pixel1 line1 easting1 northing1 \
  -gcp pixel2 line2 easting2 northing2 \
  -gcp etc \
  src_dataset dst_dataset

In the past to do thin-plate-spline rectification [which GRASS doesn't
do], I've created the GCP POINTS file with i.points and used a script to
parse the POINTS file to feed to gdal_translate, "rectified" (warped)
with gdalwarp, and reload into GRASS with r.in.gdal.

Hamish