Monitoring the Hocking River

R USGS Ohio

The Hocking River that meanders through our town is under flood-watch. Things must be bad enough else why would the University cancel all classes for Monday. To whit: “A forecast for heavy rains and high winds have resulted in a flood warning for Athens County beginning this weekend into Monday. Based on current forecasts, specific areas on campus may be impacted by flooding Sunday evening into Monday morning. In addition to closed roadways and flooding on campus, there is a potential for high winds, which increases the possibility of widespread outages across campus, impacting power in residence halls, dining facilities and academic buildings.”

Ani Ruhil true
12-15-2020

This Post was originally written on “2018-02-24”. Preview image by Yogesh Phuyal, courtesy Unsplash.

The Hocking River that meanders through our town is under flood-watch. Things must be bad enough else why would the University cancel all classes for Monday. To whit: “A forecast for heavy rains and high winds have resulted in a flood warning for Athens County beginning this weekend into Monday. Based on current forecasts, specific areas on campus may be impacted by flooding Sunday evening into Monday morning. In addition to closed roadways and flooding on campus, there is a potential for high winds, which increases the possibility of widespread outages across campus, impacting power in residence halls, dining facilities and academic buildings.”

Naturally, being ever curious I decided to check out the dataRetrieval package and am glad I did because now I have another toy I can share with our Environmental Studies students. Here is a just quick plot of discharge levels over time.

Historical gage height data are difficult to come by, or at least I had no luck finding it. As of the data of this revision – 2023-05-04 – the time-span seems to be restricted to the last few months. Consequently, I am going to grab and plot daily mean discharge data going back to 1913, and then the most recent gage data.

library(dataRetrieval)
parameterCdFile <- parameterCdFile

siteNo <- "03159500"
pCode <- c("00060", "00065")
start.date <- "2008-01-01"
end.date <- "2018-04-06"

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

parameterInfo <- attr(hocking, "variableInfo")
siteInfo <- attr(hocking, "siteInfo")
hocking <- renameNWISColumns(hocking)
hocking$dates = as.Date(as.character(as.POSIXct(hocking$dateTime)))

library(tidyverse)
library(hrbrthemes)
ggplot(data = hocking, aes(dates, Flow_Inst)) +
  geom_line(color = "cornflowerblue") +
  scale_x_date(date_breaks = "4 years") +
  labs(y = "Discharge, cubic feet per second",
       x = "Date", title = "The Hocking River, Ohio",
       subtitle = "(1993 - 2018)",
       caption = "Source: USGS") +
  ylim(c(0, 20000)) +
  theme_ipsum_rc()

siteNo <- "03159500"
pCode <- "00060"
daily <- readNWISdv(siteNo, pCode)

ggplot(data = daily, aes(Date, X_00060_00003)) +
  geom_line(color = "cornflowerblue") +
  scale_x_date(date_breaks = "24 years") +
  labs(y = "Mean Discharge, cubic feet per second",
       x = "Date", title = "The Hocking River, Ohio",
       subtitle = "(1913 - 2018)",
       caption = "Source: USGS") +
  ylim(c(0, 20000)) +
  theme_ipsum_rc()

pCode <- "00065"
start.date <- "2018-09-22"
end.date <- "2019-01-20"

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

parameterInfo <- attr(hocking, "variableInfo")
siteInfo <- attr(hocking, "siteInfo")
hocking <- renameNWISColumns(hocking)
hocking$dates = as.Date(as.character(as.POSIXct(hocking$dateTime)))

ggplot(data = subset(hocking, !is.na(GH_Inst)),
       aes(dates, GH_Inst)) +
  geom_line(color = "firebrick") +
  scale_x_date(date_breaks = "3 weeks") +
  labs(y = "Gage Height (in feet)",
       x = "Date",
       title = "The Hocking River, Ohio",
       subtitle = "(Sep 22, 2018 - Jan 20, 2019)",
       caption = "Source: USGS") +
  theme_ipsum_rc()

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-SA 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".

Citation

For attribution, please cite this work as

Ruhil (2020, Dec. 15). From an Attican Hollow: Monitoring the Hocking River. Retrieved from https://aniruhil.org/posts/2020-12-15-monitoring-the-hocking-river/

BibTeX citation

@misc{ruhil2020monitoring,
  author = {Ruhil, Ani},
  title = {From an Attican Hollow: Monitoring the Hocking River},
  url = {https://aniruhil.org/posts/2020-12-15-monitoring-the-hocking-river/},
  year = {2020}
}