R/read_waterdata_peaks.R

Defines functions read_waterdata_peaks

Documented in read_waterdata_peaks

#' Get USGS Peak Data
#'
#' @description `r get_description("peaks")`
#'
#' @export
#' @param monitoring_location_id `r get_ogc_params("peaks")$monitoring_location_id`
#' Multiple monitoring_location_ids can be requested as a character vector.
#' @param parameter_code `r get_ogc_params("peaks")$parameter_code`
#' Multiple parameter_codes can be requested as a character vector.
#' @param time `r get_ogc_params("peaks")$time`
#'
#' See also Details below for more information.
#' @param value `r get_ogc_params("peaks")$value`
#' @param unit_of_measure `r get_ogc_params("peaks")$unit_of_measure`
#' @param time_series_id `r get_ogc_params("peaks")$time_series_id`
#' @param last_modified `r get_ogc_params("peaks")$last_modified`
#'
#' See also Details below for more information.
#' @param water_year `r get_ogc_params("peaks")$water_year`
#' @param year `r get_ogc_params("peaks")$year`
#' @param month `r get_ogc_params("peaks")$month`
#' @param day `r get_ogc_params("peaks")$day`
#' @param time_of_day `r get_ogc_params("peaks")$time_of_day`
#' @param peak_since `r get_ogc_params("peaks")$peak_since`
#' @param properties A vector of requested columns to be returned from the query.
#' Available options are:
#' `r dataRetrieval:::get_properties_for_docs("peaks", "peak_id")`.
#' The default (`NA`) will return all columns of the data.
#'
#' @param allow_incomplete_dates Specifically in the peaks data, exact peak dates
#' are not always known. Sometimes peaks are known just for the year, sometimes
#' they are known to the year and month, and and sometimes to the exact date.
#' This argument determines if incomplete dates + uncertain month/day values are
#' allowed in the "time" column so that it can be a complete Date object (`TRUE`),
#' or whether to set those dates to `NA` (`FALSE`). Peaks with uncertain days
#' are stored on the first of the month, and those with uncertain
#' month stored on January 1. Default is `FALSE`.
#' @inheritParams check_arguments_api
#' @inheritParams check_arguments_non_api
#'
#' @inherit read_waterdata_continuous details
#'
#' @examplesIf is_dataRetrieval_user()
#'
#' \donttest{
#' wi_peaks <- read_waterdata_combined_meta(
#'                state_name = "Wisconsin",
#'                data_type = "Peaks",
#'                parameter_code = "00060")
#'
#'
#' dv_data_sf <- read_waterdata_peaks(
#'                monitoring_location_id = wi_peaks$monitoring_location_id[1],
#'                parameter_code = "00060")
#'
#' incomplete_dates_not_allowed <- read_waterdata_peaks(
#'                monitoring_location_id = "USGS-06334330",
#'                parameter_code = "00060")
#' incomplete_dates_not_allowed$time
#' incomplete_dates_allowed <- read_waterdata_peaks(
#'                monitoring_location_id = "USGS-06334330",
#'                parameter_code = "00060",
#'                allow_incomplete_dates = TRUE)
#' incomplete_dates_allowed$time
#'
#' }
read_waterdata_peaks <- function(
  monitoring_location_id = NA_character_,
  parameter_code = NA_character_,
  properties = NA_character_,
  time_series_id = NA_character_,
  unit_of_measure = NA_character_,
  value = NA,
  last_modified = NA_character_,
  water_year = NA_character_,
  year = NA_character_,
  month = NA_character_,
  day = NA_character_,
  time_of_day = NA_character_,
  peak_since = NA_character_,
  skipGeometry = NA,
  time = NA_character_,
  bbox = NA,
  ...,
  allow_incomplete_dates = FALSE,
  convertType = getOption("dataRetrieval.convertType"),
  no_paging = getOption("dataRetrieval.no_paging"),
  chunk_size = getOption("dataRetrieval.site_chunk_size_meta"),
  limit = getOption("dataRetrieval.limit"),
  attach_request = getOption("dataRetrieval.attach_request")
) {
  service <- "peaks"
  output_id <- "peak_id"
  rlang::check_dots_empty()

  args <- mget(names(formals()))
  args[["allow_incomplete_dates"]] <- NULL
  return_list <- get_ogc_data(args, output_id, service)

  if (anyNA(return_list[, c("year", "month", "day")])) {
    if (allow_incomplete_dates) {
      warning("Incomplete dates are included in time column.")
    } else {
      return_list$time[is.na(return_list$month)] <- NA
      return_list$time[is.na(return_list$day)] <- NA
    }
  }

  return(return_list)
}

Try the dataRetrieval package in your browser

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

dataRetrieval documentation built on May 28, 2026, 9:06 a.m.