123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <h2>DESCRIPTION</h2>
- <em>r.resample</em> resamples the data values in a user-specified raster
- input map layer <em>name</em> (bounded by the current geographic region
- and masked by the current mask), and produces a new raster output map layer
- <em>name</em> containing the results of the resampling.
- The category values in the new raster output map layer will be the same
- as those in the original, except that the resolution and extent of the
- new raster output map layer will match those of the current geographic region
- settings (see <em><a href="g.region.html">g.region</a></em>).
- <em>r.resample</em> is intended for reinterpolation of continuous data
- to a different resolution rather than for interpolation from scattered data
- (use the <em>v.surf.*</em> modules for that purpose).
- <h2>NOTES</h2>
- The method by which resampling is conducted is "nearest neighbor"
- (see <em><a href="r.neighbors.html">r.neighbors</a></em>).
- The resulting raster map layer will have the same
- resolution as the resolution of the current geographic region
- (set using <em><a href="g.region.html">g.region</a></em>).
- <p>The resulting raster map layer may be identical to the original raster
- map layer. The <em>r.resample</em> program will copy the color table
- and history file associated with the original raster map
- layer for the resulting raster map layer and will create a modified
- category file which contains description of only those categories
- which appear in resampled file.
- <p>
- When the user resamples a GRASS <em>reclass</em> file, a true raster map
- is created by <em>r.resample</em>.
- <h2>SEE ALSO</h2>
- <em><a href="g.region.html">g.region</a></em>,
- <em><a href="r.mapcalc.html">r.mapcalc</a></em>,
- <em><a href="r.mfilter.html">r.mfilter</a></em>,
- <em><a href="r.neighbors.html">r.neighbors</a></em>,
- <em><a href="r.rescale.html">r.rescale</a></em>
- <h2>AUTHOR</h2>
- Michael Shapiro,
- U.S.Army Construction Engineering Research Laboratory
- <p><i>Last changed: $Date$</i>
|