[GRASS-SVN] r42288 - grass/branches/develbranch_6/raster/r.to.vect

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 18 06:49:36 EDT 2010


Author: martinl
Date: 2010-05-18 06:49:36 -0400 (Tue, 18 May 2010)
New Revision: 42288

Modified:
   grass/branches/develbranch_6/raster/r.to.vect/main.c
Log:
r.to.vect: more guisections
(merge r42286 from trunk)


Modified: grass/branches/develbranch_6/raster/r.to.vect/main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.to.vect/main.c	2010-05-18 10:47:21 UTC (rev 42287)
+++ grass/branches/develbranch_6/raster/r.to.vect/main.c	2010-05-18 10:49:36 UTC (rev 42288)
@@ -47,8 +47,8 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
-    module->description = _("Converts a raster map into a vector map layer.");
+    module->keywords = _("raster, conversion, vectorization");
+    module->description = _("Converts a raster map into a vector map.");
 
     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