Description Usage Arguments Value Note Author(s) References Examples
Algorithm performs spatial downscaling of coarse grid mapping to fine grid mapping using predictive covariates and a GAM (generalised additive model)
1 2 | ## S4 method for signature 'r2 = "RasterStack", c.grid = "RasterLayer'
dissever(r2, c.grid, ss = 0.5, cores = 8, thresh = 0.01)
|
r2 |
object of class |
c.grid |
object of class |
ss |
numeric: The proportion of the map that is sampled for fitting the GAM model (a number between 0 and 1) |
cores |
numeric: number of computer cores to call upon for running the algorithm |
thresh |
numeric: dissever iterations will proceed until this value is met |
Returns a data frame, and sequentially generates gridded maps as the algoithm goes through the initialisation and iteration phases:
data.frame: The RMSE is a measure of the difference between the map to be downscaled and the aggregated predictions of the downscaled mapping. Produced upon every iteration
dissever is a downscaling algorithm that seeks to map a target variable at fine resoultion given an available coarse resolution map of the same target variable, together with fine scaled predictive covariates that will inform the spatial prediction. The agorithm uses generalised additive modelling to fit the relationship betwween target variable and predictive covariates. The algorithm has two phases. 1. Initialisation - a coarse grid to fine grid resample followed by sampling and initial model fit. 2. Iteration. Adjustments are made to the predictions iteratively in order to try and ensure that the coarse grid map is linearly related to the fine grid predictions i.e. there is a mass balance property to be attained. Iterations proceed until the threshold is met. The threshold is based on the change in RMSE over three iterations. If the change is less than the threshold the algorithm will terminate. It is always assumed that the map extent of the coarse grid map to be downscaled is from the same area and same extent as the fine gridded covariates. A number of grids are produced from the algorithm, all of which are deposited into the disseverOuts folder which will be automatically created in your working directory after starting the downscaling This version of dissever has not facilitated the ability to incorporate the prediction uncertainties of the coarse map
Brendan Malone
Malone, B.P, McBratney, A.B., Minasny, B., Wheeler, I., (2011) A general method for downscaling earth resource information. Computers & Geosciences, 41: 119-125.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.