Climate
CRU TS
Climatic Research Unit gridded Time Series. Monthly 0.5° station-based climate since 1901.
Ten variables including precipitation, mean, minimum and maximum temperature, potential evapotranspiration and wet-day frequency, interpolated from station anomalies.
- Source
- Climatic Research Unit, University of East Anglia
- Resolution
- 0.5° (about 55 km)
- Data type
- Raster
- Time span
- 1901–present
- Temporal
- Monthly
- Access type
- Direct download (external)
- Formats
- NetCDF, ASCII
- Coverage
- Global land (except Antarctica) (-180, -60, 180, 84)
- Licence
- Open Government Licence
- Provider page
- crudata.uea.ac.uk/cru/data/hrg/
Cite as. Harris, I., Osborn, T. J., Jones, P., Lister, D. (2020). Version 4 of the CRU TS monthly high-resolution gridded multivariate climate dataset. Scientific Data, 7, 109. https://doi.org/10.1038/s41597-020-0453-3
Access
linkCRU TS data page
curl "https://hydrological.org/api/v1/datasets/cru-ts/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/cru-ts/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/cru-ts/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