scaling: functions to change the resolution of a grid

scalingR Documentation

functions to change the resolution of a grid

Description

These functions change the resolution of a grid. They can downscale and upscale based on integer scaling of the resolution.

Usage

downscale(x, factor, match.extent = TRUE)
upscale(x, factor, max.p.na = 0.2, use.old = FALSE)

Arguments

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 max.p.na than it will receive an NA value during upscaling; otherwise the upscaled cell is given the mean value of all non-NA cells that it covers.

use.old

if FALSE then the newer Rcpp based implementation is used. Otherwise the old, pure R, version is used. This argument is here to facilitate testing.

Value

A grid of similar extent containing the upscaled or downscaled version of x.

Note

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.

Author(s)

Ethan Plunkett

See Also

match.extent

Examples

#

ethanplunkett/gridkernel documentation built on March 2, 2024, 9:06 p.m.