r.param.scale.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <h2>DESCRIPTION</h2>
  2. <em>r.param.scale</em> extracts terrain parameters from a digital elevation model. 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>: 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>: plan curvature (horizontal curvature, intersecting with
  23. the <i>XY</i> plane)</li>
  24. <li>
  25. <i>longc</i>: 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>: 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>: maximum curvature (can be in any direction)</li>
  33. <li>
  34. <i>minic</i>: 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. <em><a href="r.slope.aspect.html">r.slope.aspect</a></em>.
  54. <h2>EXAMPLE</h2>
  55. The next commands will create a geomorphological map of the Spearfish sample
  56. dataset region:
  57. <div class="code"><pre>
  58. g.region raster=elevation.10m -p
  59. r.param.scale in=elevation.10m output=morphology method=feature size=9
  60. </pre></div>
  61. <div align="center" style="margin: 10px">
  62. <a href="r_param_scale_morph.jpg">
  63. <img src="r_param_scale_morph.jpg" width="600" alt="r.param.scale example" border=0><br>
  64. </a>
  65. <i>Figure: Geomorphological map of a subregion in the Spearfish (SD) area</i>
  66. </div>
  67. <h2>TODO</h2>
  68. Fix bug when `constrain through central cell' option selected. Create color
  69. tables for all output files (presently only on features).
  70. <h2>REFERENCES</h2>
  71. <ul>
  72. <li>Wood, J. (1996): The Geomorphological characterisation of
  73. Digital Elevation Models. Diss., Department of Geography, University
  74. of Leicester, U.K<br>online at:
  75. <a href="http://hdl.handle.net/2381/34503">http://hdl.handle.net/2381/34503</a></li>
  76. <li>Java Code in
  77. <a href="http://www.geog.le.ac.uk/jwo/research/LandSerf">LandSerf</a>
  78. that implements the same procedure</li>
  79. </ul>
  80. <h2>SEE ALSO</h2>
  81. <em>
  82. <a href="r.geomorphon.html">r.geomorphon</a>,
  83. <a href="r.slope.aspect.html">r.slope.aspect</a>
  84. </em>
  85. <h2>AUTHORS</h2>
  86. <address>
  87. <a href="MAILTO:jwo@le.ac.uk">jwo@le.ac.uk</a>
  88. - <a href="http://www.geog.le.ac.uk/assist/index.html">ASSIST's home</a></address>
  89. <p>Update to FP 3/2002: L. Potrich, M. Neteler, S. Menegon (ITC-irst)
  90. <!--
  91. <p>
  92. <i>Last changed: $Date$</i>
  93. -->