streamflow data from all NWIS stations for coastal zones
DrPDash opened this issue · 1 comments
Thank you for this effort, the package works as intended. However, I have a need that I cannot address myself in the current framework. Can someone please provide some pointer to the following questions:
-
If I want to download
streamflow data
for all stations near coasts, how can I generate a list of these coastal stations? -
Is there an XML or configuration file that lists the ids for all stations and associated site info?. This will be useful to just plot station locations on a coastal application. (as in the map below for NDBC standard meteorological stations). I explored the USGS site but could not find a complete listing of the stations ids; perhaps 'm missing something.
-
Is there a list of
parameterCd
? For example,00060
=discharge
in the demo code. What about other parameters?
- I think you'd need to come up with your own definition of "coastal" and then you can proceed any number of ways. Some ideas off the top of my head are: defining bounding boxes to get stations within defined areas (
bBox
argument); using a list of states, counties, or HUC codes to callget_info()
and then filtering based on lat/lon coordinates of the stations to get the subset of those you consider to be "coastal" - You can get the IDs and site information for states from NWIS using the
get_info()
function in thenwis.py
file - You can search for parameter codes here: https://help.waterdata.usgs.gov/codes-and-parameters/
I hope that helps @prasanjitdash, let me know if we can close this issue.