Browse Source

various commands: keywords sync to trunk; module description sync; HTML cosmetics sync

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@67397 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 9 years ago
parent
commit
cb77b3cee1

+ 3 - 1
raster/r.external/main.c

@@ -98,8 +98,10 @@ int main(int argc, char *argv[])
 
     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';

+ 1 - 0
raster/r.grow.distance/main.c

@@ -150,6 +150,7 @@ int main(int argc, char **argv)
     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.");
 

+ 1 - 1
raster/r.mode/main.c

@@ -52,8 +52,8 @@ int main(int argc, char *argv[])
 
     module = G_define_module();
     G_add_keyword(_("raster"));
-    G_add_keyword(_("algebra"));
     G_add_keyword(_("statistics"));
+    G_add_keyword(_("algebra"));
     module->description =
 	_("Finds the mode of values in a cover map within "
 	  "areas assigned the same category value in a "

+ 3 - 0
raster/r.param.scale/interface.c

@@ -53,6 +53,9 @@ void interface(int argc, char **argv)
     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).");

+ 1 - 1
raster/r.quant/main.c

@@ -45,8 +45,8 @@ int main(int argc, char *argv[])
 
     module = G_define_module();
     G_add_keyword(_("raster"));
-    G_add_keyword(_("quantization"));
     G_add_keyword(_("statistics"));
+    G_add_keyword(_("quantization"));
     module->description =
 	_("Produces the quantization file for a floating-point map.");
 

+ 5 - 2
raster/r.region/r.region.html

@@ -42,8 +42,11 @@ r.region map=mymap n=n+100 e=e+100 w=w+100 s=s+100
 
 <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>

+ 1 - 0
raster/r.ros/main.c

@@ -214,6 +214,7 @@ int main(int argc, char *argv[])
     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 "

+ 1 - 0
raster/r.sim/r.sim.sediment/main.c

@@ -112,6 +112,7 @@ int main(int argc, char *argv[])
     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).");

+ 1 - 0
raster/r.sim/r.sim.water/main.c

@@ -111,6 +111,7 @@ int main(int argc, char *argv[])
     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).");

+ 1 - 0
raster/r.spread/main.c

@@ -106,6 +106,7 @@ int main(int argc, char *argv[])
     G_add_keyword(_("fire"));
     G_add_keyword(_("spread"));
     G_add_keyword(_("hazard"));
+    G_add_keyword(_("model"));
     module->label =
 	_("Simulates elliptically anisotropic spread.");
     module->description =

+ 1 - 0
raster/r.statistics/main.c

@@ -54,6 +54,7 @@ int main(int argc, char **argv)
     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.");
 

+ 1 - 0
raster/r.stats.zonal/main.c

@@ -100,6 +100,7 @@ int main(int argc, char **argv)
     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).");
 

+ 2 - 1
raster/r.topidx/main.c

@@ -38,8 +38,9 @@ int main(int argc, char **argv)
     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";

+ 1 - 0
raster/r.topmodel/main.c

@@ -50,6 +50,7 @@ int main(int argc, char **argv)
     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.");