[GRASS-SVN] r57963 - grass/branches/releasebranch_6_4/raster/r.to.rast3elev

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Oct 9 02:15:58 PDT 2013


Author: mlennert
Date: 2013-10-09 02:15:57 -0700 (Wed, 09 Oct 2013)
New Revision: 57963

Modified:
   grass/branches/releasebranch_6_4/raster/r.to.rast3elev/description.html
Log:
r.mapcalc does not have --o, nor expression= parameter in grass6


Modified: grass/branches/releasebranch_6_4/raster/r.to.rast3elev/description.html
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.to.rast3elev/description.html	2013-10-09 07:47:11 UTC (rev 57962)
+++ grass/branches/releasebranch_6_4/raster/r.to.rast3elev/description.html	2013-10-09 09:15:57 UTC (rev 57963)
@@ -46,14 +46,14 @@
 # Example with multiple elevation maps.
 ## first we need three support maps
 
-r.mapcalc --o expression="one = 1" 
-r.mapcalc --o expression="two = 2" 
-r.mapcalc --o expression="three = 3" 
+r.mapcalc "one = 1" 
+r.mapcalc "two = 2" 
+r.mapcalc "three = 3" 
 
 ## Now we generate the new evelation maps
 
-r.mapcalc --o expression="elev_mid = elevation.10m - 500"
-r.mapcalc --o expression="elev_bottom = elevation.10m - 1000"
+r.mapcalc "elev_mid = elevation.10m - 500"
+r.mapcalc "elev_bottom = elevation.10m - 1000"
 
 ## Now fill the lower cells below the elevation maps with the values one, two and three
 



More information about the grass-commit mailing list