ETObservations
GLEAM v4
Global Land Evaporation Amsterdam Model. Daily 0.1° evaporation and its components since 1980.
Total evaporation split into transpiration, bare-soil evaporation, interception loss, open-water and sublimation, plus root-zone soil moisture and evaporative stress. Driven by satellite observations and reanalysis.
- Source
- Ghent University (Hydro-Climate Extremes Lab)
- Resolution
- 0.1° (about 11 km)
- Data type
- Raster
- Time span
- 1980–near present
- Temporal
- Daily, monthly, yearly
- Access type
- Registration with provider · SFTP access after a short registration
- Formats
- NetCDF
- Coverage
- Global land (-180, -90, 180, 90)
- Licence
- Free for research; see provider terms
- Provider page
- www.gleam.eu/
Cite as. Martens, B., et al. (2017). GLEAM v3: satellite-based land evaporation and root-zone soil moisture. Geoscientific Model Development, 10, 1903–1925. https://doi.org/10.5194/gmd-10-1903-2017
Access
This provider asks users to register or request the data on its own site: https://www.gleam.eu/
curl "https://hydrological.org/api/v1/datasets/gleam/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/gleam/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/gleam/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