View source: R/delta_downscale.R
delta_downscale | R Documentation |
The delta method computes the difference between an observed raster and the
equivalent predictions from a model for a given time step, and then applies
that difference (delta) to all other time steps. You will first need to
create the delta raster with delta_compute()
, and thus use it
as an argument for this function.
delta_downscale(
x,
delta_rast,
x_landmask_high = NULL,
range_limits = NULL,
nmax = 7,
set = list(idp = 0.5),
...
)
x |
a |
delta_rast |
a |
x_landmask_high |
a |
range_limits |
range to which the downscaled reconstructions are forced to be within (usually based on the observed values). Ignored if left to NULL. |
nmax |
the number of nearest observations that should be used for a
kriging prediction or simulation, where nearest is defined in terms
of the space of the spatial locations (see |
set |
named list with optional parameters to be passed to gstat
(only set commands of gstat are allowed, and not all of them may be
relevant; see the gstat manual for gstat stand-alone, URL and more details
in the |
... |
further parameters to be passed to |
It is possible to also provide a high resolution landmask to this function.
For cells which are not included in the original simulation (e.g. because
the landmask was discretised at lower resolution), an inverse
distance weighted algorithm (as implemented in gstat::gstat()
) is used
to interpolate the missing values. See the manpage for gstat::gstat()
for more parameters that can change the behaviour of the iwd interpolation.
a terra::SpatRaster
of the downscaled variable, where each
layers is a time step.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.