RiversFlow
RiverATLAS
HydroATLAS river reach attributes. HydroRIVERS reaches with 56 hydro-environmental attributes.
The HydroRIVERS geometry joined with climate, land cover, soils, geology, population and human-impact attributes, each summarised for the local catchment and the whole upstream area. Useful when a river network needs catchment descriptors for regionalisation or machine learning.
- Source
- HydroSHEDS (WWF and McGill University), McGill University
- Resolution
- Lines (HydroRIVERS reaches)
- Data type
- Lines
- Time span
- Static (v1.0)
- Temporal
- Static
- Access type
- Direct download (external)
- Formats
- Shapefile, File geodatabase
- Coverage
- Global land (-180, -56, 180, 84)
- Licence
- CC BY 4.0
- Provider page
- www.hydrosheds.org/hydroatlas
Cite as. Linke, S., et al. (2019). Global hydro-environmental sub-basin and river reach characteristics at high spatial resolution. Scientific Data, 6, 283. https://doi.org/10.1038/s41597-019-0300-6
Access
linkHydroATLAS downloads (RiverATLAS, BasinATLAS, LakeATLAS)
curl "https://hydrological.org/api/v1/datasets/riveratlas/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/riveratlas/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/riveratlas/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