AgriculturalManagement
FAO AQUASTAT (Irrigation)
FAO's global information system on water and agriculture. Country statistics on water resources, use and irrigation.
Country-level variables on renewable water resources, water withdrawal by sector, area equipped for irrigation, irrigation techniques, dams and wastewater, along with SDG indicator 6.4 on water stress and efficiency.
- Source
- Food and Agriculture Organization of the United Nations
- Resolution
- Country/region
- Data type
- Country/region
- Time span
- 1958–present
- Temporal
- Five-year periods
- Access type
- Direct download (external)
- Formats
- CSV, Excel
- Coverage
- Global (-180, -90, 180, 90)
- Licence
- See FAO terms of use
- Provider page
- www.fao.org/aquastat/en/
Access
linkAQUASTAT dissemination system
curl "https://hydrological.org/api/v1/datasets/fao-aquastat/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/fao-aquastat/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/fao-aquastat/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