[GRASS-SVN] r42286 - grass/trunk/raster/r.to.vect

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 18 06:46:53 EDT 2010


Author: martinl
Date: 2010-05-18 06:46:53 -0400 (Tue, 18 May 2010)
New Revision: 42286

Modified:
   grass/trunk/raster/r.to.vect/main.c
Log:
r.to.vect: more guisections


Modified: grass/trunk/raster/r.to.vect/main.c
===================================================================
--- grass/trunk/raster/r.to.vect/main.c	2010-05-18 10:43:07 UTC (rev 42285)
+++ grass/trunk/raster/r.to.vect/main.c	2010-05-18 10:46:53 UTC (rev 42286)
@@ -68,7 +68,9 @@
 
     module = G_define_module();
     G_add_keyword(_("raster"));
-    module->description = _("Converts a raster map into a vector map layer.");
+    G_add_keyword(_("conversion"));
+    G_add_keyword(_("vectorization"));
+    module->description = _("Converts a raster map into a vector map.");
 
     in_opt = G_define_standard_option(G_OPT_R_INPUT);
 
@@ -91,12 +93,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