-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
60 lines (42 loc) · 1.71 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# LCRapid
<!-- badges: start -->
[![R-CMD-check](https://github.com/barnabywalker/LCRapid/workflows/R-CMD-check/badge.svg)](https://github.com/barnabywalker/LCRapid/actions)
<!-- badges: end -->
An R package to generate a rapid Least Concern Red List assessment for plant species
## Overview
Quickly determine if a plant species is likely to be non-threatened (Least Concern - See [IUCN Red List](https://www.iucnredlist.org/)). Generate minimal documentation for a Least Concern species and submit to the IUCN Red List via [SIS Connect](https://connect.iucnredlist.org/) (registration needed)
## Installation
Not yet on [CRAN](https://CRAN.R-project.org), but you can install the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("stevenpbachman/LCRapid")
```
## Usage
The workflow is broken into several steps and each step can be run independently:
1. `name_search` check name status against taxonomic backbones
2. `get_points` gather occurrence records
3. `filter_native` clean points with native range
4. `calculate_metrics` calculate metrics
5. `apply_thresholds` assess whether species is Least Concern
6. `make_files` generate data files or reports
The batch option allows you to run multiple species.
### Getting started
```{r example}
library(LCRapid)
## check a name against GBIF, Kew Names Matching Service and Plants of the World Online
name_search("Poa annua L.")
#get_points()
#etc...
```