- Licence
- See provider terms
Mulligan, M., van Soesbergen, A., Sáenz, L. (2020). GOODD, a global dataset of more than 38,000 georeferenced dams. Scientific Data, 7, 31. https://doi.org/10.1038/s41597-020-0362-5
curl "https://hydrological.org/api/v1/datasets/goodd/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/goodd/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/goodd/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));