-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation for army corp WL
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
USACE RiverGages | ||
============== | ||
The U.S. Army Corps of Engineers RiverGages <https://rivergages.mvr.usace.army.mil/>_ | ||
system provides water level data for rivers and waterways across the United States. | ||
searvey uses the RiverGages REST API to access this data. Currently, water level | ||
data is exposed in searvey. | ||
|
||
The data from an individual station can be retrieved with: | ||
.. autofunction:: searvey.usace.get_usace_station | ||
|
||
You can fetch data from multiple stations and multiple different dates with: | ||
.. autofunction:: searvey.usace.fetch_usace | ||
|
||
Note: The verify=False parameter in the httpx.Client() is used here to bypass | ||
SSL verification, which is the only way to access the USACE RiverGages API. |