[GRASS-SVN] r73366 - in grass/trunk: raster/r.fill.stats raster/r.resamp.bspline scripts/r.fillnulls temporal/t.rast.gapfill vector/v.surf.rst vector/v.vol.rst
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Sep 19 05:27:00 PDT 2018
Author: neteler
Date: 2018-09-19 05:27:00 -0700 (Wed, 19 Sep 2018)
New Revision: 73366
Modified:
grass/trunk/raster/r.fill.stats/main.c
grass/trunk/raster/r.resamp.bspline/main.c
grass/trunk/scripts/r.fillnulls/r.fillnulls.py
grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py
grass/trunk/vector/v.surf.rst/main.c
grass/trunk/vector/v.vol.rst/main.c
Log:
keywords: add "no-data filling" keyword for keyword index
Modified: grass/trunk/raster/r.fill.stats/main.c
===================================================================
--- grass/trunk/raster/r.fill.stats/main.c 2018-09-19 11:09:57 UTC (rev 73365)
+++ grass/trunk/raster/r.fill.stats/main.c 2018-09-19 12:27:00 UTC (rev 73366)
@@ -776,7 +776,7 @@
G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
G_add_keyword(_("IDW"));
- G_add_keyword(_("null data"));
+ G_add_keyword(_("no-data filling"));
module->description =
_("Rapidly fills 'no data' cells (NULLs) of a raster map with interpolated values (IDW).");
Modified: grass/trunk/raster/r.resamp.bspline/main.c
===================================================================
--- grass/trunk/raster/r.resamp.bspline/main.c 2018-09-19 11:09:57 UTC (rev 73365)
+++ grass/trunk/raster/r.resamp.bspline/main.c 2018-09-19 12:27:00 UTC (rev 73366)
@@ -80,6 +80,8 @@
G_add_keyword(_("surface"));
G_add_keyword(_("resample"));
G_add_keyword(_("interpolation"));
+ G_add_keyword(_("splines"));
+ G_add_keyword(_("no-data filling"));
module->description =
_("Performs bilinear or bicubic spline interpolation with Tykhonov regularization.");
Modified: grass/trunk/scripts/r.fillnulls/r.fillnulls.py
===================================================================
--- grass/trunk/scripts/r.fillnulls/r.fillnulls.py 2018-09-19 11:09:57 UTC (rev 73365)
+++ grass/trunk/scripts/r.fillnulls/r.fillnulls.py 2018-09-19 12:27:00 UTC (rev 73366)
@@ -29,6 +29,8 @@
#% keyword: surface
#% keyword: elevation
#% keyword: interpolation
+#% keyword: splines
+#% keyword: no-data filling
#%end
#%option G_OPT_R_INPUT
#%end
Modified: grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py
===================================================================
--- grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py 2018-09-19 11:09:57 UTC (rev 73365)
+++ grass/trunk/temporal/t.rast.gapfill/t.rast.gapfill.py 2018-09-19 12:27:00 UTC (rev 73366)
@@ -26,6 +26,7 @@
#% keyword: interpolation
#% keyword: raster
#% keyword: time
+#% keyword: no-data filling
#%end
#%option G_OPT_STRDS_INPUT
Modified: grass/trunk/vector/v.surf.rst/main.c
===================================================================
--- grass/trunk/vector/v.surf.rst/main.c 2018-09-19 11:09:57 UTC (rev 73365)
+++ grass/trunk/vector/v.surf.rst/main.c 2018-09-19 12:27:00 UTC (rev 73366)
@@ -147,7 +147,9 @@
G_add_keyword(_("vector"));
G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
+ G_add_keyword(_("RST"));
G_add_keyword(_("3D"));
+ G_add_keyword(_("no-data filling"));
module->label = _("Performs surface interpolation from vector points map by splines.");
module->description =
_("Spatial approximation and topographic analysis from given "
Modified: grass/trunk/vector/v.vol.rst/main.c
===================================================================
--- grass/trunk/vector/v.vol.rst/main.c 2018-09-19 11:09:57 UTC (rev 73365)
+++ grass/trunk/vector/v.vol.rst/main.c 2018-09-19 12:27:00 UTC (rev 73366)
@@ -237,6 +237,8 @@
G_add_keyword(_("surface"));
G_add_keyword(_("interpolation"));
G_add_keyword(_("RST"));
+ G_add_keyword(_("3D"));
+ G_add_keyword(_("no-data filling"));
module->description =
_("Interpolates point data to a 3D raster map using "
"regularized spline with tension (RST) algorithm.");
More information about the grass-commit
mailing list