r.topidx.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <h2>DESCRIPTION</h2>
  2. <em>r.topidx</em> creates topographic index (wetness index), ln(a/tan(beta)), map from
  3. elevation map
  4. <p>where
  5. <dl>
  6. <dd>a: the area of the hillslope per unit contour length that drains through any point,
  7. <p><dd>tan(beta): the local surface topographic slope (delta vertical) / (delta horizontal).
  8. </dl>
  9. <p>Input maps may have NULL values. For example, if you have a MASK for
  10. a watershed (basin map from <em>r.water.outlet</em>), the
  11. following command will create a masked elevation map (belev):
  12. <div class="code"><pre>
  13. r.mapcalc "belev = if(isnull(basin), basin, elev)"
  14. </pre></div>
  15. <p>
  16. <em>r.stats -Anc</em> prints out averaged statistics for topographic index.
  17. <h2>SEE ALSO</h2>
  18. <em>
  19. <a href="r.topmodel.html">r.topmodel</a>,
  20. <a href="r.water.outlet.html">r.water.outlet</a>,
  21. <a href="r.mapcalc.html">r.mapcalc</a>
  22. </em>
  23. <br>
  24. <a href="http://idea.isnew.info/r.topidx.html">Known issues</a>
  25. <h2>REFERENCES</h2>
  26. Cho, H., 2000. GIS Hydrological Modeling System by Using Programming Interface
  27. of GRASS. Master's Thesis, Department of Civil Engineering, Kyungpook National
  28. University, Korea.
  29. <p>
  30. Moore, I.D., R.B. Grayson, and A.R. Ladson, 1991. Digital Terrain Modeling: A
  31. Review of Hydrological, Geomorphological, and Biological Applications.
  32. Hydrological Processes 5:3-30.
  33. <h2>AUTHORS</h2>
  34. <a href="mailto:grass4u@gmail com">Huidae Cho</a><br>
  35. Hydro Laboratory, Kyungpook National University, South Korea
  36. <p>
  37. Based on GRIDATB.FOR by Keith Beven.
  38. <p><i>Last changed: $Date$</i>