[GRASS-SVN] r43590 - grass/branches/releasebranch_6_4/raster/r.to.vect

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Sep 21 09:39:30 EDT 2010


Author: neteler
Date: 2010-09-21 13:39:29 +0000 (Tue, 21 Sep 2010)
New Revision: 43590

Modified:
   grass/branches/releasebranch_6_4/raster/r.to.vect/main.c
Log:
backport: guisection

Modified: grass/branches/releasebranch_6_4/raster/r.to.vect/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.to.vect/main.c	2010-09-21 13:37:59 UTC (rev 43589)
+++ grass/branches/releasebranch_6_4/raster/r.to.vect/main.c	2010-09-21 13:39:29 UTC (rev 43590)
@@ -47,7 +47,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, conversion, vectorization");
     module->description = _("Converts a raster map into a vector map layer.");
 
     in_opt = G_define_standard_option(G_OPT_R_INPUT);
@@ -71,12 +71,14 @@
     value_flg->key = 'v';
     value_flg->description =
 	_("Use raster values as categories instead of unique sequence (CELL only)");
+    value_flg->guisection = _("Attributes");
 
     z_flg = G_define_flag();
     z_flg->key = 'z';
     z_flg->description =
 	_("Write raster values as z coordinate. Table is not created. "
 	  "Currently supported only for points.");
+    z_flg->guisection = _("Attributes");
 
     no_topol = G_define_flag();
     no_topol->key = 'b';



More information about the grass-commit mailing list