[GRASS-SVN] r65393 - grass/branches/releasebranch_7_0/raster/r.terraflow

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Jun 7 02:37:11 PDT 2015


Author: martinl
Date: 2015-06-07 02:37:11 -0700 (Sun, 07 Jun 2015)
New Revision: 65393

Modified:
   grass/branches/releasebranch_7_0/raster/r.terraflow/main.cpp
Log:
r.terraflow: description cosmetics, more keywords (cosmetics)
             (merge r65391-2 from trunk)


Modified: grass/branches/releasebranch_7_0/raster/r.terraflow/main.cpp
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.terraflow/main.cpp	2015-06-07 09:25:00 UTC (rev 65392)
+++ grass/branches/releasebranch_7_0/raster/r.terraflow/main.cpp	2015-06-07 09:37:11 UTC (rev 65393)
@@ -451,14 +451,19 @@
  
   module = G_define_module();
 #ifdef ELEV_SHORT
-  module->description = _("Flow computation for massive grids (integer version).");
+  module->label = _("Performs flow computation for massive grids.");
+  module->description = _("Integer version.");
 #endif
 #ifdef ELEV_FLOAT
-  module->description = _("Flow computation for massive grids (float version).");
+  module->label = _("Performs flow computation for massive grids.");
+  module->description = _("Float version.");
 #endif
   G_add_keyword(_("raster"));
   G_add_keyword(_("hydrology"));
-
+  G_add_keyword(_("flow"));
+  G_add_keyword(_("accumulation"));
+  G_add_keyword(_("sink"));
+  
   /* read user options; fill in global <opt> */  
   opt = (userOptions*)malloc(sizeof(userOptions));
   assert(opt);



More information about the grass-commit mailing list