- Licence
- CC BY 4.0
- DOI
- 10.1594/PANGAEA.887477
Do, H. X., Gudmundsson, L., Leonard, M., Westra, S. (2018). The Global Streamflow Indices and Metadata Archive (GSIM), Part 1. Earth System Science Data, 10, 765–785. https://doi.org/10.5194/essd-10-765-2018
curl "https://hydrological.org/api/v1/datasets/gsim/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/gsim/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/gsim/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));