View source: R/cv_spatial_autocor.R
cv_spatial_autocor | R Documentation |
This function provides a quantitative basis for choosing block size. The spatial autocorrelation in either the
spatial sample points or all continuous predictor variables available as raster layers is assessed and reported.
The response (as defined be column
) in spatial sample points can be binary such as species distribution data,
or continuous response like soil organic carbon. The function estimates spatial autocorrelation ranges of all input
raster layers or the response data. This is the range over which observations are independent and is determined by
constructing the empirical variogram, a fundamental geostatistical tool for measuring spatial autocorrelation.
The empirical variogram models the structure of spatial autocorrelation by measuring variability between all possible
pairs of points (O'Sullivan and Unwin, 2010). Results are plotted. See the details section for further information.
cv_spatial_autocor(
r,
x,
column = NULL,
num_sample = 5000L,
deg_to_metre = 111325,
plot = TRUE,
progress = TRUE,
...
)
r |
a terra SpatRaster object. If provided (and |
x |
a simple features (sf) or SpatialPoints object of spatial sample data (e.g., species binary or continuous date). |
column |
character; indicating the name of the column in which response variable (e.g. species data as a binary response i.e. 0s and 1s) is stored for calculating spatial autocorrelation range. This supports multiple column names. |
num_sample |
integer; the number of sample points of each raster layer to fit variogram models. It is 5000 by default, however it can be increased by user to represent their region well (relevant to the extent and resolution of rasters). |
deg_to_metre |
integer. The conversion rate of degrees to metres. |
plot |
logical; whether to plot the results. |
progress |
logical; whether to shows a progress bar. |
... |
additional option for |
The input raster layers should be continuous for computing the variograms and estimating the range of spatial autocorrelation. The input rasters should also have a specified coordinate reference system. However, if the reference system is not specified, the function attempts to guess it based on the extent of the map. It assumes an un-projected reference system for layers with extent lying between -180 and 180.
Variograms are calculated based on the distances between pairs of points, so un-projected rasters (in degrees) will
not give an accurate result (especially over large latitudinal extents). For un-projected rasters, the great circle distance
(rather than Euclidean distance) is used to calculate the spatial distances between pairs of points. To
enable more accurate estimate, it is recommended to transform un-projected maps (geographic coordinate
system / latitude-longitude) to a projected metric reference system (e.g. UTM or Lambert) where it is possible.
See autofitVariogram
from automap and variogram
from gstat packages
for further information.
An object of class S3. A list object including:
range - the suggested range (i.e. size), which is the median of all calculated ranges in case of 'r'.
range_table - a table of input covariates names and their autocorrelation range
plots - the output plot (the plot is shown by default)
num_sample - number sample of 'r' used for analysis
variograms - fitted variograms for all layers
O'Sullivan, D., Unwin, D.J., (2010). Geographic Information Analysis, 2nd ed. John Wiley & Sons.
Roberts et al., (2017). Cross-validation strategies for data with temporal, spatial, hierarchical, or phylogenetic structure. Ecography. 40: 913-929.
cv_block_size
library(blockCV)
# import presence-absence species data
points <- read.csv(system.file("extdata/", "species.csv", package = "blockCV"))
# make an sf object from data.frame
pa_data <- sf::st_as_sf(points, coords = c("x", "y"), crs = 7845)
# load raster data
path <- system.file("extdata/au/", package = "blockCV")
files <- list.files(path, full.names = TRUE)
covars <- terra::rast(files)
# spatial autocorrelation of a binary/continuous response
sac1 <- cv_spatial_autocor(x = pa_data,
column = "occ", # binary or continuous data
plot = TRUE)
# spatial autocorrelation of continuous raster files
sac2 <- cv_spatial_autocor(r = covars,
num_sample = 5000,
plot = TRUE)
# show the result
summary(sac2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.