MYD16A2.061: Aqua Net Evapotranspiration 8-Day L4 Global 500m SIN Grid V061

MODIS/061/MYD16A2
Dataset Availability
2021-01-01T00:00:00Z–2025-07-20T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/061/MYD16A2")
Cadence
8 Days
Tags
8-day evapotranspiration global modis nasa water-vapor

Description

The MYD16A2 Version 6.1 Evapotranspiration/Latent Heat Flux product is an 8-day composite product 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 ET, LE, PET and PLE layers are the sum for all days within the 8-day composite period.Note that the last 8-day period of each year is a 5 or 6-day composite period, depending on the year.

The Version 6.1 Level-1B (L1B) products have been improved by undergoing various calibration changes that include: changes to the response-versus-scan angle (RVS) approach that affects reflectance bands for Aqua and Terra MODIS, corrections to adjust for the optical crosstalk in Terra MODIS infrared (IR) bands, and corrections to the Terra MODIS forward look-up table (LUT) update for the period 2012 - 2017. A polarization correction has been applied to the L1B Reflective Solar Bands (RSB). The product uses Climatology LAI/FPAR as back up to the operational LAI/FPAR.

According to the MODIS Science Team, The MYD16A2 6.1 product will not have data prior to 2021. The MODIS Science team recommends using the gap-filled MYD16A2GF 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 MYD16A2GF 6.1 data for the year 2023 (or the "current" year in the future), they recommend using the MYD16A2 6.1 product, which is generated using the daily observation with climatology observation replacing for the cloudy or poor quality observations.

Documentation:

Bands

Pixel Size
500 meters

Bands

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

Total evapotranspiration

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

Average latent heat flux

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

Total potential evapotranspiration

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

Average potential latent heat flux

ET_QC meters

Evapotranspiration quality control flags

Image Properties

Image Properties

Name Type Description
num_tiles INT

The number of source tiles that were mosaicked to create this image.

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/MYD16A2')
                  .filter(ee.Filter.date('2021-01-01', '2021-02-01'));
var evapotranspiration = dataset.select('ET');
var evapotranspirationVis = {
  min: 0.0,
  max: 300.0,
  palette: [
    'ffffff', 'fcd163', '99b718', '66a000', '3e8601', '207401', '056201',
    '004c00', '011301'
  ],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(
    evapotranspiration, evapotranspirationVis, 'Evapotranspiration');
Open in Code Editor