spdf_2data | R Documentation |
Creates a data.frame of species' references that contains identifiers of position and species name, using a SpatVector representing multiple species as input.
spdf_2data(spdf_object, spdf_grid, parallel = FALSE, n_cores = NULL)
spdf_object |
SpatVector representing species' geographic distributions. The data.frame associated with the object must contain a column named "Species" to distinguish among features. |
spdf_grid |
SpatVector of geographic grid for the region of interest
(output of function |
parallel |
(logical) whether to perform analyses in parallel. Default = FALSE. |
n_cores |
(numeric) number of cores to be used when |
A data.frame of species' found in distinct positions (defined with identifiers); includes two columns: "ID" and "Species".
# Data
species_data <- terra::vect(system.file("extdata/species_data.gpkg",
package = "biosurvey"))
mx <- terra::vect(system.file("extdata/mx.gpkg", package = "biosurvey"))
# GRID
grid_reg <- grid_from_region(region = mx, cell_size = 100)
# Species data from polygons
sp_data <- spdf_2data(spdf_object = species_data, spdf_grid = grid_reg)
summary(sp_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.