Replies: 1 comment
-
Thanks so much, Nate. This looks awesome and I'm going to play around with this code for our project using a couple other stations as well. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@tes-ani asked about finding USGS water quality data for the Colorado River above Glenwood Springs, specifically looking at turbidity (water cloudiness). USGS Waterdata is a good resource and it can be tricky to access and open data outside of their dashboard.
Here is a link to the site with a plot of turbidity for the last 7 days: https://waterdata.usgs.gov/monitoring-location/09071750/#parameterCode=63680&period=P7D&showMedian=true
From here it looks like turbidity data goes back to October 2020, a couple of months after the Grizzly Creek Fire event that took place just above this river gage.
Hydrofunctions is a python library that allows you to pull in river hydrology data from the USGS National Weather Information System: https://hydrofunctions.readthedocs.io/en/master/introduction.html#features
We have some lessons in our open EDS textbook that teaches users how to work with hydrofunctions:
I asked ChatGPT to write some code to access the turbidity data from this particular river gage and here is what it wrote for me after some back and forth:
It took some time to get things the way I wanted and a couple rounds trying different things with ChatGPT to get what I was looking for (apologies for deleting the original conversation!). For folks that are looking for data for your projects, you might give something like this a try. We are happy to help demo something like this too during office hours or in another meeting. -NQ
Beta Was this translation helpful? Give feedback.
All reactions