WAPOR Actual Evapotranspiration and Interception 3.0

  • The dataset provides actual evapotranspiration and interception (ETIa) data measured in mm/day, representing the average daily ETIa over 10-day periods.

  • The data is available from January 1, 2018, to October 1, 2025, with updates every 10 days.

  • Provided by the FAO UN, the data is freely available for scientific and research purposes under their terms of use.

  • This dataset is part of the FAO's WaPOR and AQUASTAT initiatives focused on water productivity and agriculture.

FAO/WAPOR/3/L1_AETI_D
Dataset Availability
2018-01-01T00:00:00Z–2025-10-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("FAO/WAPOR/3/L1_AETI_D")
Cadence
10 Days
Tags
agriculture fao wapor water water-vapor

Description

The actual evapotranspiration and interception (ETIa) (dekadal, in mm/day) is the sum of the soil evaporation (E), canopy transpiration (T), and evaporation from rainfall intercepted by leaves (I). The value of each pixel represents the average daily ETIa in a given dekad.

Bands

Pixel Size
248.2 meters

Bands

Name Units Scale Pixel Size Description
L1-AETI-D mm 0.1 meters

Actual Evapotranspiration and Interception (Dekadal) [mm]

Terms of Use

Terms of Use

The Food and Agriculture Organization of the United Nations (FAO) is mandated to collect, analyze, interpret, and disseminate information related to nutrition, food, and agriculture. In this regard, it publishes a number of databases on topics related to FAO's mandate, and encourages the use of them for scientific and research purposes. Consistent with the principles of openness and sharing envisioned under the Open Data Licensing For Statistical Databases, and consistent with the mandate of FAO, data from the Water Productivity Open Access Portal (WaPOR), as part of AQUASTAT - FAO's Global Information System on Water and Agriculture, is available free to the user community.

Citations

Citations:
  • FAO 2018. WaPOR Database Methodology: Level 1. Remote Sensing for Water Productivity Technical Report: Methodology Series. Rome, FAO. 72 pages.

  • FAO 2020. WaPOR V2 Database Methodology. Remote Sensing for Water Productivity Technical Report: Methodology Series. Rome, FAO. https://www.fao.org/3/ca9894en/CA9894EN.pdf

Explore with Earth Engine

Code Editor (JavaScript)

var coll = ee.ImageCollection('FAO/WAPOR/3/L1_AETI_D');
var image = coll.first();
Map.setCenter(17.5, 20, 3);
Map.addLayer(image, {min: 0, max: 50});
Open in Code Editor