Generate minimal documentation for species expected to be Least Concern (see IUCN Red List). Submit to the IUCN Red List via SIS Connect (registration needed)
Not yet on CRAN, but you can install the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("stevenpbachman/LCr")
Basic workflow:
get_name_keys
check name status against taxonomic name backbonesmake_LC_points
gather occurrence records from GBIF and convert to an IUCN standard point filemake_sis_csvs
generate SIS connect csv filesmake_zip
make a zip file for SIS Connect imports
library(LCr)
# some parameters needed for the point and csv files
first_name = "your first name"
second_name = "your second name"
email = "your email"
institution = "your institution"
# create a species list
sp <- data.frame(sp_col = c("Crabbea acaulis", "Crabbea cirsioides"))
# check names against GBIF and WCVP name backbones
sp_keys <- get_name_keys(df = sp, name_column = "sp_col")
# generate a point file according to IUCN standards
sp_occs <- make_LC_points(keys_df = sp_keys, range_check = TRUE)
# generate the csv files
sp_csvs <- make_sis_csvs(unique_id = sp_keys$wcvp_ipni_id,
wcvp_ipni_id = sp_keys$wcvp_ipni_id,
gbif_ref = sp_occs$citation,
native_ranges = sp_occs$native_ranges)
# make the ZIP file to send to IUCN SIS Connect
make_zip(sp_csvs)