[GRASS-SVN] r71230 - in grass/branches/releasebranch_7_2/vector: v.lidar.edgedetection v.outlier v.surf.bspline

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jun 26 11:18:49 PDT 2017


Author: mmetz
Date: 2017-06-26 11:18:49 -0700 (Mon, 26 Jun 2017)
New Revision: 71230

Modified:
   grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c
   grass/branches/releasebranch_7_2/vector/v.outlier/main.c
   grass/branches/releasebranch_7_2/vector/v.surf.bspline/main.c
Log:
lidar vector modules: fix ns_step/ew_step option descriptions

Modified: grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c	2017-06-26 18:09:08 UTC (rev 71229)
+++ grass/branches/releasebranch_7_2/vector/v.lidar.edgedetection/main.c	2017-06-26 18:18:49 UTC (rev 71230)
@@ -94,7 +94,7 @@
     stepE_opt->type = TYPE_DOUBLE;
     stepE_opt->required = NO;
     stepE_opt->label =
-	_("Length of each spline step (pixels) in the east-west direction");
+	_("Length of each spline step in the east-west direction");
     stepE_opt->description = _("Default: 4 * east-west resolution");
     stepE_opt->guisection = _("Settings");
 
@@ -103,7 +103,7 @@
     stepN_opt->type = TYPE_DOUBLE;
     stepN_opt->required = NO;
     stepN_opt->label =
-	_("Length of each spline step (pixels) in the north-south direction");
+	_("Length of each spline step in the north-south direction");
     stepN_opt->description = _("Default: 4 * north-south resolution");
     stepN_opt->guisection = _("Settings");
 

Modified: grass/branches/releasebranch_7_2/vector/v.outlier/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.outlier/main.c	2017-06-26 18:09:08 UTC (rev 71229)
+++ grass/branches/releasebranch_7_2/vector/v.outlier/main.c	2017-06-26 18:18:49 UTC (rev 71230)
@@ -99,7 +99,7 @@
     stepE_opt->type = TYPE_DOUBLE;
     stepE_opt->required = NO;
     stepE_opt->label =
-	_("Length of each spline step (pixels) in the east-west direction");
+	_("Length of each spline step in the east-west direction");
     stepE_opt->description = _("Default: 10 * east-west resolution");
     stepE_opt->guisection = _("Settings");
 
@@ -107,8 +107,8 @@
     stepN_opt->key = "ns_step";
     stepN_opt->type = TYPE_DOUBLE;
     stepN_opt->required = NO;
-    stepN_opt->description =
-	_("Length of each spline step (pixels) in the north-south direction");
+    stepN_opt->label =
+	_("Length of each spline step in the north-south direction");
     stepN_opt->description = _("Default: 10 * north-south resolution");
     stepN_opt->guisection = _("Settings");
 

Modified: grass/branches/releasebranch_7_2/vector/v.surf.bspline/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.surf.bspline/main.c	2017-06-26 18:09:08 UTC (rev 71229)
+++ grass/branches/releasebranch_7_2/vector/v.surf.bspline/main.c	2017-06-26 18:18:49 UTC (rev 71230)
@@ -145,7 +145,7 @@
     stepE_opt->type = TYPE_DOUBLE;
     stepE_opt->required = NO;
     stepE_opt->label =
-	_("Length of each spline step (pixels) in the east-west direction");
+	_("Length of each spline step in the east-west direction");
     stepE_opt->description = _("Default: 4 * east-west resolution");
     stepE_opt->guisection = _("Settings");
 
@@ -154,7 +154,7 @@
     stepN_opt->type = TYPE_DOUBLE;
     stepN_opt->required = NO;
     stepN_opt->label =
-	_("Length of each spline step (pixels) in the north-south direction");
+	_("Length of each spline step in the north-south direction");
     stepN_opt->description = _("Default: 4 * north-south resolution");
     stepN_opt->guisection = _("Settings");
 



More information about the grass-commit mailing list