FlowObservations
Global Discharge Stations
Global Runoff Data Centre (GRDC). Daily and monthly river discharge from more than 10,000 stations.
The international archive of river discharge, operating under the World Meteorological Organization and collecting data from national hydrological services. It is the standard reference for calibrating and evaluating global hydrological models. The gauge points on this map come from GSIM, which includes most GRDC stations.
- Source
- Global Runoff Data Centre
- Resolution
- Station data
- Data type
- Station data
- Time span
- 1806–present
- Temporal
- Daily and monthly
- Access type
- Request from provider · Free download from the GRDC Data Portal after accepting the data policy
- Formats
- CSV, NetCDF, WaterML 2.0
- Coverage
- Global (-180, -90, 180, 90)
- Licence
- GRDC data policy (free, non-commercial use)
- Provider page
- grdc.bafg.de/
Access
linkGRDC Data Portal (select stations by region or on the map)
linkData portal guide
curl "https://hydrological.org/api/v1/datasets/grdc-discharge/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/grdc-discharge/links",
params={"bbox": "-75,-20,-50,5"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/grdc-discharge/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));
Also available as JSON: links · manifest · dataset record