Browse Source

Update r.series.html (#1246)

Suggest to use separator=comma instead of sep=, as per g.list manual page
Paulo van Breugel 4 years ago
parent
commit
1fbc81f02f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      raster/r.series/r.series.html

+ 1 - 1
raster/r.series/r.series.html

@@ -199,7 +199,7 @@ Example for counting the number of days above a certain temperature using
 daily average maps ('???' as DOY wildcard):
 <div class="code"><pre>
 # Approach for shell based systems
-r.series input=`g.list rast pattern="temp_2003_???_avg" sep=,` \
+r.series input=`g.list rast pattern="temp_2003_???_avg" separator=comma` \
          output=temp_2003_days_over_25deg range=25.0,100.0 method=count
 
 # Approach in two steps (e.g., for Windows systems)