[GRASS-SVN] r50968 - grass/branches/releasebranch_6_4/raster/r.series

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Mar 2 08:54:55 EST 2012


Author: neteler
Date: 2012-03-02 05:54:55 -0800 (Fri, 02 Mar 2012)
New Revision: 50968

Modified:
   grass/branches/releasebranch_6_4/raster/r.series/description.html
Log:
+new example

Modified: grass/branches/releasebranch_6_4/raster/r.series/description.html
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.series/description.html	2012-02-29 11:09:48 UTC (rev 50967)
+++ grass/branches/releasebranch_6_4/raster/r.series/description.html	2012-03-02 13:54:55 UTC (rev 50968)
@@ -90,11 +90,21 @@
 </pre></div>
 
 <p>
-Example for multiple aggregates to be computed in one run (3 resulting aggregates from two input maps):
+Example for multiple aggregates to be computed in one run (3 resulting 
+aggregates from two input maps):
 <div class="code"><pre>
 r.series in=one,two out=result_avg,res_slope,result_count meth=sum,slope,count
 </pre></div>
 
+
+<p>
+Example for counting the number of days above a certain temperature using 
+daily average maps ('???' as DOY wildcard):
+<div class="code"><pre>
+r.series input=`g.mlist rast pat="temp_2003_???_avg" sep=,` \
+         output=temp_2003_days_over_25deg range=25.0,100.0 method=count
+</pre></div>
+
 <h2>SEE ALSO</h2>
 
 <em><a href="g.mlist.html">g.mlist</a></em>,



More information about the grass-commit mailing list