Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matildabrown/rWCVP
Generating Summaries, Reports and Plots from the World Checklist of Vascular Plants
https://github.com/matildabrown/rWCVP
Last synced: about 2 months ago
JSON representation
Generating Summaries, Reports and Plots from the World Checklist of Vascular Plants
- Host: GitHub
- URL: https://github.com/matildabrown/rWCVP
- Owner: matildabrown
- License: gpl-3.0
- Created: 2022-03-29T15:01:15.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-27T12:26:18.000Z (10 months ago)
- Last Synced: 2024-10-29T22:31:08.862Z (2 months ago)
- Language: R
- Homepage: https://matildabrown.github.io/rWCVP/
- Size: 18.8 MB
- Stars: 21
- Watchers: 4
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
- open-sustainable-technology - rWCVP - A package for accessing and using plant name and distribution data from the World Checklist of Vascular Plants. (Biosphere / Plants and Vegetation)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![R-CMD-check](https://github.com/matildabrown/rWCVP/workflows/R-CMD-check/badge.svg)](https://github.com/matildabrown/rWCVP/actions)
rWCVP is a package for accessing and using plant name and distribution data from the [World Checklist of Vascular Plants](https://powo.science.kew.org//)
## Installation
You can install the development version of rWCVP from [GitHub](https://github.com/) with:
``` r
# install.packages("remotes")
devtools::install_github("matildabrown/rWCVP")
```## Example
rWCVP makes it easy to get and plot the known distribution of plant species.
```{r example, eval=FALSE}
library(rWCVP)distribution <- wcvp_distribution("Myrcia guianensis", taxon_rank = "species")
# global map
wcvp_distribution_map(distribution)# zoomed-in map
wcvp_distribution_map(distribution, crop_map = TRUE)
```