Obtain information about the observed properties collected of all sites ILTER.
Source:R/get_ilter_observedProperties.R
get_ilter_observedProperties.Rd
Return a tibble
object containing observed properties
collected by all
of the ILTER sites
(more than 1200 around the world), available from
DEIMS-SDR.
This function gathers in a unique tibble all the observed properties from all ILTER sites. Note that the execution time for this function is very high.
If the objective is obtain information about observed properties
on a few sites, it is better to use other more specific functions (e.g.
get_network_observedProperties()
or get_site_info()
) or using
other methods
(How to about sites
informations).
Arguments
- sitesNum
A
integer
. The number of the sites that are read to get the information. Use this parameter only to sample the output of this function. If the value of sitesNum is #' 0 (default) all the ILTER sites will be parsed and the waiting time will be long.
Value
The output of the function is a tibble
containing the list
of observed properties and their URI (Uniform Resource Identifier) collected
in all ILTER 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_ilter_observedProperties(sitesNum = 20)
listParams[1:10, ] %>%
dplyr::rows_insert(
dplyr::tibble(
parameterLabel = "...", parameterUri = "..."
)
)
}