Climate
PRISM Climate Data
Parameter-elevation Regressions on Independent Slopes Model. 800 m and 4 km climate for the conterminous United States.
Station data interpolated with elevation-dependent regressions that account for rain shadows, coastal effects and temperature inversions. The reference climate dataset for the United States.
- Source
- PRISM Group
- Resolution
- 800 m and 4 km
- Data type
- Raster
- Time span
- 1895–present
- Temporal
- Daily (from 1981), monthly, normals
- Access type
- Direct download (external)
- Formats
- GeoTIFF, BIL
- Coverage
- Conterminous United States (-125, 24, -66, 50)
- Licence
- Free with attribution; see provider terms
- Provider page
- prism.oregonstate.edu/
Access
linkRecent years and historical downloads
curl "https://hydrological.org/api/v1/datasets/prism/links?bbox=-96.5,36,-94.5,38" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/prism/links",
params={"bbox": "-96.5,36,-94.5,38"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/prism/links?bbox=-96.5,36,-94.5,38");
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