[GRASS-SVN] r59887 - grass/branches/releasebranch_7_0/raster/r.stream.distance

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Apr 21 10:22:42 PDT 2014


Author: madi
Date: 2014-04-21 10:22:42 -0700 (Mon, 21 Apr 2014)
New Revision: 59887

Modified:
   grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c
Log:
Added description for outlet map

Modified: grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c	2014-04-21 17:21:15 UTC (rev 59886)
+++ grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c	2014-04-21 17:22:42 UTC (rev 59887)
@@ -46,7 +46,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->label = _("Calculates distance to and elevation above streams and outlets.");
+    module->label = _("Calculates distance to and elevation above streams and outlet.");
     module->description =
       _("The module can work in stream mode where target are streams and "
         "outlets mode where targets are outlets.");
@@ -57,7 +57,8 @@
 
     in_stm_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_stm_opt->key = "stream_rast";
-    in_stm_opt->description = _("Name for input raster map with stream network");
+    in_stm_opt->description = _("Name for input raster map with stream network "
+                                "(in outlet mode is the name for outlet raster map)");
 
     in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_dir_opt->key = "direction";



More information about the grass-commit mailing list