[GRASS-SVN] r70371 - in grass/trunk/imagery/i.ortho.photo: . i.ortho.init

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Jan 14 07:23:42 PST 2017


Author: ychemin
Date: 2017-01-14 07:23:42 -0800 (Sat, 14 Jan 2017)
New Revision: 70371

Modified:
   grass/trunk/imagery/i.ortho.photo/Makefile
   grass/trunk/imagery/i.ortho.photo/i.ortho.init/i.ortho.init.html
   grass/trunk/imagery/i.ortho.photo/i.ortho.init/main.c
Log:
bug fix i.ortho.init input key names

Modified: grass/trunk/imagery/i.ortho.photo/Makefile
===================================================================
--- grass/trunk/imagery/i.ortho.photo/Makefile	2017-01-14 14:56:59 UTC (rev 70370)
+++ grass/trunk/imagery/i.ortho.photo/Makefile	2017-01-14 15:23:42 UTC (rev 70371)
@@ -4,6 +4,7 @@
 SUBDIRS1 = \
 	i.ortho.camera \
 	i.ortho.elev \
+	i.ortho.init \
 	i.ortho.rectify \
 	i.ortho.transform
 

Modified: grass/trunk/imagery/i.ortho.photo/i.ortho.init/i.ortho.init.html
===================================================================
--- grass/trunk/imagery/i.ortho.photo/i.ortho.init/i.ortho.init.html	2017-01-14 14:56:59 UTC (rev 70370)
+++ grass/trunk/imagery/i.ortho.photo/i.ortho.init/i.ortho.init.html	2017-01-14 15:23:42 UTC (rev 70371)
@@ -94,9 +94,11 @@
 
 <em>
 <a href="i.ortho.photo.html">i.ortho.photo</a>,
-<a href="i.ortho.camera.html">i.ortho.camera</a>,
 <a href="i.photo.2image.html">i.photo.2image</a>,
 <a href="i.photo.2target.html">i.photo.2target</a>,
+<a href="i.ortho.elev.html">i.ortho.elev</a>,
+<a href="i.ortho.camera.html">i.ortho.camera</a>,
+<a href="i.ortho.transform.html">i.ortho.transform</a>,
 <a href="i.photo.rectify.html">i.photo.rectify</a>
 </em>
 

Modified: grass/trunk/imagery/i.ortho.photo/i.ortho.init/main.c
===================================================================
--- grass/trunk/imagery/i.ortho.photo/i.ortho.init/main.c	2017-01-14 14:56:59 UTC (rev 70370)
+++ grass/trunk/imagery/i.ortho.photo/i.ortho.init/main.c	2017-01-14 15:23:42 UTC (rev 70371)
@@ -92,27 +92,27 @@
     omega_opt->description = _("Initial Camera Omega (roll) degrees");
 
     phi_opt = G_define_option();
-    phi_opt->key = "omega";
+    phi_opt->key = "phi";
     phi_opt->type = TYPE_DOUBLE;
     phi_opt->description = _("Initial Camera Phi (pitch) degrees");
 
     kappa_opt = G_define_option();
-    kappa_opt->key = "omega";
+    kappa_opt->key = "kappa";
     kappa_opt->type = TYPE_DOUBLE;
     kappa_opt->description = _("Initial Camera Kappa (yaw) degrees");
 
     omegasd_opt = G_define_option();
-    omegasd_opt->key = "omega";
+    omegasd_opt->key = "omega_sd";
     omegasd_opt->type = TYPE_DOUBLE;
     omegasd_opt->description = _("Omega (roll) standard deviation");
 
     phisd_opt = G_define_option();
-    phisd_opt->key = "omega";
+    phisd_opt->key = "phi_sd";
     phisd_opt->type = TYPE_DOUBLE;
     phisd_opt->description = _("Phi (pitch) standard deviation");
 
     kappasd_opt = G_define_option();
-    kappasd_opt->key = "omega";
+    kappasd_opt->key = "kappa_sd";
     kappasd_opt->type = TYPE_DOUBLE;
     kappasd_opt->description = _("Kappa (yaw) standard deviation");
 



More information about the grass-commit mailing list