Rivers
EU-Hydro River Network Database
Copernicus Land Monitoring Service. Topologically connected river network for Europe.
A photo-interpreted river network and water bodies for the EEA member and cooperating countries, with a routable version (the River Net) delineated on EU-DEM. The European counterpart to NHDPlus.
- Source
- Copernicus Programme (European Union)
- Resolution
- Lines (from 2.5 m imagery and EU-DEM)
- Data type
- Lines and polygons
- Time span
- Static (v1.3)
- Temporal
- Static
- Access type
- Download with free login · Free EU login
- Formats
- File geodatabase
- Coverage
- Europe (EEA38 and UK) (-32, 27, 45, 72)
- Licence
- Copernicus data policy (free and open)
- Provider page
- land.copernicus.eu/en/products/eu-hydro
Access
linkEU-Hydro product page and downloads
curl "https://hydrological.org/api/v1/datasets/eu-hydro/links?bbox=5.5,48.5,7.5,50.5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/eu-hydro/links",
params={"bbox": "5.5,48.5,7.5,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/eu-hydro/links?bbox=5.5,48.5,7.5,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