#' Download sampling point metadata
#'
#' @return A tibble containing the sampling point metadata
#' @examples
#' ep_metadata()
#'
#' @export
#' @importFrom readr read_delim
ep_metadata <- function() {
temp <- tempfile()
utils::download.file("https://discomap.eea.europa.eu/map/fme/metadata/PanEuropean_metadata.csv", temp)
metadata <- readr::read_delim(temp, "\t", escape_double = FALSE, trim_ws = TRUE)
unlink(temp)
return(metadata)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.