This function calculates the number of occurrences for individual species over a gridded map or as a time series (see 'Details' for more information).
Arguments
- data
A data cube object (class 'processed_cube').
- ...
Arguments passed on to
compute_indicator_workflow
ci_type
Type of bootstrap confidence intervals to calculate. (Default: "norm". Select "none" to avoid calculating bootstrap CIs.)
cell_size
Length of grid cell sides, in km. (Default: 10 for country, 100 for continent or world)
level
Spatial level: 'cube', 'continent', 'country', 'world', 'sovereignty', or 'geounit'. (Default: 'cube')
region
The region of interest (e.g., "Europe"). (Default: "Europe")
ne_type
The type of Natural Earth data to download: 'countries', 'map_units', 'sovereignty', or 'tiny_countries'. (Default: "countries")
ne_scale
The scale of Natural Earth data to download: 'small' - 110m, 'medium' - 50m, or 'large' - 10m. (Default: "medium")
output_crs
The CRS you want for your calculated indicator. (Leave blank to let the function choose a default based on grid reference system)
first_year
Exclude data before this year. (Uses all data in the cube by default.)
last_year
Exclude data after this year. (Uses all data in the cube by default.)
spherical_geometry
If set to FALSE, will temporarily disable spherical geometry while the function runs. Should only be used to solve specific issues. (Default is TRUE)
make_valid
Calls st_make_valid() from the sf package. Increases processing time but may help if you are getting polygon errors. (Default is FALSE).
num_bootstrap
Set the number of bootstraps to calculate for generating confidence intervals. (Default: 1000)
crs_unit_convert
Force a particular output CRS even when it has different units than the input CRS. (Default: FALSE)
shapefile_path
Path of an external shapefile to merge into the workflow. For example, if you want to calculate your indicator particular features such as protected areas or wetlands.
invert
Calculate an indicator over the inverse of the shapefile (e.g. if you have a protected areas shapefile this would calculate an indicator over all non protected areas)
Value
An S3 object with the classes 'indicator_map' or 'indicator_ts' and 'spec_occ' containing the calculated indicator values and metadata.
Details
Species occurrences are considered an essential biodiversity variable (EBV). They are mapped by calculating the total number of occurrences of a given species for each cell. This represents the occurrence frequency distribution, and also indicates the observed species distribution. The number of occurrences can act as a proxy for relative abundance of species with a similar detectability, which is an important aspect of biodiversity although not an indicator when calculated in isolation.
Examples
if (FALSE) { # \dontrun{
so_map <- spec_occ_map(example_cube_1, level = "country", region = "Denmark")
plot(so_map, c(2440728, 4265185))
} # }
so_ts <- spec_occ_ts(example_cube_1, first_year = 1985)
#> Spherical geometry (s2) switched off
#> although coordinates are longitude/latitude, st_intersection assumes that they
#> are planar
#> Spherical geometry (s2) switched on
#> Warning: attribute variables are assumed to be spatially constant throughout all geometries
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 2 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 2 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 22 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 5 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 48 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 3 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 4 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
#> [1] "All values of t are equal to 1 \n Cannot calculate confidence intervals"
plot(so_ts, c(2435767, 2434793))