123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <h2>DESCRIPTION</h2>
- <em>r.spreadpath</em> recursively traces the least cost path backwards to
- the origin, given backlink information input map layers and target locations
- from where paths are to be traced. The backlink information map layers
- record each cell's backlink UTM northing (the y_input) and easting (the
- x_input) coordinates from which the cell's cumulative cost was determined.
- <p>
- The backlink inputs can be generated from another GRASS raster program
- <em>r.spread</em>. One of the major applications of <em>r.spreadpath</em>
- along with <em>r.spread</em> is to accurately find the least cost corridors
- and/or paths on a raster setting. More information on <em>r.spread</em> and
- <em>r.spreadpath</em> can be found in Xu (1994).
- <h2>Parameters:</h2>
- <dl>
- <dt><b>x_input=</b><em>name</em>
- <dd>Name of input raster map layer containing backlink UTM easting
- coordinates.
- <dt><b>y_input=</b><em>name</em>
- <dd>Name of input raster map layer containing backlink UTM northing coordinates.
- <dt><b>coordinate=</b><em>x,y[,x,y,x,y, ...]</em>
- <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
- points as desired can be entered by the user.
- <dt><b>output=</b><em>name</em>
- <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.
- </dl>
- <h2>SEE ALSO</h2>
- <em><a href="r.spread.html">r.spread</a></em>,
- <em><a href="r.ros.html">r.ros</a></em>
- <h2>REFERENCES</h2>
- Xu, Jianping, 1994, Simulating the spread of wildfires using a geographic
- information system and remote sensing, Ph. D. Dissertation, Rutgers University,
- New Brunswick, New Jersey.
- <h2>AUTHOR</h2>
- Jianping Xu and Richard G. Lathrop, Jr., Center for Remote Sensing and
- Spatial Analysis, Rutgers University.
- <p><i>Last changed: $Date$</i>
|