-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.Rmd
70 lines (52 loc) · 2.58 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
59
60
61
62
63
64
65
66
67
68
69
70
laselva
=======
```{r echo=FALSE}
knitr::opts_chunk$set(
warning = FALSE,
message = FALSE,
collapse = TRUE,
comment = "#>"
)
```
[![R-check](https://github.com/ropenscilabs/laselva/workflows/R-check/badge.svg)](https://github.com/ropenscilabs/laselva/actions)
[![codecov](https://codecov.io/gh/ropenscilabs/laselva/branch/master/graph/badge.svg)](https://codecov.io/gh/ropenscilabs/laselva)
Access to Global Forest Inventory Data
Docs: https://docs.ropensci.org/laselva/
Please cite `laselva` if you use it in a paper: `citation(package = 'laselva')`
## Data sources
- French IGN Institut National de L'Information Geographique et Forestiere
- [Spain][esp]
- Species Presence absence from NFI and other European plots [Scientific Data paper][eupaper], [dataset][eufig]
- Australian plots [Ecology paper][auspaper], [dataset][ausfig]
- United States Forest Inventory and Analysis (FIA)
- Japan Ministry of the Environment, Monitoring Sites 1000 Project, [description][jpn]
## System Dependencies
If you want to get Spanish data, you'll need a system dependency called [mdbtools][]. mdbtools is not required for any other functions. Installation for major platforms:
- macos: `brew install mdbtools`
- deb: `apt-get install mdbtools`
- fedora: `yum install mdbtools`
- windows: not sure, anyone?
## Install
```{r eval=FALSE}
remotes::install_github("kunstler/laselva")
```
```{r}
library("laselva")
```
The `emld` R package is required for EML metadata access in `ls_fetch_jpn()`. If you don't have it
installed we'll just return an empty list
## Meta
* Please [report any issues or bugs](https://github.com/kunstler/laselva/issues).
* License: MIT
* Get citation information for `laselva` in R doing `citation(package = 'laselva')`
* Please note that this project is released with a [Contributor Code of Conduct][coc]
By participating in this project you agree to abide by its terms.
[![ropensci_footer](https://ropensci.org/public_images/github_footer.png)](https://ropensci.org)
[coc]: https://github.com/ropenscilabs/laselva/blob/master/.github/CODE_OF_CONDUCT.md
[auspaper]: https://doi.org/10.1890/14-0458R.1
[ausfig]: https://figshare.com/collections/Long-term_stem_inventory_data_from_tropical_rain_forest_plots_in_Australia/3307029
[eupaper]: https://doi.org/10.1038/sdata.2016.123
[eufig]: https://doi.org/10.6084/m9.figshare.c.3288407.v1
[esp]: https://www.miteco.gob.es/fr/biodiversidad/servicios/banco-datos-naturaleza/informacion-disponible/ifn3_base_datos_1_25.aspx
[jpn]: http://db.cger.nies.go.jp/JaLTER/ER_DataPapers/archives/2011/ERDP-2011-01/metadata
[mdbtools]: https://github.com/brianb/mdbtools