r.plane.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>CELL</em> (integer) maps take less disk space than <em>FCELL</em>s (floating point),
  16. which in turn take up less space than <em>DCELL</em>s (double precision floating point).
  17. <!-- is that true because of grass's compression? otherwise both int and float are both 4 bytes per cell -->
  18. <h2>EXAMPLE</h2>
  19. A tilted plane in the North Carolina sample dataset region:
  20. <div class="code"><pre>
  21. g.region -d
  22. g.region -c
  23. r.plane myplane45 dip=45 az=90 east=527500.0 north=165000.0 \
  24. elev=1000 type=FCELL
  25. </pre></div>
  26. <h2>AUTHOR</h2>
  27. Stefan J&auml;ger (1994), University of Heidelberg during a stay at USGS<br>
  28. Updated to GRASS 5.7 by Michael Barton, Arizona State University<br>
  29. Full rewrite for GRASS 7 by Glynn Clements
  30. <p>
  31. <i>Last changed: $Date$</i>