r.tile.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <h2>DESCRIPTION</h2>
  2. <em>r.tile</em> retiles an existing raster map with user defined
  3. x and y tile size.
  4. <h2>NOTES</h2>
  5. <em>r.tile</em> generates a separate raster for each tile.
  6. This is equivalent to running <em>g.region</em> along with
  7. <em>r.resample</em> in a double loop.
  8. <p>
  9. The module can be used to split a large raster map into smaller
  10. tiles, e.g. for further parallelized analysis on a cluster computing
  11. system.
  12. <p>
  13. The overlap is defined in rows/columns.
  14. <h2>EXAMPLE</h2>
  15. Retiling example for the North Carolina DEM:
  16. <div class="code"><pre>
  17. g.region raster=elevation -p
  18. # rows: 1350
  19. # cols: 1500
  20. # generating 2 x 2 = 4 tiles (width=1500/2, height=rows/2)
  21. r.tile input=elevation output=elev_tile width=750 height=675
  22. </pre></div>
  23. creates 4 tiles with the prefix <em>elev_tile</em> (named:
  24. elev_tile-000-000, elev_tile-000-001, elev_tile-001-000, ...).
  25. <h2>SEE ALSO</h2>
  26. <em>
  27. <a href="g.region.html">g.region</a>,
  28. <a href="r3.retile.html">r3.retile</a>
  29. </em>
  30. <h2>AUTHOR</h2>
  31. Glynn Clements
  32. <p><i>Last changed: $Date$</i>