Full catalog/MOD16A2
MOD16A2·v061·dataset

How much water plants release (Terra, 8-day, 500 m)

MODIS/Terra Net Evapotranspiration 8-Day L4 Global 500m SIN Grid V061
atmosphere NASA LPCLOUD Level 4 active HDF-EOS2
In plain English

What it measures. How much water plants and soil release into the air through evaporation and transpiration, along with the related heat energy, over 8-day periods at 500-meter detail.

How it's made. Built from Terra MODIS observations of vegetation, reflectivity, and land cover combined with daily weather data, using the Penman-Monteith equation.

How & where you'd use it. Helps track water use by landscapes, drought conditions, and irrigation needs, and supports water-cycle and agricultural studies.

What's measured

ATMOSPHERE › ATMOSPHERIC WATER VAPOR › WATER VAPOR PROCESSES › EVAPOTRANSPIRATIONATMOSPHERE › PRECIPITATION › PRECIPITATION PROFILES › LATENT HEAT FLUX

Coverage & cadence

  • Time span2021-01-01 → ongoing
  • Measured byTerra (MODIS)
  • Processing levelLevel 4
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS2
  • StatusACTIVE

What you can do with it

  • Map air pollutants — NO₂, aerosols, ozone
  • Track greenhouse gases and Earth's energy budget
  • Feed weather and air-quality analysis
Official description

The MOD16A2 Version 6.1 Evapotranspiration/Latent Heat Flux product is an 8-day composite dataset produced at 500 meter (m) 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 Moderate Resolution Imaging Spectroradiometer (MODIS) remotely sensed data products such as vegetation property dynamics, albedo, and land cover. Provided in the MOD16A2 product are layers for composited Evapotranspiration (ET), Latent Heat Flux (LE), Potential ET (PET) and Potential LE (PLE) along with a quality control layer. Two low resolution browse images, ET and LE, are also available for each MOD16A2 granule. The pixel values for the two Evapotranspiration layers (ET and PET) are the sum of all eight days within the composite period and the pixel values for the two Latent Heat layers (LE and PLE) are the average of all eight days within the composite period. Note that the last acquisition period of each year is a 5 or 6-day composite period, depending on the year. Known Issues * Operational and uncertainty issues are provided under Section 3 in the User Guide. * For complete information about known issues please refer to the [MODIS/VIIRS Land Quality Assessment website](https://landweb.modaps.eosdis.nasa.gov/knownissue?sensor=MODIS&sat=Terra&as=61).

Get the data

mod16a2_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="MOD16A2",
    version="061",
    bounding_box=(-122.5, 37.2, -121.8, 37.9),  # your area (W,S,E,N)
    temporal=("2024-01-01", "2024-12-31"),       # your dates
)
files = earthaccess.open(results)   # stream straight from LPCLOUD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.