[GRASS-SVN] r63130 - grass/trunk/vector/v.qcount

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 26 08:45:49 PST 2014


Author: martinl
Date: 2014-11-26 08:45:49 -0800 (Wed, 26 Nov 2014)
New Revision: 63130

Modified:
   grass/trunk/vector/v.qcount/main.c
Log:
v.qcount: use standardized options (#2409)

Modified: grass/trunk/vector/v.qcount/main.c
===================================================================
--- grass/trunk/vector/v.qcount/main.c	2014-11-26 16:45:40 UTC (rev 63129)
+++ grass/trunk/vector/v.qcount/main.c	2014-11-26 16:45:49 UTC (rev 63130)
@@ -72,13 +72,13 @@
 	_("Name for output quadrant centers map (number of points is written as category)");
 
     parm.n = G_define_option();
-    parm.n->key = "n";
+    parm.n->key = "nquadrats";
     parm.n->type = TYPE_INTEGER;
     parm.n->required = YES;
     parm.n->description = _("Number of quadrats");
 
     parm.r = G_define_option();
-    parm.r->key = "r";
+    parm.r->key = "radius";
     parm.r->type = TYPE_DOUBLE;
     parm.r->required = YES;
     parm.r->description = _("Quadrat radius");



More information about the grass-commit mailing list