r.spreadpath.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <h2>DESCRIPTION</h2>
  2. <em>r.spreadpath</em> recursively traces the least cost path backwards to
  3. the origin, given backlink information input map layers and target locations
  4. from where paths are to be traced. The backlink information map layers
  5. record each cell's backlink UTM northing (the y_input) and easting (the
  6. x_input) coordinates from which the cell's cumulative cost was determined.
  7. <p>
  8. The backlink inputs can be generated from another GRASS raster program
  9. <em>r.spread</em>. One of the major applications of <em>r.spreadpath</em>
  10. along with <em>r.spread</em> is to accurately find the least cost corridors
  11. and/or paths on a raster setting. More information on <em>r.spread</em> and
  12. <em>r.spreadpath</em> can be found in Xu (1994).
  13. <h2>Parameters:</h2>
  14. <dl>
  15. <dt><b>x_input=</b><em>name</em>
  16. <dd>Name of input raster map layer containing backlink UTM easting
  17. coordinates.
  18. <dt><b>y_input=</b><em>name</em>
  19. <dd>Name of input raster map layer containing backlink UTM northing coordinates.
  20. <dt><b>coordinate=</b><em>x,y[,x,y,x,y, ...]</em>
  21. <dd>Each x,y coordinate pair gives the easting and northing (respectively) geographic coordinates of a target point from which to backwards trace the least cost path. As many
  22. points as desired can be entered by the user.
  23. <dt><b>output=</b><em>name</em>
  24. <dd>Name of raster map layer to contain output. Also can be used as the map layer of the input target points. If so used, the input target point map will be overwritten by the output.
  25. </dl>
  26. <h2>SEE ALSO</h2>
  27. <em><a href="r.spread.html">r.spread</a></em>,
  28. <em><a href="r.ros.html">r.ros</a></em>
  29. <h2>REFERENCES</h2>
  30. Xu, Jianping, 1994, Simulating the spread of wildfires using a geographic
  31. information system and remote sensing, Ph. D. Dissertation, Rutgers University,
  32. New Brunswick, New Jersey.
  33. <h2>AUTHOR</h2>
  34. Jianping Xu and Richard G. Lathrop, Jr., Center for Remote Sensing and
  35. Spatial Analysis, Rutgers University.
  36. <p><i>Last changed: $Date$</i>