View source: R/neon_products.R
neon_products | R Documentation |
Return a table of all NEON Data Products, including product descriptions and the productCode needed for neon_download. (including list-columns).
neon_products(
api = "https://data.neonscience.org/api/v0",
.token = Sys.getenv("NEON_TOKEN")
)
api |
the URL to the NEON API, leave as default. |
.token |
an authentication token from NEON. A token is not
required but will allow access to a higher number of requests before
rate limiting applies, see
https://data.neonscience.org/data-api/rate-limiting/#api-tokens.
Note that once files are downloaded once, |
neon_download
products <- neon_products()
# Or search for a keyword
i <- grepl("bird", products$keywords)
products[i, c("productCode", "productName")]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.