knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "README-" )
The global plant phenology data portal, or PPO data portal, is an aggregation of plant phenological observations from USA-NPN, NEON, and PEP725 representing 20 million phenological observations from across North America and Europe. The PPO data portal utilizes the Plant Phenology Ontology (PPO) to align phenological terms and measurements from the various databases. The rppo R package enables programmatic access to all data contained in the PPO data portal incuding selected classes contained in the PPO itself.
For information on how data is assembled for the PPO data portal, visit the ppo-data-pipeline git repository.
The production version of rppo is accessible on CRAN:
install.packages("rppo") library(rppo)
You can install the development version of rppo from github with:
install.packages("devtools") devtools::install_github("ropensci/rppo") library(rppo)
Following are a couple of brief examples to illustrate how to get started with rppo. We recommend visiting the rppo vignette for a more complete set of examples on using the rppo package, as well as viewing man pages for rppo functions in the R environment, using ?ppo_data
and ?ppo_terms
.
# query all results from day 1 through 100 in a particular bounding box, # limited to 2 records r <- ppo_data(fromDay = 1, toDay = 100, bbox="37,-120,38,-119", limit=2, timeLimit=5) # view the data returned print(r$data) # view the number of possible records returned print(r$number_possible) # return a data frame of present presentTerms <- ppo_terms(present = TRUE, timeLimit=3) # print the 2nd present term returned print(presentTerms[2,])
To cite the 'rppo' R package in publications use:
'John Deck, Brian Stucky, Ramona Walls, Kjell Bolmgren, Ellen Denny, Salix Dubois, Robert Guralnick' (2018). rppo: An interface to the Plant Phenology Ontology and associated data store. R package version 2.0 https://github.com/ropensci/rppo
View our code of conduct
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.