[GRASS-SVN] r67397 - in grass/branches/releasebranch_7_0/raster: r.external r.grow.distance r.mode r.param.scale r.quant r.region r.ros r.sim/r.sim.sediment r.sim/r.sim.water r.spread r.statistics r.stats.zonal r.topidx r.topmodel
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Dec 27 10:29:24 PST 2015
Author: neteler
Date: 2015-12-27 10:29:24 -0800 (Sun, 27 Dec 2015)
New Revision: 67397
Modified:
grass/branches/releasebranch_7_0/raster/r.external/main.c
grass/branches/releasebranch_7_0/raster/r.grow.distance/main.c
grass/branches/releasebranch_7_0/raster/r.mode/main.c
grass/branches/releasebranch_7_0/raster/r.param.scale/interface.c
grass/branches/releasebranch_7_0/raster/r.quant/main.c
grass/branches/releasebranch_7_0/raster/r.region/r.region.html
grass/branches/releasebranch_7_0/raster/r.ros/main.c
grass/branches/releasebranch_7_0/raster/r.sim/r.sim.sediment/main.c
grass/branches/releasebranch_7_0/raster/r.sim/r.sim.water/main.c
grass/branches/releasebranch_7_0/raster/r.spread/main.c
grass/branches/releasebranch_7_0/raster/r.statistics/main.c
grass/branches/releasebranch_7_0/raster/r.stats.zonal/main.c
grass/branches/releasebranch_7_0/raster/r.topidx/main.c
grass/branches/releasebranch_7_0/raster/r.topmodel/main.c
Log:
various commands: keywords sync to trunk; module description sync; HTML cosmetics sync
Modified: grass/branches/releasebranch_7_0/raster/r.external/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.external/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.external/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -98,8 +98,10 @@
flag.o = G_define_flag();
flag.o->key = 'o';
+ flag.o->label =
+ _("Override projection check (use current location's projection)");
flag.o->description =
- _("Override projection (use location's projection)");
+ _("Assume that the dataset has same projection as the current location");
flag.e = G_define_flag();
flag.e->key = 'e';
Modified: grass/branches/releasebranch_7_0/raster/r.grow.distance/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.grow.distance/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.grow.distance/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -150,6 +150,7 @@
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("distance"));
+ G_add_keyword(_("proximity"));
module->description =
_("Generates a raster map containing distances to nearest raster features.");
Modified: grass/branches/releasebranch_7_0/raster/r.mode/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.mode/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.mode/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -52,8 +52,8 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("statistics"));
G_add_keyword(_("algebra"));
- G_add_keyword(_("statistics"));
module->description =
_("Finds the mode of values in a cover map within "
"areas assigned the same category value in a "
Modified: grass/branches/releasebranch_7_0/raster/r.param.scale/interface.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.param.scale/interface.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.param.scale/interface.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -53,6 +53,9 @@
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("geomorphology"));
+ G_add_keyword(_("terrain"));
+ G_add_keyword(_("elevation"));
+ G_add_keyword(_("landform"));
module->label = _("Extracts terrain parameters from a DEM.");
module->description = _("Uses a multi-scale approach"
" by taking fitting quadratic parameters to any size window (via least squares).");
Modified: grass/branches/releasebranch_7_0/raster/r.quant/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.quant/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.quant/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -45,8 +45,8 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("statistics"));
G_add_keyword(_("quantization"));
- G_add_keyword(_("statistics"));
module->description =
_("Produces the quantization file for a floating-point map.");
Modified: grass/branches/releasebranch_7_0/raster/r.region/r.region.html
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.region/r.region.html 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.region/r.region.html 2015-12-27 18:29:24 UTC (rev 67397)
@@ -42,8 +42,11 @@
<h2>SEE ALSO</h2>
-<em><a href="r.support.html">r.support</a></em><br>
-<em><a href="g.region.html">g.region</a></em>
+<em>
+<a href="r.support.html">r.support</a>,
+<a href="g.region.html">g.region</a>,
+<a href="v.transform.html">v.transform</a>
+</em>
<h2>AUTHOR</h2>
Modified: grass/branches/releasebranch_7_0/raster/r.ros/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.ros/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.ros/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -214,6 +214,7 @@
G_add_keyword(_("spread"));
G_add_keyword(_("rate of spread"));
G_add_keyword(_("hazard"));
+ G_add_keyword(_("model"));
module->label = _("Generates rate of spread raster maps.");
module->description =
_("Generates three, or four raster map layers showing the base "
Modified: grass/branches/releasebranch_7_0/raster/r.sim/r.sim.sediment/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.sim/r.sim.sediment/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.sim/r.sim.sediment/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -112,6 +112,7 @@
G_add_keyword(_("sediment flow"));
G_add_keyword(_("erosion"));
G_add_keyword(_("deposition"));
+ G_add_keyword(_("model"));
module->description =
_("Sediment transport and erosion/deposition simulation "
"using path sampling method (SIMWE).");
Modified: grass/branches/releasebranch_7_0/raster/r.sim/r.sim.water/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.sim/r.sim.water/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.sim/r.sim.water/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -111,6 +111,7 @@
G_add_keyword(_("soil"));
G_add_keyword(_("flow"));
G_add_keyword(_("overland flow"));
+ G_add_keyword(_("model"));
module->description =
_("Overland flow hydrologic simulation using "
"path sampling method (SIMWE).");
Modified: grass/branches/releasebranch_7_0/raster/r.spread/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.spread/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.spread/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -106,6 +106,7 @@
G_add_keyword(_("fire"));
G_add_keyword(_("spread"));
G_add_keyword(_("hazard"));
+ G_add_keyword(_("model"));
module->label =
_("Simulates elliptically anisotropic spread.");
module->description =
Modified: grass/branches/releasebranch_7_0/raster/r.statistics/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.statistics/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.statistics/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -54,6 +54,7 @@
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("statistics"));
+ G_add_keyword(_("zonal statistics"));
module->description =
_("Calculates category or object oriented statistics.");
Modified: grass/branches/releasebranch_7_0/raster/r.stats.zonal/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.stats.zonal/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.stats.zonal/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -100,6 +100,7 @@
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("statistics"));
+ G_add_keyword(_("zonal statistics"));
module->description =
_("Calculates category or object oriented statistics (accumulator-based statistics).");
Modified: grass/branches/releasebranch_7_0/raster/r.topidx/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.topidx/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.topidx/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -38,8 +38,9 @@
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("hydrology"));
+ G_add_keyword(_("wetness"));
module->description =
- _("Creates a topographic index raster map from an elevation raster map.");
+ _("Creates a topographic index (wetness index) raster map from an elevation raster map.");
params.input = G_define_standard_option(G_OPT_R_ELEV);
params.input->key = "input";
Modified: grass/branches/releasebranch_7_0/raster/r.topmodel/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.topmodel/main.c 2015-12-27 18:19:23 UTC (rev 67396)
+++ grass/branches/releasebranch_7_0/raster/r.topmodel/main.c 2015-12-27 18:29:24 UTC (rev 67397)
@@ -50,6 +50,7 @@
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("hydrology"));
+ G_add_keyword(_("model"));
module->description =
_("Simulates TOPMODEL which is a physically based hydrologic model.");
More information about the grass-commit
mailing list