[GRASS-SVN] r70851 - grass/trunk/imagery/i.ortho.photo/i.ortho.transform
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Apr 7 09:41:10 PDT 2017
Author: ychemin
Date: 2017-04-07 09:41:10 -0700 (Fri, 07 Apr 2017)
New Revision: 70851
Modified:
grass/trunk/imagery/i.ortho.photo/i.ortho.transform/i.ortho.transform.html
grass/trunk/imagery/i.ortho.photo/i.ortho.transform/main.c
Log:
clarifying for users
Modified: grass/trunk/imagery/i.ortho.photo/i.ortho.transform/i.ortho.transform.html
===================================================================
--- grass/trunk/imagery/i.ortho.photo/i.ortho.transform/i.ortho.transform.html 2017-04-07 16:17:00 UTC (rev 70850)
+++ grass/trunk/imagery/i.ortho.photo/i.ortho.transform/i.ortho.transform.html 2017-04-07 16:41:10 UTC (rev 70851)
@@ -7,7 +7,7 @@
<h2>NOTES</h2>
For coordinates given with the <b>coords</b> file option or fed from
-<tt>stdin</tt>, the input format is "x y" with one coordinate pair per
+<tt>stdin</tt>, the input format is "x y z" with one coordinate pair per
line.
<p>The transformations are:
@@ -53,6 +53,8 @@
<em><a href="i.rectify.html">i.rectify</a></em>
+<h2>TODO</h2>
+Update this document with x,y,z<->E,N,H information
<h2>AUTHORS</h2>
Modified: grass/trunk/imagery/i.ortho.photo/i.ortho.transform/main.c
===================================================================
--- grass/trunk/imagery/i.ortho.photo/i.ortho.transform/main.c 2017-04-07 16:17:00 UTC (rev 70850)
+++ grass/trunk/imagery/i.ortho.photo/i.ortho.transform/main.c 2017-04-07 16:41:10 UTC (rev 70851)
@@ -425,12 +425,12 @@
xfm_pts->required = NO;
xfm_pts->label =
_("File containing coordinates to transform (\"-\" to read from stdin)");
- xfm_pts->description = _("Local x,y coordinates to target east,north");
+ xfm_pts->description = _("Local x,y,z coordinates to target east,north,height");
rev_flag = G_define_flag();
rev_flag->key = 'r';
rev_flag->label = _("Reverse transform of coords file or coeff. dump");
- rev_flag->description = _("Target east,north coordinates to local x,y");
+ rev_flag->description = _("Target east,north,height coordinates to local x,y,z");
dump_flag = G_define_flag();
dump_flag->key = 'x';
More information about the grass-commit
mailing list