Skip to contents

[Defunct] This function was defunct because the section about research topics of the site in DEIMS-SDR API version 1.1 has been removed.

This function obtains Research Topics as collected by all ILTER sites (more than 1200 around the world), as stored in DEIMS-SDR. Note that the execution time for this function is very high.

If the objective is to obtain information about Research Topics from a few sites, it is better to use other more specific functions (e.g. get_network_research_topics() or get_site_info()) or using other methods (How to about sites informations).

Usage

get_ilter_research_topics(sitesNum = NULL)

Arguments

sitesNum

A integer. It is the number of the sites that are read to get the information. Use this parameter only to get an example of 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 research topics and their URI (Uniform Resource Identifier) of 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) {
listResearchTopics <- get_ilter_research_topics(sitesNum = 20)
listResearchTopics[1:10, ] %>%
  dplyr::rows_insert(
  dplyr::tibble(
    researchTopicsLabel = "...",
    researchTopicsUri = "..."
  )
)
}