Full catalog/MCD15A3H
MCD15A3H·v061·dataset

How dense the leaf cover is (Terra+Aqua, 4-day, 500 m)

MODIS/Terra+Aqua Leaf Area Index/FPAR 4-Day L4 Global 500m SIN Grid V061
biosphere NASA LPCLOUD Level 4 active HDF-EOS2
In plain English

What it measures. Two numbers about plant canopies for every 500 m patch of land: how much leaf surface is packed above the ground (leaf area index), and what fraction of useful sunlight the leaves are soaking up for photosynthesis.

How it's made. Built by combining the clearest views from the MODIS sensors on NASA's Terra and Aqua satellites over each 4-day window into a single processed product.

How & where you'd use it. Helps track how lush or stressed vegetation is, supports crop and forest monitoring, and feeds climate and carbon models that need to know how plants are absorbing sunlight.

What's measured

BIOSPHERE › VEGETATION › LEAF CHARACTERISTICSBIOSPHERE › VEGETATION › PHOTOSYNTHETICALLY ACTIVE RADIATIONBIOSPHERE › VEGETATION › LEAF CHARACTERISTICS › LEAF AREA INDEX (LAI)BIOSPHERE › VEGETATION › PHOTOSYNTHETICALLY ACTIVE RADIATION › FRACTION OF ABSORBED PHOTOSYNTHETICALLY ACTIVE RADIATION (FAPAR)

Coverage & cadence

  • Time span2002-07-04 → ongoing
  • Measured byTerra (MODIS) · Aqua (MODIS)
  • Processing levelLevel 4
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS2
  • StatusACTIVE

What you can do with it

  • Map vegetation, forests and biomass
  • Monitor ecosystem productivity and carbon
  • Support habitat and biodiversity studies
Official description

The MCD15A3H Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS) Level 4 combined Leaf Area Index (LAI) and Fraction of Photosynthetically Active Radiation (FPAR) product is a 4-day composite data set with 500 meter pixel size. The algorithm chooses the best pixel available from all the acquisitions of both MODIS sensors located on NASA’s Terra and Aqua satellites from within the 4-day period. LAI is defined as the one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies. FPAR is defined as the fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy. Known Issues * 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=TerraAqua&as=61).

Get the data

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

results = earthaccess.search_data(
    short_name="MCD15A3H",
    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.