
Retrieve water quality data from the Florida Department of Environmental Protection's Watershed Information Network (WIN)
Source:R/read_importwqwin.R
read_importwqwin.Rd
Retrieve water quality data from the Florida Department of Environmental Protection's Watershed Information Network (WIN)
Arguments
- start_date
character string for the start date in the format "YYYY-MM-DD"
- end_date
character string for the end date in the format "YYYY-MM-DD"
- org_id
character string for the organization ID
- verbose
logical indicating whether to print verbose output
- max_retries
integer indicating maximum number of retries for timeout errors (default = 5)
Details
This function implements util_importwqwin
iteratively to retrieve water quality results for the specified organization ID and start date. Data are retrieved using the API at https://prodapps.dep.state.fl.us/dear-watershed/swagger-ui/index.html.
Examples
if (FALSE) { # \dontrun{
dat <- read_importwqwin("2025-01-15", "2025-02-15", "21FLMANA", verbose = TRUE)
head(dat)
} # }