[GRASS-SVN] r57744 - grass/branches/releasebranch_6_4/raster/r.carve

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 18 17:40:30 PDT 2013


Author: hamish
Date: 2013-09-18 17:40:30 -0700 (Wed, 18 Sep 2013)
New Revision: 57744

Modified:
   grass/branches/releasebranch_6_4/raster/r.carve/main.c
Log:
module parameter text cleanup (merge from devbr6)

Modified: grass/branches/releasebranch_6_4/raster/r.carve/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.carve/main.c	2013-09-19 00:35:36 UTC (rev 57743)
+++ grass/branches/releasebranch_6_4/raster/r.carve/main.c	2013-09-19 00:40:30 UTC (rev 57744)
@@ -9,7 +9,7 @@
  * PURPOSE:      Takes vector stream data, converts it to 3D raster and
  *               subtracts a specified depth
  *
- * COPYRIGHT:    (C) 2006 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2006-2013 by the GRASS Development Team
  *
  *               This program is free software under the GNU General Public
  *               License (>=v2). Read the file COPYING that comes with GRASS
@@ -75,6 +75,7 @@
 
     module = G_define_module();
     module->keywords = _("raster, hydrology");
+    module->label = _("Generates stream channels.");
     module->description = _("Takes vector stream data, transforms it "
 			    "to raster and subtracts depth from the output DEM.");
 
@@ -85,7 +86,7 @@
     parm.invect = G_define_standard_option(G_OPT_V_INPUT);
     parm.invect->key = "vect";
     parm.invect->description =
-	_("Name of vector input map containing stream(s)");
+	_("Name of input vector map containing stream(s)");
 
     parm.outrast = G_define_standard_option(G_OPT_R_OUTPUT);
 
@@ -98,8 +99,8 @@
     width = G_define_option();
     width->key = "width";
     width->type = TYPE_DOUBLE;
-    width->description = _("Stream width (in meters). "
-			   "Default is raster cell width");
+    width->label = _("Stream width (in meters)");
+    width->description = _("Default is raster cell width");
 
     depth = G_define_option();
     depth->key = "depth";



More information about the grass-commit mailing list