فهرست منبع

r.tile: +description, +example

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55565 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 12 سال پیش
والد
کامیت
249e5d9ac5
2فایلهای تغییر یافته به همراه34 افزوده شده و 6 حذف شده
  1. 29 2
      raster/r.tile/r.tile.html
  2. 5 4
      raster3d/r3.retile/r3.retile.html

+ 29 - 2
raster/r.tile/r.tile.html

@@ -1,11 +1,38 @@
 <h2>DESCRIPTION</h2>
 <h2>DESCRIPTION</h2>
 
 
+<em>r.tile</em> retiles an existing raster map with user defined 
+x and y tile size.
+
 <h2>NOTES</h2>
 <h2>NOTES</h2>
 
 
+<em>r.tile</em> generates a separate raster for each tile.
+This is equivalent to running <em>g.region</em> along with
+<em>r.resample</em> in a double loop.
+<p>
+The module can be used to split a large raster map into smaller
+tiles, e.g. for further parallelized analysis on a cluster.
+
+<h2>EXAMPLE</h2>
+
+Retiling example for the North Carolina DEM:
+
+<div class="code"><pre>
+g.region rast=elevation -p
+# rows:       1350
+# cols:       1500
+
+r.tile input=elevation output=elev_tile width=135 height=150
+</pre></div>
+
+creates 108 tiles with the prefix <em>elev_tile</em> (named:
+elev_tile-000-000, elev_tile-000-001, elev_tile-000-002, ...).
+
 <h2>SEE ALSO</h2>
 <h2>SEE ALSO</h2>
 
 
-<em><a href="g.region.html">g.region</a></em>,
-<em><a href="r3.retile.html">r3.retile</a></em>,
+<em>
+<a href="g.region.html">g.region</a>,
+<a href="r3.retile.html">r3.retile</a>
+</em>
 
 
 <h2>AUTHOR</h2>
 <h2>AUTHOR</h2>
 
 

+ 5 - 4
raster3d/r3.retile/r3.retile.html

@@ -1,7 +1,7 @@
 <h2>DESCRIPTION</h2>
 <h2>DESCRIPTION</h2>
 
 
-Writes a copy of an existing 3D raster map with a user defined 
-number of tiles in x, y and z direction. 
+<em>r3.retile</em> writes a copy of an existing 3D raster map with
+a user defined number of tiles in x, y and z direction. 
 The precision and the type of the original 3D raster map are used for
 The precision and the type of the original 3D raster map are used for
 the new retiled 3D raster map. 
 the new retiled 3D raster map. 
 
 
@@ -9,8 +9,9 @@ the new retiled 3D raster map.
 
 
 <em>
 <em>
 <a href="r3.info.html">r3.cross.rast</a>,
 <a href="r3.info.html">r3.cross.rast</a>,
-<em><a href="r3.out.ascii.html">r3.out.ascii</a>,
-<em><a href="g.region.html">g.region</a>
+<a href="r3.out.ascii.html">r3.out.ascii</a>,
+<a href="g.region.html">g.region</a>,
+<a href="r3.retile.html">r.tile</a>
 </em>
 </em>
 
 
 <h2>AUTHOR</h2>
 <h2>AUTHOR</h2>