Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ location for water year 2025, where a "/" between two dates in the "time"
input argument indicates a desired date range:

```python
import dataretrieval.waterdata as waterdata
from dataretrieval import waterdata

# Get daily streamflow data (returns DataFrame and metadata)
df, metadata = waterdata.get_daily(
Expand Down Expand Up @@ -130,7 +130,7 @@ logging.basicConfig(filename='waterdata.log', level=logging.INFO)
The `nwis` module accesses legacy NWIS Water Services:

```python
import dataretrieval.nwis as nwis
from dataretrieval import nwis

# Get site information
info, metadata = nwis.get_info(sites='01646500')
Expand All @@ -153,7 +153,7 @@ print(f"Retrieved {len(dv)} daily values")
Access water quality data from multiple agencies:

```python
import dataretrieval.wqp as wqp
from dataretrieval import wqp

# Find water quality monitoring sites
sites = wqp.what_sites(
Expand All @@ -177,7 +177,7 @@ print(f"Retrieved {len(results)} temperature measurements")
Discover and navigate hydrologic networks:

```python
import dataretrieval.nldi as nldi
from dataretrieval import nldi

# Get watershed basin for a stream reach
basin = nldi.get_basin(
Expand Down
Loading