[GRASS-SVN] r62186 - grass/trunk/raster/r.univar
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Oct 4 20:53:47 PDT 2014
Author: wenzeslaus
Date: 2014-10-04 20:53:47 -0700 (Sat, 04 Oct 2014)
New Revision: 62186
Modified:
grass/trunk/raster/r.univar/r.univar_main.c
grass/trunk/raster/r.univar/r3.univar_main.c
Log:
r.univar and r3.univar: move short description to label, include list of statistics into description (for example, now you can find r.univar in Search module in wxGUI by searching for 'sum')
Modified: grass/trunk/raster/r.univar/r.univar_main.c
===================================================================
--- grass/trunk/raster/r.univar/r.univar_main.c 2014-10-05 03:12:22 UTC (rev 62185)
+++ grass/trunk/raster/r.univar/r.univar_main.c 2014-10-05 03:53:47 UTC (rev 62186)
@@ -101,8 +101,13 @@
G_add_keyword(_("statistics"));
G_add_keyword(_("univariate statistics"));
G_add_keyword(_("zonal statistics"));
+
+ module->label =
+ _("Calculates univariate statistics from the non-null cells of a raster map.");
module->description =
- _("Calculates univariate statistics from the non-null cells of a raster map.");
+ _("Statistics include number of cells counted, minimum and maximum cell"
+ " values, range, arithmetic mean, population variance, standard deviation,"
+ " coefficient of variation, and sum.");
/* Define the different options */
set_params();
Modified: grass/trunk/raster/r.univar/r3.univar_main.c
===================================================================
--- grass/trunk/raster/r.univar/r3.univar_main.c 2014-10-05 03:12:22 UTC (rev 62185)
+++ grass/trunk/raster/r.univar/r3.univar_main.c 2014-10-05 03:53:47 UTC (rev 62186)
@@ -99,8 +99,12 @@
G_add_keyword(_("statistics"));
G_add_keyword(_("univariate statistics"));
+ module->label =
+ _("Calculates univariate statistics from the non-null cells of a 3D raster map.");
module->description =
- _("Calculates univariate statistics from the non-null cells of a 3D raster map.");
+ _("Statistics include number of cells counted, minimum and maximum cell"
+ " values, range, arithmetic mean, population variance, standard deviation,"
+ " coefficient of variation, and sum.");
/* Define the different options */
set_params();
More information about the grass-commit
mailing list