knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

fgeo.scbi

Lifecycle: experimental Travis build status Coveralls test coverage CRAN status

The goal of fgeo.scbi is to provide easy access to data from the Smithsonian Conservation Biology Institute (SCBI) ForestGEO plot. For now, this is an experimental package to test a new approach to sharing ForestGEO data.

Installation

# install.packages("devtools")
devtools::install_github("forestgeo/fgeo.scbi")

Example

Access data from dryad (https://doi.org/10.5061/dryad.6nc8c).

Access data from the public data portal on GitHub.

library(purrr)

github_path <- 
  "SCBI-ForestGEO/SCBI-ForestGEO-Data/tree_main_census/data/census-csv-files"

download_urls <- ghr::ghr_ls_download_url(github_path)
download_urls %>% 
  purrr::map(readr::read_csv) %>% 
  purrr::set_names(fs::path_file(download_urls))


forestgeo/fgeo.scbi documentation built on May 31, 2019, 10:02 a.m.