Obtain a list of all the observed properties of sites in an eLTER Network.
Source:R/get_network_observedProperties.R
get_network_observedProperties.Rd
This function obtains all observed properties collected in an eLTER Network (e.g. LTER- Italy network), through the DEIMS-SDR API.
Value
The output of the function is a tibble
containing the list
of observed properties and their URI (Uniform Resource Identifier) collected
by the network's sites.
References
Ooms J (2014). “The jsonlite Package: A Practical and Consistent Mapping Between JSON Data and R Objects.” arXiv:1403.2805 [stat.CO]. https://arxiv.org/abs/1403.2805.
Wickham H, François R, Henry L, Müller K (2022). dplyr: A Grammar of Data Manipulation. R package version 1.0.9, https://CRAN.R-project.org/package=dplyr.
Author
Alessandro Oggioni, phD (2020) oggioni.a@irea.cnr.it
Examples
if (FALSE) {
listParams <- get_network_observedProperties(
networkDEIMSID =
"https://deims.org/networks/e0f680c2-22b1-4424-bf54-58aa9b7476a0"
)
listParams[1:10, ] %>%
dplyr::rows_insert(
dplyr::tibble(parameterLabel = "...", parameterUri = "...")
)
}