r.param.scale.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <h2>DESCRIPTION</h2>
  2. <b>r.param.scale</b> extracts terrain parameters from a DEM. Uses a
  3. multi-scale approach by fitting a bivariate quadratic polynomial to a given
  4. window size using least squares.
  5. <p>The module calculates the following parameters (terminology is from Wood,
  6. 1996 with related terminology used in other GRASS modules listed in
  7. brackets):
  8. <ul>
  9. <li>
  10. <i>elev</i>: Generalised elevation value (for resampling purposes at different
  11. scale)</li>
  12. <li>
  13. <i>slope</i>: Magnitude of maximum gradient (steepest slope angle)</li>
  14. <li>
  15. <i>aspect</i>: Direction of maximum gradient (steepest slope direction=flow direction)</li>
  16. <li>
  17. <i>profc</i> or profile curvature (curvature intersecting with the plane
  18. defined by <i>Z</i> axis and maximum gradient direction). Positive values
  19. describe convex profile curvature, negative values concave profile
  20. curvature.</li>
  21. <li>
  22. <i>planc</i> or plan curvature (horizontal curvature, intersecting with
  23. the <i>XY</i> plane)</li>
  24. <li>
  25. <i>longc</i> or longitudinal curvature (profile curvature intersecting
  26. with the plane defined by the surface normal and maximum gradient direction)</li>
  27. <li>
  28. <i>crosc</i> or cross-sectional curvature (tangential curvature intersecting
  29. with the plane defined by the surface normal and a tangent to the contour
  30. - perpendicular to maximum gradient direction)</li>
  31. <li>
  32. <i>maxic</i> or maximum curvature (can be in any direction)</li>
  33. <li>
  34. <i>minic</i> or minimum curvature (in direction perpendicular to the direction
  35. of of maximum curvature)</li>
  36. <!--
  37. <li>
  38. <i>meanc</i> or mean curvature (average of maximum and minimum curvatures).</li>
  39. -->
  40. <li>
  41. <i>feature</i>: Morphometric features: peaks, ridges, passes, channels, pits and planes</li>
  42. </ul>
  43. <h2>NOTES</h2>
  44. In <i>r.param.scale</i> the direction of maximum gradient (considered
  45. downslope) is stored as (West is 0 degree, East is +/- 180 degree):
  46. <ul>
  47. <li>
  48. 0..+180 degree from West to North to East</li>
  49. <li>
  50. 0..-180 degree from West to South to East</li>
  51. </ul>
  52. Note that the aspect map is calculated differently from
  53. <a href="r.slope.aspect.html">r.slope.aspect</a>.
  54. <h2>Still to do</h2>
  55. Fix bug when `constrain through central cell' option selected. Create color
  56. tables for all output files (presently only on features).
  57. <h2>EXAMPLE</h2>
  58. The next commands will create a geomorphological map of the Spearfish region:
  59. <div class="code"><pre>
  60. g.region rast=elevation.10m -p
  61. r.param.scale in=elevation.10m output=morphology param=feature size=9
  62. </pre></div>
  63. <p><center>
  64. <img src="r_param_scale_morph.jpg" alt="r.param.scale generated geomorphological map"><br>
  65. <i>Geomorphological map of a subregion in the Spearfish (SD) area</i>
  66. </center>
  67. <h2>SEE ALSO</h2>
  68. <!-- not ported to GRASS 6 due to non-GPLness of numerical recipes.
  69. <i><a href="d.param.scale.html">d.param.scale</a></i>
  70. -->
  71. <p>Java Code in
  72. <a href="http://www.geog.le.ac.uk/jwo/research/LandSerf">LandSerf</a>
  73. that implements the same procedure
  74. <h2>REFERENCE</h2>
  75. Wood, J. (1996): The Geomorphological characterisation of Digital Elevation
  76. Models. Diss., Department of Geography, University of Leicester, U.K.
  77. <br>online at:
  78. <br><a href="http://www.soi.city.ac.uk/~jwo/phd/">http://www.soi.city.ac.uk/~jwo/phd/</a>
  79. <h2>AUTHOR</h2>
  80. <address>
  81. <a href="MAILTO:jwo@le.ac.uk">jwo@le.ac.uk</a>
  82. - <a href="http://www.geog.le.ac.uk/assist/index.html">ASSIST's home</a></address>
  83. <p>Update to FP 3/2002: L. Potrich, M. Neteler, S. Menegon (ITC-irst)
  84. <p><i>Last changed: $Date$</i>