r.plane.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <h2>DESCRIPTION</h2>
  2. <em>r.plane</em> creates a tilted plane raster map given user-specified
  3. parameters for inclination, azimuth, and the geographic location of a
  4. point on the plane.<br>
  5. The angle orientations of the <em>azimuth</em> parameter increase counter-clockwise,
  6. i.e., 0 degree = N, 45 degree = NW, 90 degree = W etc.
  7. <p>Increasing values of the <em>dip</em> parameter progressively lower (or dip) the northern
  8. half of the plane, and incline the southern half, assuming the <em>azimuth</em> parameter
  9. is held constant at 0 degrees.
  10. <h2>NOTES</h2>
  11. <tt>g.region -c</tt> provides the easting and northing coordinates for
  12. the center of the current region.
  13. <p><em>int</em> maps take less disk space than <em>float</em>s, which in turn
  14. take up less space than <em>double</em>s (but can be less exact).
  15. <h2>EXAMPLE</h2>
  16. A tilted plane in the North Carolina sample dataset region:
  17. <div class="code"><pre>
  18. g.region -d
  19. g.region -c
  20. r.plane myplane45 dip=45 az=90 east=527500.0 north=165000.0 \
  21. elev=1000 type=float
  22. </pre></div>
  23. <h2>AUTHOR</h2>
  24. Unknown<br>
  25. Updated to GRASS 5.7 by Michael Barton, Arizona State University
  26. <p><i>Last changed: $Date$</i>