ManagementObservations
IGRAC Global Groundwater Information System
International Groundwater Resources Assessment Centre. Groundwater monitoring and transboundary aquifers.
Groundwater level monitoring networks (GGMN), transboundary aquifer maps and groundwater indicators contributed by national agencies, in one web portal.
- Source
- International Groundwater Resources Assessment Centre
- Resolution
- Station data and polygons
- Data type
- Station data and polygons
- Time span
- Varies by network
- Temporal
- Varies
- Access type
- Registration with provider
- Formats
- Web portal, CSV, Shapefile
- Coverage
- Global (-180, -90, 180, 90)
- Licence
- Varies by data provider
- Provider page
- ggis.un-igrac.org/
Access
linkGGIS web portal
curl "https://hydrological.org/api/v1/datasets/igrac-ggis/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/igrac-ggis/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/igrac-ggis/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