[GRASS-SVN] r37390 - grass/trunk/raster/r.series

svn_grass at osgeo.org svn_grass at osgeo.org
Sat May 23 04:18:54 EDT 2009


Author: neteler
Date: 2009-05-23 04:18:51 -0400 (Sat, 23 May 2009)
New Revision: 37390

Modified:
   grass/trunk/raster/r.series/r.series.html
Log:
example fix r.mapcalc; break long lines

Modified: grass/trunk/raster/r.series/r.series.html
===================================================================
--- grass/trunk/raster/r.series/r.series.html	2009-05-23 08:12:36 UTC (rev 37389)
+++ grass/trunk/raster/r.series/r.series.html	2009-05-23 08:18:51 UTC (rev 37390)
@@ -59,8 +59,8 @@
 Using <em>r.series</em> with wildcards:
 <br>
 <div class="code"><pre>
-r.series input="`g.mlist pattern='insitu_data.*' sep=,`"
-    output=insitu_data.stddev method=stddev
+r.series input="`g.mlist pattern='insitu_data.*' sep=,`" \
+         output=insitu_data.stddev method=stddev
 </pre></div>
 <p>
 Note the <em>g.mlist</em> script also supports regular expressions for
@@ -69,8 +69,9 @@
 Using <em>r.series</em> with NULL raster maps:
 <br>
 <div class="code"><pre>
-r.mapcalc "dummy=null()"
-r.series in=map2001,map2002,dummy,dummy,map2005,map2006,dummy,map2008 out=res_slope,res_offset,res_coeff meth=slope,offset,detcoeff
+r.mapcalc "dummy = null()"
+r.series in=map2001,map2002,dummy,dummy,map2005,map2006,dummy,map2008 \
+         out=res_slope,res_offset,res_coeff meth=slope,offset,detcoeff
 </pre></div>
 
 <p>



More information about the grass-commit mailing list