scaling | R Documentation |
These functions change the resolution of a grid. They can downscale and upscale based on integer scaling of the resolution.
downscale(x, factor, match.extent = TRUE)
upscale(x, factor, max.p.na = 0.2, use.old = FALSE)
x |
A grid object |
factor |
The factor by which the horizontal and vertical resolution will be either increased or decreased. |
match.extent |
Downscaling results in a loss of pixels around the edge. If match extent is TRUE then the downscaled image will have the same extent as x and will include a band of NA pixels around the edge. If it is FALSE the extent will be smaller and will not include the NA cells. |
max.p.na |
If the proportion of NA values (from the original resolution) in an upscaled cell exceeds |
use.old |
if |
A grid of similar extent containing the upscaled or downscaled version of x.
Downscaling with the match.extent
argument set to TRUE can gaurantee that the new grid is the same extent as the lower resolution grid. However, upscaling often expands the extent of the grid slightly because cells that are partially filled will be created in the upscaled grid. So when used in combination you will usually end up with mismatched extents.
Calling the function matchextent
can fix this. For an example see the code for the gaussiansmooth.grid
function.
Ethan Plunkett
match.extent
#
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.