MOD16A2.061: Terra Net Evapotranspiration 8-Day Global 500m

MODIS/061/MOD16A2
Dataset Availability
2001-01-01T00:00:00Z–2024-02-26T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/061/MOD16A2")
Tags
8-day evapotranspiration global mod16a2 modis nasa

Description

The MOD16A2 Version 6.1 Evapotranspiration/Latent Heat Flux product is an 8-day composite product produced at 500 meter pixel resolution. The algorithm used for the MOD16 data product collection is based on the logic of the Penman-Monteith equation, which includes inputs of daily meteorological reanalysis data along with MODIS remotely sensed data products such as vegetation property dynamics, albedo, and land cover.

The pixel values for the two Evapotranspiration layers (ET & PET) are the sum of all eight days within the composite period. The pixel values for the two Latent Heat layers (LE & PLE) are the average of all eight days within the composite period. Note that the last 8-day period of each year is a 5 or 6-day composite period, depending on the year.

Class assignment in fill values 32761 through 32767 might be inaccurate. They are not included in the EE assets.

According to the MODIS Science Team, The MOD16A2 6.1 product will not have data prior to 2021. The MODIS Science team recommends using the gap-filled MOD16A2GF 6.1 product for data from 2000 to 2021 -- and then also 2022 when the data are available. They recommend this as the gap-filled product is expected to be superior in product quality, especially over areas where otherwise the routine product performance would have been negatively impacted by cloudy or poor quality input observations. For the current year, there will not be a gap-filled product until early the following year (i.e. 2023 data should be available in early 2024). So, if a user needs MOD16A2GF 6.1 data for the year 2023 (or the "current" year in the future), they recommend using the MOD16A2 6.1 product, which is generated using the daily observation with climatology observation replacing for the cloudy or poor quality observations.

Documentation:

Bands

Resolution
500 meters

Bands

Name Units Min Max Scale Description
ET kg/m^2/8day -32767 32700 0.1

Total evapotranspiration

LE J/m^2/day -32767 32700 10000

Average latent heat flux

PET kg/m^2/8day -32767 32700 0.1

Total potential evapotranspiration

PLE J/m^2/day -32767 32700 10000

Average potential latent heat flux

ET_QC

Evapotranspiration quality control flags

Terms of Use

Terms of Use

MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

Citations

Citations:

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('MODIS/061/MOD16A2')
                  .filter(ee.Filter.date('2022-01-01', '2022-05-01'));
var evapotranspiration = dataset.select('ET');
var evapotranspirationVis = {
  min: 0,
  max: 300,
  palette: [
    'ffffff', 'fcd163', '99b718', '66a000', '3e8601', '207401', '056201',
    '004c00', '011301'
  ],
};
Map.setCenter(0, 0, 2);
Map.addLayer(evapotranspiration, evapotranspirationVis, 'Evapotranspiration');
Open in Code Editor