- Licence
- See provider terms
Portmann, F. T., Siebert, S., Döll, P. (2010). MIRCA2000, Global monthly irrigated and rainfed crop areas around the year 2000. Global Biogeochemical Cycles, 24, GB1011. https://doi.org/10.1029/2008GB003435
curl "https://hydrological.org/api/v1/datasets/mirca2000/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/mirca2000/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/mirca2000/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));