Browse Source

r.to.vect: more guisections

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@42286 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 years ago
parent
commit
3346480ef7
1 changed files with 5 additions and 1 deletions
  1. 5 1
      raster/r.to.vect/main.c

+ 5 - 1
raster/r.to.vect/main.c

@@ -68,7 +68,9 @@ int main(int argc, char *argv[])
 
     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 @@ int main(int argc, char *argv[])
     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';