[GRASS-SVN] r41221 - in grass/trunk: raster/r.surf.area
raster/r.surf.contour raster/r.surf.fractal
raster/r.surf.gauss raster/r.surf.idw raster/r.surf.idw2
raster/r.surf.random vector/lidar/v.surf.bspline
vector/v.surf.idw vector/v.surf.rst
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Feb 28 08:02:50 EST 2010
Author: martinl
Date: 2010-02-28 08:02:49 -0500 (Sun, 28 Feb 2010)
New Revision: 41221
Modified:
grass/trunk/raster/r.surf.area/main.c
grass/trunk/raster/r.surf.contour/main.c
grass/trunk/raster/r.surf.fractal/main.c
grass/trunk/raster/r.surf.gauss/main.c
grass/trunk/raster/r.surf.idw/main.c
grass/trunk/raster/r.surf.idw2/main.c
grass/trunk/raster/r.surf.random/main.c
grass/trunk/vector/lidar/v.surf.bspline/main.c
grass/trunk/vector/v.surf.idw/main.c
grass/trunk/vector/v.surf.rst/main.c
Log:
more keywords (*.surf.*)
Modified: grass/trunk/raster/r.surf.area/main.c
===================================================================
--- grass/trunk/raster/r.surf.area/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.area/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -86,6 +86,8 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("surface"));
+ G_add_keyword(_("interpolation"));
module->description = _("Surface area estimation for rasters.");
surf = G_define_option();
Modified: grass/trunk/raster/r.surf.contour/main.c
===================================================================
--- grass/trunk/raster/r.surf.contour/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.contour/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -10,9 +10,9 @@
* Glynn Clements <glynn gclements.plus.com>,
* Hamish Bowman <hamish_b yahoo.com>,
* Jan-Oliver Wagner <jan intevation.de>
- * PURPOSE: interpolates a raster elevation map from a rasterized
+ * PURPOSE: Interpolates a raster elevation map from a rasterized
* contour map
- * COPYRIGHT: (C) 1999-2006 by the GRASS Development Team
+ * COPYRIGHT: (C) 1999-2010 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
@@ -40,7 +40,6 @@
FLAG *seen, *mask;
NODE *zero;
-
int main(int argc, char *argv[])
{
int r, c;
@@ -54,13 +53,14 @@
struct GModule *module;
struct Option *opt1, *opt2;
-
G_gisinit(argv[0]);
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("surface"));
+ G_add_keyword(_("interpolation"));
module->description =
- _("Surface generation program from rasterized contours.");
+ _("Generates surface raster map from rasterized contours.");
opt1 = G_define_option();
opt1->key = "input";
Modified: grass/trunk/raster/r.surf.fractal/main.c
===================================================================
--- grass/trunk/raster/r.surf.fractal/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.fractal/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -36,7 +36,7 @@
module = G_define_module();
G_add_keyword(_("raster"));
- G_add_keyword(_("DEM"));
+ G_add_keyword(_("surface"));
G_add_keyword(_("fractal"));
module->description =
_("Creates a fractal surface of a given fractal dimension.");
Modified: grass/trunk/raster/r.surf.gauss/main.c
===================================================================
--- grass/trunk/raster/r.surf.gauss/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.gauss/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -36,6 +36,8 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("surface"));
+ G_add_keyword(_("random"));
module->description =
_("GRASS module to produce a raster map layer of "
"gaussian deviates whose mean and standard deviation "
Modified: grass/trunk/raster/r.surf.idw/main.c
===================================================================
--- grass/trunk/raster/r.surf.idw/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.idw/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -101,7 +101,9 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
+ G_add_keyword(_("IDW"));
module->description =
_("Surface interpolation utility for raster map.");
Modified: grass/trunk/raster/r.surf.idw2/main.c
===================================================================
--- grass/trunk/raster/r.surf.idw2/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.idw2/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -59,6 +59,9 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("surface"));
+ G_add_keyword(_("interpolation"));
+ G_add_keyword(_("IDW"));
module->description = _("Surface generation program.");
parm.input = G_define_standard_option(G_OPT_R_INPUT);
Modified: grass/trunk/raster/r.surf.random/main.c
===================================================================
--- grass/trunk/raster/r.surf.random/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/raster/r.surf.random/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -34,6 +34,8 @@
module = G_define_module();
G_add_keyword(_("raster"));
+ G_add_keyword(_("surface"));
+ G_add_keyword(_("random"));
module->description =
_("Produces a raster map layer of uniform random "
"deviates whose range can be expressed by the user.");
Modified: grass/trunk/vector/lidar/v.surf.bspline/main.c
===================================================================
--- grass/trunk/vector/lidar/v.surf.bspline/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/vector/lidar/v.surf.bspline/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -83,7 +83,9 @@
/* Options declarations */
module = G_define_module();
G_add_keyword(_("vector"));
+ G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
+ G_add_keyword(_("LIDAR"));
module->description =
_("Bicubic or bilinear spline interpolation with Tykhonov regularization.");
Modified: grass/trunk/vector/v.surf.idw/main.c
===================================================================
--- grass/trunk/vector/v.surf.idw/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/vector/v.surf.idw/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -85,6 +85,7 @@
G_add_keyword(_("vector"));
G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
+ G_add_keyword(_("IDW"));
module->description =
_("Surface interpolation from vector point data by Inverse "
"Distance Squared Weighting.");
Modified: grass/trunk/vector/v.surf.rst/main.c
===================================================================
--- grass/trunk/vector/v.surf.rst/main.c 2010-02-28 12:47:10 UTC (rev 41220)
+++ grass/trunk/vector/v.surf.rst/main.c 2010-02-28 13:02:49 UTC (rev 41221)
@@ -142,6 +142,7 @@
G_add_keyword(_("vector"));
G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
+ G_add_keyword(_("RST"));
module->description =
_("Spatial approximation and topographic analysis from given "
"point or isoline data in vector format to floating point "
More information about the grass-commit
mailing list