- Licence
- See provider terms
Addor, N., Newman, A. J., Mizukami, N., Clark, M. P. (2017). The CAMELS data set. Hydrology and Earth System Sciences, 21, 5293–5313. https://doi.org/10.5194/hess-21-5293-2017
curl "https://hydrological.org/api/v1/datasets/camels-us/links?bbox=-96.5,36,-94.5,38" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/camels-us/links",
params={"bbox": "-96.5,36,-94.5,38"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/camels-us/links?bbox=-96.5,36,-94.5,38");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));