Nothing
#' Download metadata from Our World in Data
#'
#' @description
#' Retrieves the metadata for a data set from Our World in Data (OWID) by
#' specifying a chart identifier or direct URL.
#'
#' @param chart_id Character string specifying the chart identifier
#' (e.g., "life-expectancy"). Not required if `url` is provided.
#' @param url Direct URL to an OWID chart. If provided, `chart_id` is ignored.
#'
#' @return A list containing the requested OWID metadata.
#'
#' @examplesIf curl::has_internet()
#' \donttest{
#' # Download metadata using a data set
#' owid_get_metadata("life-expectancy")
#'
#' # Download metadata using an url
#' owid_get_metadata(
#' url = "https://ourworldindata.org/grapher/civil-liberties-score-fh"
#' )
#' }
#' @export
owid_get_metadata <- function(
chart_id = NULL,
url = NULL
) {
if (is.null(url)) {
base_url <- "https://ourworldindata.org/grapher/"
req <- request(base_url) |>
req_url_path_append(paste0(chart_id, ".metadata.json"))
} else {
url_prepared <- prepare_url(url, ".metadata.json")
req <- request(url_prepared)
}
resp <- perform_request(req, "owid_get_metadata")
metadata <- resp |>
resp_body_json()
metadata
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.