ReservoirsObservations
Hydroweb.next
Theia hydrology data centre. Altimetry water levels for rivers and lakes.
Water levels of rivers, lakes and reservoirs from radar altimetry, with near-real-time products for operational hydrology and SWOT-era data.
- Source
- Centre National d'Études Spatiales
- Resolution
- Virtual stations
- Data type
- Station data
- Time span
- 1992–present
- Temporal
- Satellite repeat cycle
- Access type
- Registration with provider · Free account
- Formats
- CSV, NetCDF
- Coverage
- Global (-180, -90, 180, 90)
- Licence
- See provider terms
- Provider page
- hydroweb.next.theia-land.fr/
Access
linkHydroweb.next portal
curl "https://hydrological.org/api/v1/datasets/hydroweb/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/hydroweb/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/hydroweb/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