R/get_ogc_documentation.R

Defines functions check_OGC_requests get_properties_for_docs get_ogc_params get_collection get_description

Documented in check_OGC_requests get_ogc_params

#' Create service descriptions dynamically
#'
#' This function populates the parameter descriptions.
#'
#' @param service Character, can be any of the endpoints
#' @return list
#' @noRd
#' @examplesIf is_dataRetrieval_user()
#'
#' \donttest{
#' ml_desc <- dataRetrieval:::get_description("monitoring-locations")
#' ml_desc
#' }
#'
get_description <- function(service) {
  query_ret <- get_collection()

  tags <- query_ret[["tags"]]

  service_index <- which(sapply(tags, function(x) {
    x$name == service
  }))

  tags[[service_index]][["description"]]
}

#' Get collection response
#'
#'
#' @return httr2 response
#' @noRd
#' @examplesIf is_dataRetrieval_user()
#'
#' \donttest{
#' collection <- dataRetrieval:::get_collection()
#' collection
#' }
#'
get_collection <- function() {
  check_collections <- base_url() |>
    httr2::req_url_path_append("openapi") |>
    httr2::req_url_query(f = "html#/server/getCollections")

  check_endpoints_req <- basic_request(check_collections)

  query_ret <- httr2::req_perform(check_endpoints_req) |>
    httr2::resp_body_json()

  return(query_ret)
}

#' Get parameter descriptions
#'
#' This function returns a list of properties available from an endpoint. When
#' available, it will also contain a description.
#'
#' @param service Character, can be any of the USGS Waterdata API endpoints or collections.
#' @return list
#' @export
#' @examplesIf is_dataRetrieval_user()
#'
#' \donttest{
#' ml <- dataRetrieval::get_ogc_params("monitoring-locations")
#' ml$national_aquifer_code
#' }
#'
get_ogc_params <- function(service) {
  check_queryables_req <- base_url() |>
    httr2::req_url_path_append("collections") |>
    httr2::req_url_path_append(service) |>
    httr2::req_url_path_append("schema") |>
    basic_request()

  query_ret <- httr2::req_perform(check_queryables_req) |>
    httr2::resp_body_json()

  params <- sapply(query_ret$properties, function(x) x[["description"]])
}


#' Get property list
#'
#' This function gets a list of available properties, and
#' renames the id column to what is used in dataRetrieval.
#'
#' @param service Character, can be any of the endpoints
#' @param output_id Character, dataRetrieval output name
#' @return list
#' @noRd
#' @examplesIf is_dataRetrieval_user()
#'
#' \donttest{
#' dataRetrieval:::get_properties_for_docs("monitoring-locations",
#'                                         "monitoring_location_id")
#'
#' }
#'
get_properties_for_docs <- function(service, output_id = NA) {
  schema <- check_OGC_requests(endpoint = service, type = "schema")
  properties <- names(schema$properties)
  if (!is.na(output_id)) {
    properties[properties == "id"] <- output_id
  }

  return(paste(properties, collapse = ", "))
}

#' Check OGC requests
#'
#' @param endpoint Character, can be any existing collection
#' @param type Character, can be "queryables", "schema"
#' @export
#' @keywords internal
#' @return list
#' @examplesIf is_dataRetrieval_user()
#'
#' \donttest{
#'
#' dv_queryables <- check_OGC_requests(endpoint = "daily",
#'                                 type = "queryables")
#' dv_schema <- check_OGC_requests(endpoint = "daily",
#'                             type = "schema")
#' ts_meta_queryables <- check_OGC_requests(endpoint = "time-series-metadata",
#'                                 type = "queryables")
#' ts_meta_schema <- check_OGC_requests(endpoint = "time-series-metadata",
#'                                 type = "schema")
#' }
check_OGC_requests <- function(endpoint = "daily", type = "queryables") {
  match.arg(type, c("queryables", "schema"))

  match.arg(endpoint, c(pkg.env$api_endpoints, pkg.env$metadata))

  req <- base_url() |>
    httr2::req_url_path_append("collections") |>
    httr2::req_url_path_append(endpoint) |>
    httr2::req_url_path_append(type) |>
    basic_request()

  query_ret <- req |>
    httr2::req_perform() |>
    httr2::resp_body_json()

  return(query_ret)
}

Try the dataRetrieval package in your browser

Any scripts or data that you put into this service are public.

dataRetrieval documentation built on March 31, 2026, 5:07 p.m.