For each LTER site the information is provided by the site manager in the DEIMS-SDR registry (see https://deims.org). The LTER site information is 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).
If the aim is to obtain the info about in which networks/RIs the site is listed, you can:
# For this example, the Lago Maggiore in Italy
deimsid <- 'https://deims.org/f30007c4-8a6e-4f11-ab87-569db54638fe'
siteAffiliations <- ReLTER::get_site_info(deimsid = deimsid,
category = 'Affiliations'
)
# network(s) where the site is involved in
knitr::kable(
siteAffiliations$networks[[1]],
caption = "The list of the network(s) in which the site is listed"
)
Table: The list of the network(s) in which the site is listed
# project(s) where the site is involved in
knitr::kable(
siteAffiliations$projects[[1]],
caption = "The list of the project(s) in which the site is listed"
)
Table: The list of the project(s) in which the site is listed
Get information about the geographic extent of the site:
library(leaflet)
siteBoundaries <- ReLTER::get_site_info(deimsid = deimsid,
category = "Boundaries"
)
leaflet(data = sitesBoundaries) %>%
addPolygons() %>%
addProviderTiles(provider = "CartoDB.PositronNoLabels",
group = "Basemap", layerId = 123) %>%
addTiles("http://{s}.basemaps.cartocdn.com/light_only_labels/{z}/{x}/{y}.png")
## Error in structure(list(options = options), leafletData = data): object 'sitesBoundaries' not found
Get information about the contact person responsible for the site, the organisation operating the site and its monitoring programs, the reference to the organisation or the responsible national authority for funding and strategic decisions about the site , full name of the person(s) or organisation(s) who created the documentation for the site:
siteContact <- ReLTER::get_site_info(deimsid = deimsid,
category = "Contacts"
)
# site manager(s)
knitr::kable(
siteContact$siteManager[[1]],
caption = "The list of the manager(s) of site"
)
Table: The list of the manager(s) of site
# operating organisation of site
knitr::kable(
siteContact$operatingOrganisation[[1]],
caption = "The list of the operating organization of the site"
)
Table: The list of the operating organization of the site
# metadata provider(s) of site
knitr::kable(
siteContact$metadataProvider[[1]],
caption = "The list of the metadata provider(s) of site"
)
Table: The list of the metadata provider(s) of site
# funding agency(ies) of site
knitr::kable(
siteContact$fundingAgency[[1]],
caption = "The list of the funding agency(ies) of site"
)
Table: The list of the funding agency(ies) of site
The same approach could be used for other category information.
## # A tibble: 1 × 24
## title uri geoCoord country geoElev.avg geoElev.min geoElev.max geoElev.unit
## <chr> <chr> <chr> <list> <dbl> <int> <int> <chr>
## 1 Lago Maggiore -… http… POINT (… <chr> 194. 186 4633 msl
## # ℹ 16 more variables: generalInfo.abstract <chr>, generalInfo.citation <lgl>,
## # generalInfo.relatedIdentifiers <lgl>, generalInfo.status.label <chr>,
## # generalInfo.status.uri <chr>, generalInfo.yearEstablished <int>,
## # generalInfo.yearClosed <lgl>, generalInfo.hierarchy.parent <list>,
## # generalInfo.hierarchy.children <lgl>, generalInfo.relatedSites <list>,
## # generalInfo.siteName <chr>, generalInfo.shortName <chr>, generalInfo.siteType <chr>,
## # generalInfo.protectionLevel <lgl>, generalInfo.landUse <lgl>, …
siteInfrastructure <- ReLTER::get_site_info(deimsid = deimsid,
category = "Infrastructure"
)
siteInfrastructure$collection[[1]]
## Warning: Unknown or uninitialised column: `collection`.
## NULL
siteEnvCharacts <- ReLTER::get_site_info(deimsid = deimsid,
category = "EnvCharacts"
)
siteEnvCharacts
## # A tibble: 1 × 26
## title uri geoCoord country geoElev.avg geoElev.min geoElev.max geoElev.unit
## <chr> <chr> <chr> <list> <dbl> <int> <int> <chr>
## 1 Lago Maggiore -… http… POINT (… <chr> 194. 186 4633 msl
## # ℹ 18 more variables: envCharacteristics.airTemperature.yearlyAverage <dbl>,
## # envCharacteristics.airTemperature.monthlyAverage <lgl>,
## # envCharacteristics.airTemperature.unit <chr>,
## # envCharacteristics.airTemperature.referencePeriod <lgl>,
## # envCharacteristics.precipitation.yearlyAverage <int>,
## # envCharacteristics.precipitation.monthlyAverage <lgl>,
## # envCharacteristics.precipitation.unit <chr>, …
By selecting the category Infrastructure you can obtain info as:
By selecting the category Infrastructure you can obtain info as: