knitr::opts_chunk$set(
  echo = FALSE,
  message = FALSE,
  warning = FALSE,
  fig.height = 7,
  fig.width = 7
)

R is an open-source programming language. It is known for extensive statistical capabilities, and also has powerful graphical capabilities. Another benefit of R is the large and generally helpful user-community. This includes R-package developers who create packages that can be easily installed to enhance the basic R capabilities. This article will describe the R-package "dataRetrieval" which simplifies the process of finding and retrieving water from the U.S. Geological Survey and other agencies.

It is increasingly common for large-scale dataRetrieval requests. Geographically-large requests can be done by looping through either state codes (stateCd$STATE) or HUCs. BUT without careful planning, those requests could be too large to complete. This article will describe some tips to make those queries manageable.

Package Overview

dataRetrieval is available on Comprehensive R Archive Network (CRAN).

install.packages("dataRetrieval")

Once the dataRetrieval package has been installed, it needs to be loaded in order to use any of the functions:

library(dataRetrieval)

There are several vignettes included within the dataRetrieval package. The following command will open the main package introduction:

vignette("dataRetrieval", package = "dataRetrieval")

Additionally, each function has a help file. These can be accessed by typing a question mark, followed by the function name in the R console:

?readNWISuv

Each function's help file has working examples to demonstrate the usage. The examples may have comments "## Not run". These examples CAN be run, they just are not run by the CRAN maintainers due to the external service calls.

Finally, if there are still questions that the vignette and help files don't answer, please post an issue on the dataRetrieval GitHub page:

https://github.com/USGS-R/dataRetrieval/issues

National Water Information System (NWIS)

USGS data comes from the National Water Information System (NWIS). There are many types of data served from NWIS. To understand how the services are separated, it's helpful to understand the terms here:

df <- data.frame(
  Type = c("Unit", "Daily", "Discrete"),
  Description = c(
    "Regular frequency data reported from a sensor (e.g. 15 minute interval). This data can include 'real-time' data",
    "Data aggregated to a daily statistic such as mean, min, or max.",
    "Data collected at non-regular times."
  ),
  service = c(
    "uv", "dv",
    "water quality (qw), groundwater (gwlevel), rating curves (rating), peak flow (peak), surfacewater (meas)"
  )
)

knitr::kable(df)

USGS Basic Retrievals

The USGS uses various codes for basic retrievals. These codes can have leading zeros, therefore in R they need to be a character ("01234567").

Here are some examples of a few codes:

wzxhzdk:6
wzxhzdk:7

Use the readNWISpCode function to get information on USGS parameter codes. You can use "all" to get a full list. Then use your favorite data analysis methods to pull out what you need. Here is one example to find all the phosphorous parameter codes:

pcode <- readNWISpCode("all")

phosCds <- pcode[grep("phosphorus",
  pcode$parameter_nm,
  ignore.case = TRUE
), ]

names(phosCds)
unique(phosCds$parameter_units)

Explore the wide variety of parameters that contain "phosphorus" in the parameter_nm:

library(DT)
datatable(phosCds[, c("parameter_cd", "parameter_nm", "parameter_units")],
  rownames = FALSE, options = list(pageLength = 4)
)

User-friendly retrievals: NWIS

Sometimes, you know exactly what you want. If you know:

  1. The type of data (groundwater, unit, water quality, daily, etc..)
  2. USGS site number(s)
  3. USGS parameter code(s)
  4. Time frame (start and end date)

You can use the "user-friendly" functions. These functions take the same 4 inputs (sites, parameter codes, start date, end date), and deliver data from different NWIS services:

df <- data.frame(
  functionName = c(
    "readNWISuv", "readNWISdv",
    "readNWISgwl", "readNWISmeas", "readNWISpeak",
    "readNWISqw", "readNWISrating", "readNWISuse",
    "readNWISstat"
  ),
  service = c(
    "Unit", "Daily", "Groundwater Level",
    "Surface-water", "Peak Flow",
    "Water Quality", "Rating Curves",
    "Water Use", "Statistics"
  ),
  stringsAsFactors = FALSE
)

names(df) <- c("Function Name", "Data")

knitr::kable(df)

Let's start by asking for discharge (parameter code = 00060) at a site right next to the USGS office in Wisconsin (Pheasant Branch Creek).

siteNo <- "05427948"
pCode <- "00060"
start.date <- "2017-10-01"
end.date <- "2018-09-30"

pheasant <- readNWISuv(
  siteNumbers = siteNo,
  parameterCd = pCode,
  startDate = start.date,
  endDate = end.date
)

From the Pheasant Creek example, let's look at the data. The column names are:

names(pheasant)

The names of the columns are based on the parameter and statistic codes. In many cases, you can clean up the names with the convenience function renameNWISColumns:

pheasant <- renameNWISColumns(pheasant)
names(pheasant)

The returned data also has several attributes attached to the data frame. To see what the attributes are:

names(attributes(pheasant))

Each dataRetrieval return should have the attributes: url, siteInfo, and variableInfo. Additional attributes are available depending on the data.

To access the attributes:

url <- attr(pheasant, "url")
url

Raw Data

Make a simple plot to see the data:

library(ggplot2)
ts <- ggplot(
  data = pheasant,
  aes(dateTime, Flow_Inst)
) +
  geom_line()
ts

Then use the attributes attached to the data frame to create better labels:

parameterInfo <- attr(pheasant, "variableInfo")
siteInfo <- attr(pheasant, "siteInfo")

ts <- ts +
  xlab("") +
  ylab(parameterInfo$variableDescription) +
  ggtitle(siteInfo$station_nm)
ts

Discover Data: NWIS

This is all great when you know your site numbers. What do you do when you don't?

There are 2 dataRetrieval functions that help:

There are several ways to specify the requests. The best way to discover how flexible the USGS web services are is to click on the links and see all of the filtering options: http://waterservices.usgs.gov/

knitr::include_graphics("waterservices.png")

Available geographic filters are individual site(s), a single state, a bounding box, or a HUC (hydrologic unit code). See examples for those services by looking at the help page for the readNWISdata function:

Here are a few examples:

# Daily temperature in Ohio
dataTemp <- readNWISdata(
  stateCd = "OH",
  parameterCd = "00010",
  service = "dv"
)

# Real-time discharge at a site
instFlow <- readNWISdata(
  sites = "05114000",
  service = "iv",
  parameterCd = "00060",
  startDate = "2014-05-01T00:00Z",
  endDate = "2014-05-01T12:00Z",
  tz = "America/Chicago"
)

# Temperature within a bounding box:
bBoxEx <- readNWISdata(
  bBox = c(-83, 36.5, -81, 38.5),
  parameterCd = "00010"
)

# Groundwater levels within a HUC:
groundwaterHUC <- readNWISdata(
  huc = "02070010",
  service = "gwlevels"
)

Arizona Example

For example, let's see which sites ever measured phosphorus in Arizona:

AZ_sites <- whatNWISsites(
  stateCd = "AZ",
  parameterCd = "00665"
)
nrow(AZ_sites)
names(AZ_sites)
library(leaflet)

leaflet(data = AZ_sites) %>%
  addProviderTiles("CartoDB.Positron") %>%
  addCircleMarkers(~dec_long_va, ~dec_lat_va,
    color = "red", radius = 3, stroke = FALSE,
    fillOpacity = 0.8, opacity = 0.8,
    popup = ~station_nm
  )

Now let's see what we get back from the whatNWISdata function:

AZ_data <- readRDS("az_data.rds")
names(AZ_data)
AZ_data <- whatNWISdata(
  stateCd = "AZ",
  parameterCd = "00665"
)
names(AZ_data)

We get many more columns returned. For discovering useful data, the last 3 columns of this return are especially helpful. "begin_date", "end_date", and "count_nu" give a good indication of how much data of a particular "parm_cd"/"stat_cd"/"data_type_cd" was collected.

library(dplyr)
AZdata2 <- AZ_data %>%
  select(station_nm, begin_date, end_date, count_nu)

datatable(AZdata2, rownames = FALSE, options = list(pageLength = 8))

Additional NWIS discovery tools

Our team is actively working on making our data more discoverable. For now, we encourage you to use interactive mappers such as:

The NWIS Mapper: http://maps.waterdata.usgs.gov/mapper/index.html

The National Water Dashboard: https://dashboard.waterdata.usgs.gov/app/nwd

Wisconsin Example

Let's do one more example, we'll look for long-term USGS phosphorous data in Wisconsin. This time, we will take the information from the whatNWISdata function, filter down the sites to exactly our interest, and then get the data. Let's say we want data from sites that have been collecting data for at least 15 years and have at least 300 measurements:

phWI <- readRDS("phWI.rds")

library(dplyr)
phWI.1 <- phWI %>%
  filter(count_nu > 300) %>%
  mutate(period = as.Date(end_date) - as.Date(begin_date)) %>%
  filter(period > 15 * 365)
pCode <- c("00665")
phWI <- whatNWISdata(
  stateCd = "WI",
  parameterCd = pCode
)

library(dplyr)
phWI.1 <- phWI %>%
  filter(count_nu > 300) %>%
  mutate(period = as.Date(end_date) - as.Date(begin_date)) %>%
  filter(period > 15 * 365)
phos_WI_data <- readNWISqw(
  siteNumbers = phWI.1$site_no,
  parameterCd = pCode
)

Let's look at the maximum measured value, and number of samples:

phos_summary <- phos_WI_data %>%
  group_by(site_no) %>%
  summarize(
    max = max(result_va, na.rm = TRUE),
    count = n()
  ) %>%
  ungroup() %>%
  left_join(attr(phos_WI_data, "siteInfo"),
    by = "site_no"
  )

Then map it:

library(leaflet)

col_types <- c(
  "darkblue",
  "dodgerblue",
  "green4",
  "gold1",
  "orange",
  "brown",
  "red"
)
leg_vals <- unique(as.numeric(quantile(phos_summary$max,
  probs = c(0, 0.01, 0.1, 0.25, 0.5, 0.75, 0.9, .99, 1),
  na.rm = TRUE
)))

pal <- colorBin(col_types, phos_summary$max, bins = leg_vals)
rad <- 3 * seq(1, 4, length.out = 16)
phos_summary$sizes <- rad[as.numeric(cut(phos_summary$count, breaks = 16))]

leaflet(data = phos_summary) %>%
  addProviderTiles("CartoDB.Positron") %>%
  addCircleMarkers(~dec_long_va, ~dec_lat_va,
    fillColor = ~ pal(max),
    radius = ~sizes,
    fillOpacity = 0.8, opacity = 0.8,
    stroke = FALSE,
    popup = ~station_nm
  ) %>%
  addLegend(
    position = "bottomleft",
    pal = pal,
    values = ~max,
    opacity = 0.8,
    labFormat = labelFormat(digits = 1),
    title = "Max Value"
  )

Multi-Agency Water Quality Data from the Water Quality Portal (WQP)

dataRetrieval also allows users to access data from the Water Quality Portal. The WQP houses data from multiple agencies; while USGS data comes from the NWIS database, EPA data comes from the STORET database (this includes many state, tribal, NGO, and academic groups). The WQP brings data from all these organizations together and provides it in a single format that has a more verbose output than NWIS. To get non-NWIS data, need to use CharacteristicName instead of parameter code.

WQP Basic Retrievals

Much like the convenience functions for NWIS, there's a simple function for retrievals if the site number and parameter code or characteristic name is known.

wzxhzdk:30
wzxhzdk:31

Data Discovery: WQP

The value of the Water Quality Portal is to explore water quality data from different sources.

The following function returns sites that have collected phosphorus data in Wisconsin. There's no way to know if that site has collected one sample, or thousands. This function is pretty fast, but only reports which sites have data.

phosSites <- whatWQPsites(
  statecode = "WI",
  characteristicName = "Phosphorus"
)

Similar to NWIS, to find out the scope of the available data, there is a whatWQPdata function:

phos_data_available <- whatWQPdata(
  statecode = "WI",
  characteristicName = "Phosphorus"
)

This function comes back with a few really useful columns such as "activityCount" and "resultCount". As with our NWIS query, let's filter down our data request to sites that have only had more than 300 measurements.

phos_data_sites_to_get <- phos_data_available %>%
  filter(resultCount >= 300)

phosData <- readWQPdata(
  siteNumbers = phos_data_sites_to_get$MonitoringLocationIdentifier,
  characteristicName = "Phosphorus"
)

With data coming from many different agencies, it will be important to carefully review the returned data. For instance, this "Phosphorus" data comes back with many different units. It will be important to make smart decisions on how and if the queried data can be used together.

unique(phosData$ResultMeasure.MeasureUnitCode)
phosData <- readRDS("phosData.rds") %>%
  mutate(ResultMeasureValue = as.numeric(ResultMeasureValue))

Let’s look at the maximum measured value, and number of samples:

siteInfo <- attr(phosData, "siteInfo")

wiSummary <- phosData %>%
  filter(ResultMeasure.MeasureUnitCode %in%
    c("mg/l", "mg/l as P")) %>%
  group_by(MonitoringLocationIdentifier) %>%
  summarise(
    count = n(),
    max = max(ResultMeasureValue, na.rm = TRUE)
  ) %>%
  left_join(siteInfo, by = "MonitoringLocationIdentifier")
col_types <- c(
  "darkblue",
  "dodgerblue",
  "green4",
  "gold1",
  "orange",
  "brown",
  "red"
)
leg_vals <- unique(as.numeric(quantile(wiSummary$max,
  probs =
    c(0, 0.01, 0.1, 0.25, 0.5, 0.75, 0.9, .99, 1),
  na.rm = TRUE
)))
pal <- colorBin(col_types, wiSummary$max, bins = leg_vals)
rad <- 3 * seq(1, 4, length.out = 16)
wiSummary$sizes <- rad[as.numeric(cut(wiSummary$count, breaks = 16))]

leaflet(data = wiSummary) %>%
  addProviderTiles("CartoDB.Positron") %>%
  addCircleMarkers(~dec_lon_va, ~dec_lat_va,
    fillColor = ~ pal(max),
    radius = ~sizes,
    fillOpacity = 0.8, opacity = 0.8,
    stroke = FALSE,
    popup = ~station_nm
  ) %>%
  addLegend(
    position = "bottomleft",
    pal = pal,
    values = ~max,
    opacity = 0.8,
    labFormat = labelFormat(digits = 1),
    title = "Max Value"
  )

Time/Time zone discussion

Large Data Requests

It is increasingly common for R users to be interested in large-scale dataRetrieval analysis. You can use a loop of either state codes (stateCd$STATE) or HUCs to make large requests. BUT without careful planning, those requests could be too large to complete. Here are a few tips to make those queries manageable:

But wait, there's more!

There are two services that also have functions in dataRetrieval, the National Groundwater Monitoring Network (NGWMN) and Network Linked Data Index (NLDI). These functions are not as mature as the WQP and NWIS functions. A future blog post will bring together these functions.

National Groundwater Monitoring Network (NGWMN)

Similar to WQP, the NGWMN brings groundwater data from multiple sources into a single location. There are currently a few dataRetrieval functions included:

Network Linked Data Index (NLDI)

The NLDI provides a information backbone to navigate the NHDPlusV2 network and discover features indexed to the network. For an overview of the NLDI, see: https://rconnect.usgs.gov/dataRetrieval/articles/nldi.html

There is currently one function in dataRetrieval for NLDI:

findNLDI()



USGS-R/dataRetrieval documentation built on May 18, 2024, 3:21 a.m.