[GRASS-SVN] r59611 - grass/trunk/raster/r.stream.distance
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Apr 6 08:18:58 PDT 2014
Author: madi
Date: 2014-04-06 08:18:58 -0700 (Sun, 06 Apr 2014)
New Revision: 59611
Modified:
grass/trunk/raster/r.stream.distance/main.c
Log:
removing word accumulation in description. The output is a distance map, in meters, not accumulation.
Modified: grass/trunk/raster/r.stream.distance/main.c
===================================================================
--- grass/trunk/raster/r.stream.distance/main.c 2014-04-06 14:48:52 UTC (rev 59610)
+++ grass/trunk/raster/r.stream.distance/main.c 2014-04-06 15:18:58 UTC (rev 59611)
@@ -4,12 +4,12 @@
* MODULE: r.stream.distance
* AUTHOR(S): Jarek Jasiewicz jarekj amu.edu.pl
*
- * PURPOSE: Calculate distance and elevation over the streams and outlets
- * according user's input data. The elevation and distance is calculated
- * along watercourses
- * It uses any stream map and r.watershed or .stream.extract direction map.
- * Stream input map shall contains streams or points outlets with or
- * without unique categories
+ * PURPOSE: Calculate distance to and elevation above streams and outlet
+ * according to user's input data. The elevation and distance are calculated
+ * along watercourses.
+ * It uses any stream map and r.watershed or r.stream.extract direction map.
+ * Stream network input map shall contains streams or points outlets with or
+ * without unique categories.
*
* COPYRIGHT: (C) 2002,2009-2014 by the GRASS Development Team
*
@@ -78,7 +78,7 @@
out_dist_opt = G_define_standard_option(G_OPT_R_OUTPUT);
out_dist_opt->key = "distance";
out_dist_opt->required = NO;
- out_dist_opt->description = _("Name for output distance/accumulation raster map");
+ out_dist_opt->description = _("Name for output distance raster map");
out_dist_opt->guisection = _("Output maps");
out_diff_opt = G_define_standard_option(G_OPT_R_OUTPUT);
More information about the grass-commit
mailing list