Climate
GPCC Full Data
Global Precipitation Climatology Centre. Gauge-based monthly precipitation since 1891.
Precipitation interpolated from quality-controlled rain gauges, with the number of gauges per cell. Used to bias-correct many satellite and reanalysis products.
- Source
- Deutscher Wetterdienst (GPCC)
- Resolution
- 0.25° to 2.5°
- Data type
- Raster
- Time span
- 1891–2020
- Temporal
- Monthly and daily
- Access type
- Direct download (external)
- Formats
- NetCDF
- Coverage
- Global land (-180, -90, 180, 90)
- Licence
- CC BY 4.0
- Provider page
- opendata.dwd.de/climate_environment/GPCC/html/download_gate…
Access
linkGPCC download gate
https://opendata.dwd.de/climate_environment/GPCC/html/download_gate.html
curl "https://hydrological.org/api/v1/datasets/gpcc/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/gpcc/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/gpcc/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