Full catalog/VIP01
VIP01·v004·dataset

How green the land is, daily (5 km)

Vegetation Index and Phenology (VIP) Vegetation Indices Daily Global 0.05Deg CMG V004
biosphere NASA LPCLOUD Level 3 HDF-EOS2
In plain English

What it measures. Daily greenness scores for the whole globe at about 5-km detail, designed to be consistent across decades so that vegetation can be compared from the early 1980s through 2014.

How it's made. Stitched together from older AVHRR weather-satellite observations (1981-1999) and MODIS data from the Terra satellite (2000-2014), processed into a uniform daily record.

How & where you'd use it. Valuable for studying long-term vegetation trends and seasonal life cycles, including how plants respond to a changing environment over more than 30 years.

What's measured

BIOSPHERE › VEGETATION › VEGETATION INDEXBIOSPHERE › VEGETATION › VEGETATION INDEX › NORMALIZED DIFFERENCE VEGETATION INDEX (NDVI)CLIMATE INDICATORS › BIOSPHERIC INDICATORS › PHENOLOGICAL CHANGES › PLANT PHENOLOGICAL CHANGESBIOSPHERE › VEGETATION › VEGETATION INDEX › ENHANCED VEGETATION INDEX (EVI)

Coverage & cadence

  • Time span1981-01-01 → 2014-12-31
  • Measured byNOAA-7 (AVHRR) · NOAA-9 (AVHRR) · NOAA-11 (AVHRR) · NOAA-14 (AVHRR) · Terra (MODIS)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS2
  • StatusCOMPLETE

What you can do with it

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

The NASA Making Earth System Data Records for Use in Research Environments ([MEaSUREs](https://earthdata.nasa.gov/about/competitive-programs/measures)) Vegetation Index and Phenology (VIP) global datasets were created using Advanced Very High Resolution Radiometer (AVHRR) N07, N09, N11, and N14 datasets (1981 - 1999) and Moderate Resolution Imaging Spectroradiometer (MODIS)/Terra MOD09 surface reflectance data (2000 - 2014). The VIP Vegetation Index (VI) product was developed to provide consistent measurements of the Normalized Difference Vegetation Index (NDVI) and modified Enhanced Vegetation Index (EVI2) spanning more than 30 years of data from multiple sensors. The EVI2 is a backward extension of AVHRR. Vegetation indices such as NDVI and EVI2 are useful for assessing the biophysical properties of the land surface, and are used to characterize vegetation phenology. Phenology tracks the seasonal life cycle of vegetation, and provides information on the biotic response to environmental changes. The VIP01 VI data product is a daily global file at 0.05 degree (5600 meter (m)) spatial resolution in geographic (Lat/Lon) grid format. The data are stored in Hierarchical Data Format-Earth Observing System (HDF-EOS) file format. The VIP01 VI product contains 11 Science Datasets (SDS), which includes the calculated VIs (NDVI and EVI2) as well as information on the quality assurance/pixel reliability, the input Visible/Near Infrared (VNIR) surface reflectance data, and viewing geometry. The Blue and Middle Infrared (MIR) surface reflectance data are only available for the MODIS era (2000 - 2014). Gaps in the daily product are filled using long term mean VI records derived from the more than 30 year time series of data, and are indicated as gap-filled in the Pixel Reliability SDS. A low resolution browse image showing NDVI as a color map is also available. Known Issues * The Relative Azimuth Angle (RAA) for the input MODIS data is computed based on absolute values of the finer resolution pixels resulting in positive values and has minor usefulness. * The RAA for the input AVHRR data contain values in the -360° to 360° range. The routine to restrict the values in the -180° to 180° range was accidentally missed and can be corrected using the following routine described in Section 4.2.1 of the User Guide and Algorithm Theoretical Basis Document: * SinRelativeAz=sin(RAA) * CosRelativeAz=cos(RAA) * Correct-RAA = atan2(SinRelativeAz,CosRelativeAz)

Get the data

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

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