Full catalog/MOD09Q1P_EVI
MOD09Q1P_EVI·v6·dataset

How green the land gets through the year (Terra, 250 m)

MODIS/Terra EVI Phenology annual L4 250m SIN Grid
land NASA LAADS Level 4 active HDF-EOS
In plain English

What it measures. A yearly, gap-filled and smoothed record of how green the land becomes through the seasons, at 250-meter resolution. It uses a vegetation 'greenness' index (EVI) to track the plant growing cycle.

How it's made. Built from the Terra satellite's MODIS 8-day surface reflectance data, then gap-filled and smoothed into a clean annual series.

How & where you'd use it. Useful for studying plant phenology - when vegetation greens up and dies back each year - and tracking growing seasons and crop or ecosystem patterns.

What's measured

LAND SURFACE › LAND USE/LAND COVER › LAND USE/LAND COVER CLASSIFICATION › VEGETATION INDEX

Coverage & cadence

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

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

The MODIS/Terra EVI Phenology annual L4 250m SIN Grid product, with short-name MOD09Q1P_EVI is a Gap-filled Smoothed EVI created from the MOD09A1 8-day Surface Reflectance product. The spatial resolution is 250 m. MOD09Q1P_NDVI is stored in Hierarchical Data Format (HDF) with sinusodial projection, same as other standard MODIS land products.

Get the data

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

results = earthaccess.search_data(
    short_name="MOD09Q1P_EVI",
    version="6",
    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 LAADS
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.