View source: R/sample_region_series.R
sample_region_series | R Documentation |
This function samples points from a region time series. Sampling can either be
performed for the same locations at all time steps (if only one value is given
for size
), or for different locations for each time step (if size
is a
vector of length equal to the number of time steps). To sample the same
number of points, but different locations, for each time step, provide a vector
repeating the same value for each time step.
sample_region_series(x, size, method = "random", replace = FALSE, na.rm = TRUE)
x |
a |
size |
number of points sampled. A single value is used to sample the same locations across all time steps, a vector of values to sample different locations at each time step. |
method |
one of the sampling methods from |
replace |
boolean determining whether we sample with replacement |
na.rm |
boolean determining whether NAs are removed |
This function wraps terra::spatSample()
to appropriate sample the
terra::SpatRaster
s in the terra::SpatRasterDataset
returned
by region_series()
.
a data.frame with the sampled cells and their respective values for the climate variables.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.