merge: Merge multiple predictions

Description Usage Arguments Value Note Author(s) References

Description

Merges objects of class "SpatialPredictions" or "RasterBrickSimulations" and produces average predictions where the two objects overlap spatially. If the predictions are available at different resolutions, then it downscales all other grids to the smallest grid cell size using bicubic splines (for predictions) i.e. nearest neighbor algorithm (for simulations). Weigths can be passed via the RMSE.l argument, otherwise they will be estimated from validation slot (if objects are of the class "SpatialPredictions").

Usage

1
2
## S4 method for signature 'SpatialPredictions,SpatialPredictions'
merge(x, y, ..., RMSE.l = NULL, silent = TRUE)

Arguments

x

object of class "SpatialPredictions" or "RasterBrickSimulations"

y

object of class "SpatialPredictions" or "RasterBrickSimulations"

...

additional objects of class "SpatialPredictions" or "RasterBrickSimulations"

RMSE.l

numeric; list of mean prediction errors for each object (these are used as weights during the averaging)

silent

logical; specifies whether to print out the progress and used RMSE's

Value

Returns an object of type "SpatialPixelsDataFrame" or "RasterBrickSimulations" that contains only the merged values.

Note

Merging of multiple spatial predictions using weighted averaging is a heuristic approach to mapping. This method assumes that the predictions are completely independent (independent covariates, independent models), but this not might be the case and hence the merged predictions will be sub-optimal. Merging multiple predictions is however attractive for situations where the predictions do not have the same extent, so that spatial predictions with larger coverage can be used to fill in the gaps in locally produced predictions.

Author(s)

Tomislav Hengl and Gerard B.M. Heuvelink

References


GSIF documentation built on May 2, 2019, 5:44 p.m.

Related to merge in GSIF...