[GRASS-SVN] r73013 - grass/trunk/vector/v.distance
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Jul 28 14:08:57 PDT 2018
Author: mmetz
Date: 2018-07-28 14:08:57 -0700 (Sat, 28 Jul 2018)
New Revision: 73013
Modified:
grass/trunk/vector/v.distance/main.c
Log:
v.distance: add distance units to option description
Modified: grass/trunk/vector/v.distance/main.c
===================================================================
--- grass/trunk/vector/v.distance/main.c 2018-07-28 11:26:19 UTC (rev 73012)
+++ grass/trunk/vector/v.distance/main.c 2018-07-28 21:08:57 UTC (rev 73013)
@@ -170,7 +170,8 @@
opt.max->type = TYPE_DOUBLE;
opt.max->required = NO;
opt.max->answer = "-1";
- opt.max->description = _("Maximum distance or -1 for no limit");
+ opt.max->label = _("Maximum distance or -1 for no limit");
+ opt.max->description = _("Map units, meters for ll");
opt.min = G_define_option();
opt.min->key = "dmin";
@@ -177,7 +178,8 @@
opt.min->type = TYPE_DOUBLE;
opt.min->required = NO;
opt.min->answer = "-1";
- opt.min->description = _("Minimum distance or -1 for no limit");
+ opt.min->label = _("Minimum distance or -1 for no limit");
+ opt.min->description = _("Map units, meters for ll");
opt.upload = G_define_option();
opt.upload->key = "upload";
More information about the grass-commit
mailing list