For each LTER site the information are provided, by site manager, into DEIMS-SDR registry (see https://deims.org). The LTER site's information are grouped into main sections, the most important ones are:

For more details about the site data model please visit https://deims.org/models/?id=site.

The get_site_info function of {ReLTER} allows to download details about a specific site, through the DEIMS-SDR sites API and the DEIMS.ID (https://deims.org/docs/deimsid.html).

Get affiliation info of the LTER site:

If the aim is to obtain the info about in which networks/RIs the site is listed, you can:

siteAffiliations <- ReLTER::get_site_info(
  deimsid = 'https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe',
  category = 'Affiliations'
)
# network(s) where the site is involved in
knitr::kable(
  siteAffiliations$affiliation.networks[[1]]$network,
  caption = "The list of the network(s) in which the site is listed"
)
# project(s) where the site is involved in
knitr::kable(
  siteAffiliations$affiliation.projects[[1]],
  caption = "The list of the project(s) in which the site is listed"
)

Get boundaries info of the LTER site:

If the aim is to obtain the info about the geographic extent covering the area of all measurements, you can:

siteBoundaries <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "Boundaries"
)

tmap::tmap_mode("view")

tmap::tm_basemap("OpenStreetMap") +
  tmap::tm_shape(siteBoundaries) +
  tmap::tm_polygons(col = "skyblue", alpha = 0.25, border.col = "blue")

Get Contacts info of the LTER site:

If the aim is to obtain the info about the reference to the contact person responsible for the site, the organisation operating the site and its monitoring programme(s), the reference to the organisation or the responsible national authority for funding and strategic decisions about the site or the full name of the person(s) or organisation(s) who created the documentation for the site, you can:

siteContact <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "Contacts"
)
# site manager(s)
knitr::kable(
  siteContact$generalInfo.siteManager[[1]],
  caption = "The list of the manager(s) of site"
)
# operating organisation of site
knitr::kable(
  siteContact$generalInfo.operatingOrganisation[[1]],
  caption = "The list of the operating organization of the site"
)
# metadata provider(s) of site
knitr::kable(
  siteContact$generalInfo.metadataProvider[[1]],
  caption = "The list of the metadata provider(s) of site"
)
# funding agency(ies) of site
knitr::kable(
  siteContact$generalInfo.fundingAgency[[1]],
  caption = "The list of the funding agency(ies) of site"
)

The same approach could be used for other category information.

siteGeneral <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "General"
)
siteGeneral
siteInfrastructure <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "Infrastructure"
)
siteInfrastructure$generalInfo.collection
siteEnvCharacts <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "EnvCharacts"
)
siteEnvCharacts

By selecting the category Infrastructure you can obtain info as:

By selecting the category Infrastructure you can obtain info as:

Get list of parameters or related resources declared to the LTER site:

siteObsProp <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "observedProperties"
)
# parameter(s) collected in the site
knitr::kable(
  siteObsProp$observedProperties[[1]],
  caption = "The list of the funding agency(ies) of site"
)

siteRelateRes <- ReLTER::get_site_info(
  deimsid = "https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe",
  category = "RelateRes"
)
# resource(s) related to the site (e.g. datasets, activities)
knitr::kable(
  siteRelateRes$relatedResources[[1]],
  caption = "The list of the funding agency(ies) of site"
)

Finally if you want get info from multiple site, please visit this page.



oggioniale/ReLTER documentation built on Jan. 4, 2024, 3:48 p.m.