r.plane.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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>
  8. Increasing values of the <em>dip</em> parameter progressively lower (or dip) the northern
  9. half of the plane, and incline the southern half, assuming the <em>azimuth</em> parameter
  10. is held constant at 0 degrees.
  11. <h2>NOTES</h2>
  12. <tt>g.region -c</tt> provides the easting and northing coordinates for
  13. the center of the current region.
  14. <p>
  15. <em>int</em> maps take less disk space than <em>float</em>s, which in turn
  16. take up less space than <em>double</em>s (but can be less exact).
  17. <h2>EXAMPLE</h2>
  18. A tilted plane in the North Carolina sample dataset region:
  19. <div class="code"><pre>
  20. g.region -d
  21. g.region -c
  22. r.plane myplane45 dip=45 az=90 east=527500.0 north=165000.0 \
  23. elev=1000 type=float
  24. </pre></div>
  25. <h2>AUTHOR</h2>
  26. Unknown<br>
  27. Updated to GRASS 5.7 by Michael Barton, Arizona State University
  28. <p><i>Last changed: $Date$</i>