[GRASS-SVN] r64542 - grass/trunk/raster/r.ros

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Feb 10 17:51:58 PST 2015


Author: annakrat
Date: 2015-02-10 17:51:58 -0800 (Tue, 10 Feb 2015)
New Revision: 64542

Modified:
   grass/trunk/raster/r.ros/main.c
Log:
r.ros: fix label, remove unused variable

Modified: grass/trunk/raster/r.ros/main.c
===================================================================
--- grass/trunk/raster/r.ros/main.c	2015-02-11 01:46:45 UTC (rev 64541)
+++ grass/trunk/raster/r.ros/main.c	2015-02-11 01:51:58 UTC (rev 64542)
@@ -202,7 +202,6 @@
     } parm;
 
     /* please, remove before GRASS 7 released */
-    struct Flag *flag_s;
     struct GModule *module;
 
     /* initialize access to database and create temporary files */
@@ -273,9 +272,9 @@
     parm.vel = G_define_standard_option(G_OPT_R_INPUT);
     parm.vel->key = "velocity";
     parm.vel->required = NO;
+    parm.vel->label =
+	_("Raster map containing midflame wind velocities (ft/min)");
     parm.vel->description =
-	_("Raster map containing midflame wind velocitys (ft/min)");
-    parm.vel->description =
 	_("Name of an existing raster map layer in the user's "
 	  "current mapset search path containing wind velocities at half of the average "
 	  "flame height (feet/minute).");
@@ -351,7 +350,7 @@
     parm.spotdist->label =
 	_("Output raster map containing maximal spotting distance (m)");
     parm.spotdist->description =
-	_("The maximal potential spotting distance raster will be also generated"
+	_("The maximal potential spotting distance"
 	  " (requires elevation raster map to be provided).");
 
     /*   Parse command line */



More information about the grass-commit mailing list