An R package to generate a rapid Least Concern Red List assessment for plant species
Quickly determine if a plant species is likely to be non-threatened (Least Concern - See IUCN Red List). Generate minimal documentation for a Least Concern species and 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/LCRapid")
The workflow is broken into several steps and each step can be run independently:
name_search
check name status against taxonomic backbonesget_points
gather occurrence recordsfilter_native
clean points with native rangecalculate_metrics
calculate metricsapply_thresholds
assess whether species is Least Concernmake_files
generate data files or reports
The batch option allows you to run multiple species.
library(LCRapid)
## check a name against GBIF, Kew Names Matching Service and Plants of the World Online
name_search("Poa annua L.")
#> # A tibble: 1 x 11
#> searchName GBIF_key GBIF_name GBIF_rank GBIF_confidence GBIF_family
#> <chr> <int> <chr> <chr> <int> <chr>
#> 1 Poa annua L. 2704179 Poa annua L. SPECIES 100 Poaceae
#> # ... with 5 more variables: WCVP_matched <lgl>, WCVP_ipni_id <chr>,
#> # WCVP_record <chr>, WCVP_status <chr>, WCVP_name <chr>
#get_points()
#etc...