[GRASS-SVN] r71098 - in grass/branches/releasebranch_7_2/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:47:07 PDT 2017
Author: neteler
Date: 2017-05-18 02:47:07 -0700 (Thu, 18 May 2017)
New Revision: 71098
Modified:
grass/branches/releasebranch_7_2/vector/v.lidar.correction/main.c
grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c
grass/branches/releasebranch_7_2/vector/v.lidar.growing/main.c
grass/branches/releasebranch_7_2/vector/v.outlier/main.c
Log:
v.lidar.*, v.outlier: document units used for step parameters (completion of trunk r71094; backport of trunk r71097)
Modified: grass/branches/releasebranch_7_2/vector/v.lidar.correction/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.lidar.correction/main.c 2017-05-18 09:46:13 UTC (rev 71097)
+++ grass/branches/releasebranch_7_2/vector/v.lidar.correction/main.c 2017-05-18 09:47:07 UTC (rev 71098)
@@ -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/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c 2017-05-18 09:46:13 UTC (rev 71097)
+++ grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c 2017-05-18 09:47:07 UTC (rev 71098)
@@ -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/branches/releasebranch_7_2/vector/v.lidar.growing/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.lidar.growing/main.c 2017-05-18 09:46:13 UTC (rev 71097)
+++ grass/branches/releasebranch_7_2/vector/v.lidar.growing/main.c 2017-05-18 09:47:07 UTC (rev 71098)
@@ -70,7 +70,7 @@
dbCursor cursor;
/*------------------------------------------------------------------------------------------*/
- /* Options' declaration */ ;
+ /* Options' declaration */
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("LIDAR"));
Modified: grass/branches/releasebranch_7_2/vector/v.outlier/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.outlier/main.c 2017-05-18 09:46:13 UTC (rev 71097)
+++ grass/branches/releasebranch_7_2/vector/v.outlier/main.c 2017-05-18 09:47:07 UTC (rev 71098)
@@ -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