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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jan 12 13:56:04 EST 2012


Author: huhabla
Date: 2012-01-12 10:56:04 -0800 (Thu, 12 Jan 2012)
New Revision: 50161

Added:
   grass/trunk/raster/r.series.interp/r.series.interp.html
Removed:
   grass/trunk/raster/r.series.interp/r.series.interpol.html
Log:
Renamed manpage


Copied: grass/trunk/raster/r.series.interp/r.series.interp.html (from rev 50160, grass/trunk/raster/r.series.interp/r.series.interpol.html)
===================================================================
--- grass/trunk/raster/r.series.interp/r.series.interp.html	                        (rev 0)
+++ grass/trunk/raster/r.series.interp/r.series.interp.html	2012-01-12 18:56:04 UTC (rev 50161)
@@ -0,0 +1,62 @@
+<h2>DESCRIPTION</h2>
+
+<em>r.series.interpol</em> 
+interpolates new raster maps located temporal or spatial in between existing raster maps. 
+The interpolation is performed at specific sampling positions. The sampling position for each output map must be specified,
+as well as the data position of the input maps. 
+
+The following interpolation methods are supported.
+<ul> 
+ <li>linear: Linear interpolation. At least two input maps and data positions are required. 
+ </ul> 
+
+<h2>EXAMPLES</h2>
+<p>Interpolate linear three new maps at 3 sampling positions in the interval (0.0;1.0)
+
+First prepare the input maps:
+<br>
+<div class="code"><pre>
+g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
+
+r.mapcalc --o expr="prec_1 = 100"
+r.mapcalc --o expr="prec_5 = 500"
+</pre></div>
+
+<p>Interpolate
+
+<div class="code"><pre>
+r.series.interpol --o --v input=prec_1,prec_5 datapos=0.0,1.0\
+                  output=prec_2,prec_3,prec_4 sampoint=0.25,0.5,0.75\ 
+                  method=linear
+</pre></div>
+
+<p>Interpolate using the file option. 
+First prepare the input file:
+<br>
+<div class="code"><pre>
+cat > outfile.txt << EOF
+prec_2|0.25
+prec_3|0.5
+prec_4|0.75
+EOF
+</pre></div>
+
+<p>Interpolate:
+
+<div class="code"><pre>
+r.series.interpol --o --v input=prec_1,prec_5 datapos=0.0,1.0 file=outfile.txt method=linear
+</pre></div>
+
+The resulting maps will have the values 200, 300 and 400.
+
+
+<h2>SEE ALSO</h2>
+
+<em><a href="r.series.html">r.series</a></em>
+<em><a href="g.region.html">g.region</a></em>
+
+<h2>AUTHOR</h2>
+
+S&ouml;ren Gebbert
+
+<p><i>Last changed: $Date: 2011-12-28 15:26:22 +0100 (Mi, 28 Dez 2011) $</i>

Deleted: grass/trunk/raster/r.series.interp/r.series.interpol.html
===================================================================
--- grass/trunk/raster/r.series.interp/r.series.interpol.html	2012-01-12 18:54:54 UTC (rev 50160)
+++ grass/trunk/raster/r.series.interp/r.series.interpol.html	2012-01-12 18:56:04 UTC (rev 50161)
@@ -1,62 +0,0 @@
-<h2>DESCRIPTION</h2>
-
-<em>r.series.interpol</em> 
-interpolates new raster maps located temporal or spatial in between existing raster maps. 
-The interpolation is performed at specific sampling positions. The sampling position for each output map must be specified,
-as well as the data position of the input maps. 
-
-The following interpolation methods are supported.
-<ul> 
- <li>linear: Linear interpolation. At least two input maps and data positions are required. 
- </ul> 
-
-<h2>EXAMPLES</h2>
-<p>Interpolate linear three new maps at 3 sampling positions in the interval (0.0;1.0)
-
-First prepare the input maps:
-<br>
-<div class="code"><pre>
-g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
-
-r.mapcalc --o expr="prec_1 = 100"
-r.mapcalc --o expr="prec_5 = 500"
-</pre></div>
-
-<p>Interpolate
-
-<div class="code"><pre>
-r.series.interpol --o --v input=prec_1,prec_5 datapos=0.0,1.0\
-                  output=prec_2,prec_3,prec_4 sampoint=0.25,0.5,0.75\ 
-                  method=linear
-</pre></div>
-
-<p>Interpolate using the file option. 
-First prepare the input file:
-<br>
-<div class="code"><pre>
-cat > outfile.txt << EOF
-prec_2|0.25
-prec_3|0.5
-prec_4|0.75
-EOF
-</pre></div>
-
-<p>Interpolate:
-
-<div class="code"><pre>
-r.series.interpol --o --v input=prec_1,prec_5 datapos=0.0,1.0 file=outfile.txt method=linear
-</pre></div>
-
-The resulting maps will have the values 200, 300 and 400.
-
-
-<h2>SEE ALSO</h2>
-
-<em><a href="r.series.html">r.series</a></em>
-<em><a href="g.region.html">g.region</a></em>
-
-<h2>AUTHOR</h2>
-
-S&ouml;ren Gebbert
-
-<p><i>Last changed: $Date: 2011-12-28 15:26:22 +0100 (Mi, 28 Dez 2011) $</i>



More information about the grass-commit mailing list