[GRASS-SVN] r60321 - in grass/trunk/vector: v.edit v.lrs/v.lrs.create v.lrs/v.lrs.where v.net v.support

svn_grass at osgeo.org svn_grass at osgeo.org
Sun May 18 09:13:50 PDT 2014


Author: hcho
Date: 2014-05-18 09:13:50 -0700 (Sun, 18 May 2014)
New Revision: 60321

Modified:
   grass/trunk/vector/v.edit/args.c
   grass/trunk/vector/v.lrs/v.lrs.create/main.c
   grass/trunk/vector/v.lrs/v.lrs.where/main.c
   grass/trunk/vector/v.net/args.c
   grass/trunk/vector/v.support/main.c
Log:
v.edit, v.lrs.create, v.lrs.where, v.net, v.support: Option thresh => threshold for consistency

Modified: grass/trunk/vector/v.edit/args.c
===================================================================
--- grass/trunk/vector/v.edit/args.c	2014-05-18 16:12:52 UTC (rev 60320)
+++ grass/trunk/vector/v.edit/args.c	2014-05-18 16:13:50 UTC (rev 60321)
@@ -99,7 +99,7 @@
 	_("Difference in x,y,z direction for moving feature or vertex");
 
     params->maxdist = G_define_option();
-    params->maxdist->key = "thresh";
+    params->maxdist->key = "threshold";
     params->maxdist->type = TYPE_DOUBLE;
     params->maxdist->required = NO;
     params->maxdist->multiple = YES;

Modified: grass/trunk/vector/v.lrs/v.lrs.create/main.c
===================================================================
--- grass/trunk/vector/v.lrs/v.lrs.create/main.c	2014-05-18 16:12:52 UTC (rev 60320)
+++ grass/trunk/vector/v.lrs/v.lrs.create/main.c	2014-05-18 16:13:50 UTC (rev 60321)
@@ -224,7 +224,7 @@
     table_opt->description = _("New table is created by this module");
 
     thresh_opt = G_define_option();
-    thresh_opt->key = "thresh";
+    thresh_opt->key = "threshold";
     thresh_opt->type = TYPE_DOUBLE;
     thresh_opt->required = NO;
     thresh_opt->answer = "1";

Modified: grass/trunk/vector/v.lrs/v.lrs.where/main.c
===================================================================
--- grass/trunk/vector/v.lrs/v.lrs.where/main.c	2014-05-18 16:12:52 UTC (rev 60320)
+++ grass/trunk/vector/v.lrs/v.lrs.where/main.c	2014-05-18 16:13:50 UTC (rev 60321)
@@ -101,7 +101,7 @@
     table_opt->description = _("Name of the reference system table");
 
     thresh_opt = G_define_option();
-    thresh_opt->key = "thresh";
+    thresh_opt->key = "threshold";
     thresh_opt->type = TYPE_DOUBLE;
     thresh_opt->required = NO;
     thresh_opt->answer = "1000";

Modified: grass/trunk/vector/v.net/args.c
===================================================================
--- grass/trunk/vector/v.net/args.c	2014-05-18 16:12:52 UTC (rev 60320)
+++ grass/trunk/vector/v.net/args.c	2014-05-18 16:13:50 UTC (rev 60321)
@@ -63,7 +63,7 @@
     opt->nfield_opt->guisection = _("Nodes");
 
     opt->thresh_opt = G_define_option();
-    opt->thresh_opt->key = "thresh";
+    opt->thresh_opt->key = "threshold";
     opt->thresh_opt->type = TYPE_DOUBLE;
     opt->thresh_opt->required = NO;
     opt->thresh_opt->multiple = NO;

Modified: grass/trunk/vector/v.support/main.c
===================================================================
--- grass/trunk/vector/v.support/main.c	2014-05-18 16:12:52 UTC (rev 60320)
+++ grass/trunk/vector/v.support/main.c	2014-05-18 16:13:50 UTC (rev 60321)
@@ -95,7 +95,7 @@
     zone->description = _("Vector map projection zone");
 
     thresh = G_define_option();
-    thresh->key = "thresh";
+    thresh->key = "threshold";
     thresh->type = TYPE_DOUBLE;
     thresh->required = NO;
     thresh->description =



More information about the grass-commit mailing list