[GRASS-SVN] r63147 - grass/trunk/vector/v.to.rast
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 26 09:08:23 PST 2014
Author: martinl
Date: 2014-11-26 09:08:23 -0800 (Wed, 26 Nov 2014)
New Revision: 63147
Modified:
grass/trunk/vector/v.to.rast/main.c
Log:
v.to.rast: use standardized options (#2409)
Modified: grass/trunk/vector/v.to.rast/main.c
===================================================================
--- grass/trunk/vector/v.to.rast/main.c 2014-11-26 17:06:02 UTC (rev 63146)
+++ grass/trunk/vector/v.to.rast/main.c 2014-11-26 17:08:23 UTC (rev 63147)
@@ -82,19 +82,19 @@
use_opt->descriptions = desc;
col = G_define_standard_option(G_OPT_DB_COLUMN);
- col->key = "attrcolumn";
+ col->key = "attribute_column";
col->description =
_("Name of column for 'attr' parameter (data type must be numeric)");
col->guisection = _("Attributes");
rgbcol_opt = G_define_standard_option(G_OPT_DB_COLUMN);
- rgbcol_opt->key = "rgbcolumn";
+ rgbcol_opt->key = "rgb_column";
rgbcol_opt->description =
_("Name of color definition column (with RRR:GGG:BBB entries)");
rgbcol_opt->guisection = _("Attributes");
label_opt = G_define_standard_option(G_OPT_DB_COLUMN);
- label_opt->key = "labelcolumn";
+ label_opt->key = "label_column";
label_opt->description =
_("Name of column used as raster category labels");
label_opt->guisection = _("Attributes");
More information about the grass-commit
mailing list