ETAgricultural
OpenET
Satellite-based evapotranspiration for water management. Field-scale ET from an ensemble of six models.
Landsat-based ET from six established models (ALEXI/DisALEXI, eeMETRIC, geeSEBAL, PT-JPL, SIMS, SSEBop) and their ensemble, aggregated to fields for irrigation and water rights administration.
- Source
- OpenET
- Resolution
- 30 m
- Data type
- Raster and field time series
- Time span
- 2016–present
- Temporal
- Daily and monthly
- Access type
- API (external) · Free account and API key
- Formats
- GeoTIFF, CSV, JSON
- Coverage
- Western United States (-125, 31, -95, 49)
- Licence
- CC BY 4.0
- Provider page
- openetdata.org/
Cite as. Melton, F. S., et al. (2022). OpenET: Filling a Critical Data Gap in Water Management for the Western United States. JAWRA, 58(6), 971–994. https://doi.org/10.1111/1752-1688.12956
Access
linkOpenET API (key from your OpenET account)
curl "https://hydrological.org/api/v1/datasets/openet/links?bbox=-111,39,-109,41" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/openet/links",
params={"bbox": "-111,39,-109,41"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/openet/links?bbox=-111,39,-109,41");
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