[GRASS-SVN] r60317 - in grass/branches/releasebranch_7_0/raster: r.stream.channel r.stream.distance r.stream.order r.stream.segment r.stream.slope r.stream.snap r.stream.stats
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 18 07:43:46 PDT 2014
Author: hcho
Date: 2014-05-18 07:43:46 -0700 (Sun, 18 May 2014)
New Revision: 60317
Modified:
grass/branches/releasebranch_7_0/raster/r.stream.channel/main.c
grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c
grass/branches/releasebranch_7_0/raster/r.stream.order/main.c
grass/branches/releasebranch_7_0/raster/r.stream.segment/main.c
grass/branches/releasebranch_7_0/raster/r.stream.slope/main.c
grass/branches/releasebranch_7_0/raster/r.stream.snap/main.c
grass/branches/releasebranch_7_0/raster/r.stream.stats/main.c
Log:
r.stream.*: option descriptions merged from r60308
Modified: grass/branches/releasebranch_7_0/raster/r.stream.channel/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.channel/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.channel/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -61,11 +61,11 @@
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 of input raster map with stream network");
in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
in_dir_opt->key = "direction";
- in_dir_opt->description = _("Name for input raster map with flow direction");
+ in_dir_opt->description = _("Name of input raster map with flow direction");
in_elev_opt = G_define_standard_option(G_OPT_R_ELEV);
Modified: grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.distance/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -57,12 +57,12 @@
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 of 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";
- in_dir_opt->description = _("Name for input raster map with flow direction");
+ in_dir_opt->description = _("Name of input raster map with flow direction");
in_elev_opt = G_define_standard_option(G_OPT_R_ELEV);
in_elev_opt->required = NO;
Modified: grass/branches/releasebranch_7_0/raster/r.stream.order/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.order/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.order/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -29,7 +29,7 @@
{
IO input[] = {
- {"stream_rast", YES, _("Name for input raster map with stream network")},
+ {"stream_rast", YES, _("Name of input raster map with stream network")},
{"direction", YES, _("Name of input flow direction raster map")},
{"elevation", NO, _("Name of input elevation raster map")},
{"accumulation", NO, _("Name of input accumulation raster map")}
Modified: grass/branches/releasebranch_7_0/raster/r.stream.segment/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.segment/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.segment/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -61,11 +61,11 @@
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 of input raster map with stream network");
in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
in_dir_opt->key = "direction";
- in_dir_opt->description = _("Name for input raster map with flow direction");
+ in_dir_opt->description = _("Name of input raster map with flow direction");
in_elev_opt = G_define_standard_option(G_OPT_R_ELEV);
Modified: grass/branches/releasebranch_7_0/raster/r.stream.slope/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.slope/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.slope/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -77,7 +77,7 @@
in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
in_dir_opt->key = "direction";
- in_dir_opt->description = _("Name for input raster map with flow direction");
+ in_dir_opt->description = _("Name of input raster map with flow direction");
in_elev_opt = G_define_standard_option(G_OPT_R_INPUT);
Modified: grass/branches/releasebranch_7_0/raster/r.stream.snap/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.snap/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.snap/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -55,12 +55,12 @@
in_points_opt->description = _("Name of input vector points map");
out_points_opt = G_define_standard_option(G_OPT_V_OUTPUT);
- out_points_opt->description = _("Name of output vector points map");
+ out_points_opt->description = _("Name for output vector points map");
in_stream_opt = G_define_standard_option(G_OPT_R_INPUT);
in_stream_opt->key = "stream_rast";
in_stream_opt->required = NO;
- in_stream_opt->description = _("Name for input raster map with stream network");
+ in_stream_opt->description = _("Name of input raster map with stream network");
in_stream_opt->guisection = _("Input maps");
in_accum_opt = G_define_standard_option(G_OPT_R_INPUT);
Modified: grass/branches/releasebranch_7_0/raster/r.stream.stats/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stream.stats/main.c 2014-05-18 14:42:13 UTC (rev 60316)
+++ grass/branches/releasebranch_7_0/raster/r.stream.stats/main.c 2014-05-18 14:43:46 UTC (rev 60317)
@@ -57,7 +57,7 @@
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 of input raster map with stream network");
in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
in_dir_opt->key = "direction";
More information about the grass-commit
mailing list