|
@@ -49,7 +49,8 @@ negative values, or <em>range=-inf,-200.4</em> to ignore values above -200.4).
|
|
|
<p>Linear regression (slope, offset, coefficient of determination, t-value) assumes equal time intervals.
|
|
|
If the data have irregular time intervals, NULL raster maps can be inserted into time series
|
|
|
to make time intervals equal (see example).
|
|
|
-<p>Number of raster maps to be processed is given by the limit of the
|
|
|
+<p>
|
|
|
+Number of raster maps to be processed is given by the limit of the
|
|
|
operating system. For example, both the hard and soft limits are
|
|
|
typically 1024. The soft limit can be changed with e.g. <tt>ulimit -n
|
|
|
1500</tt> (UNIX-based operating systems) but not higher than the hard
|
|
@@ -62,22 +63,24 @@ your_username hard nofile 1500
|
|
|
</pre></div>
|
|
|
|
|
|
This would raise the hard limit to 1500 file. Be warned that more
|
|
|
-files open need more RAM.
|
|
|
-
|
|
|
+files open need more RAM. See also the Wiki page
|
|
|
+<a href="http://grasswiki.osgeo.org/wiki/Large_raster_data_processing">Hints for large raster data processing</a>.
|
|
|
+<p>
|
|
|
For each map a weighting factor can be specified using the <em>weights</em> option.
|
|
|
Using weights can be meaningful when computing sum or average of maps with different
|
|
|
temporal extent. The default weight is 1.0. The number of weights must be identical
|
|
|
with the number of input maps and must have the same order. Weights can also be specified in the
|
|
|
input file.
|
|
|
|
|
|
-<p>Use the <em>file</em> option to analyze large amount of raster maps without
|
|
|
-hitting open files limit and the size limit of command line arguments.
|
|
|
+<p>
|
|
|
+Use the <em>file</em> option to analyze large amount of raster maps
|
|
|
+without hitting open files limit and the size limit of command line arguments.
|
|
|
The computation is slower than the <em>input</em> option method.
|
|
|
For every sinlge row in the output map(s)
|
|
|
all input maps are opened and closed. The amount of RAM will rise linear
|
|
|
with the number of specified input maps. The input and file options are mutually exclusive.
|
|
|
Input is a text file with a new line separated list of raster map names and optional weights.
|
|
|
-As separator between the map name and the weight the charachter | must be used.
|
|
|
+As separator between the map name and the weight the character "|" must be used.
|
|
|
|
|
|
<h2>EXAMPLES</h2>
|
|
|
|
|
@@ -143,8 +146,13 @@ r.series file=mapnames.txt \
|
|
|
|
|
|
<h2>SEE ALSO</h2>
|
|
|
|
|
|
-<em><a href="g.list.html">g.list</a></em>,
|
|
|
-<em><a href="g.region.html">g.region</a></em>
|
|
|
+<em>
|
|
|
+<a href="g.list.html">g.list</a>,
|
|
|
+<a href="g.region.html">g.region</a>,
|
|
|
+<a href="r.series.accumulate.html">r.series.accumulate</a>
|
|
|
+</em>
|
|
|
+<p>
|
|
|
+<a href="http://grasswiki.osgeo.org/wiki/Large_raster_data_processing">Hints for large raster data processing</a>
|
|
|
|
|
|
<h2>AUTHOR</h2>
|
|
|
|