[GRASS-SVN] r71097 - in grass/trunk/vector: v.lidar.correction v.lidar.edgedetection v.lidar.growing v.outlier

svn_grass at osgeo.org svn_grass at osgeo.org
Thu May 18 02:46:13 PDT 2017


Author: neteler
Date: 2017-05-18 02:46:13 -0700 (Thu, 18 May 2017)
New Revision: 71097

Modified:
   grass/trunk/vector/v.lidar.correction/main.c
   grass/trunk/vector/v.lidar.edgedetection/main.c
   grass/trunk/vector/v.lidar.growing/main.c
   grass/trunk/vector/v.outlier/main.c
Log:
v.lidar.*, v.outlier: document units used for step parameters (completion of trunk r71094)

Modified: grass/trunk/vector/v.lidar.correction/main.c
===================================================================
--- grass/trunk/vector/v.lidar.correction/main.c	2017-05-17 19:07:28 UTC (rev 71096)
+++ grass/trunk/vector/v.lidar.correction/main.c	2017-05-18 09:46:13 UTC (rev 71097)
@@ -98,7 +98,7 @@
     stepE_opt->required = NO;
     stepE_opt->answer = "25";
     stepE_opt->description =
-	_("Length of each spline step in the east-west direction");
+	_("Length of each spline step (pixels) in the east-west direction");
     stepE_opt->guisection = _("Settings");
 
     stepN_opt = G_define_option();
@@ -107,7 +107,7 @@
     stepN_opt->required = NO;
     stepN_opt->answer = "25";
     stepN_opt->description =
-	_("Length of each spline step in the north-south direction");
+	_("Length of each spline step (pixels) in the north-south direction");
     stepN_opt->guisection = _("Settings");
 
     lambda_f_opt = G_define_option();

Modified: grass/trunk/vector/v.lidar.edgedetection/main.c
===================================================================
--- grass/trunk/vector/v.lidar.edgedetection/main.c	2017-05-17 19:07:28 UTC (rev 71096)
+++ grass/trunk/vector/v.lidar.edgedetection/main.c	2017-05-18 09:46:13 UTC (rev 71097)
@@ -95,7 +95,7 @@
     stepE_opt->required = NO;
     stepE_opt->answer = "4";
     stepE_opt->description =
-	_("Length of each spline step in the east-west direction");
+	_("Length of each spline step (pixels) in the east-west direction");
     stepE_opt->guisection = _("Settings");
 
     stepN_opt = G_define_option();
@@ -104,7 +104,7 @@
     stepN_opt->required = NO;
     stepN_opt->answer = "4";
     stepN_opt->description =
-	_("Length of each spline step in the north-south direction");
+	_("Length of each spline step (pixels) in the north-south direction");
     stepN_opt->guisection = _("Settings");
 
     lambdaB_opt = G_define_option();

Modified: grass/trunk/vector/v.lidar.growing/main.c
===================================================================
--- grass/trunk/vector/v.lidar.growing/main.c	2017-05-17 19:07:28 UTC (rev 71096)
+++ grass/trunk/vector/v.lidar.growing/main.c	2017-05-18 09:46:13 UTC (rev 71097)
@@ -70,7 +70,7 @@
     dbCursor cursor;
 
 /*------------------------------------------------------------------------------------------*/
-    /* Options' declaration */ ;
+    /* Options' declaration */
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("LIDAR"));

Modified: grass/trunk/vector/v.outlier/main.c
===================================================================
--- grass/trunk/vector/v.outlier/main.c	2017-05-17 19:07:28 UTC (rev 71096)
+++ grass/trunk/vector/v.outlier/main.c	2017-05-18 09:46:13 UTC (rev 71097)
@@ -100,7 +100,7 @@
     stepE_opt->required = NO;
     stepE_opt->answer = "10";
     stepE_opt->description =
-	_("Length of each spline step in the east-west direction");
+	_("Length of each spline step (pixels) in the east-west direction");
     stepE_opt->guisection = _("Settings");
 
     stepN_opt = G_define_option();
@@ -109,7 +109,7 @@
     stepN_opt->required = NO;
     stepN_opt->answer = "10";
     stepN_opt->description =
-	_("Length of each spline step in the north-south direction");
+	_("Length of each spline step (pixels) in the north-south direction");
     stepN_opt->guisection = _("Settings");
 
     lambda_f_opt = G_define_option();



More information about the grass-commit mailing list