Full catalog/VJ118C2
VJ118C2·v002·dataset

Sunlight that plants use to grow (NOAA-20, daily)

VIIRS/JPSS1 Photosynthetically Active Radiation Daily L3 Global 0.05Deg CMG V002
land NASA LPCLOUD Level 3 active HDF-EOS5
In plain English

What it measures. Daily global maps of how much visible sunlight (the wavelengths plants use for photosynthesis) reaches the ground, at about 5-kilometer detail.

How it's made. Estimated from VIIRS observations on the NOAA-20 satellite using lookup tables that account for clouds, haze, and viewing angle, then aggregated into daily and 3-hourly global grids.

How & where you'd use it. Feeds land and vegetation models and is increasingly used for planning and running solar energy systems.

What's measured

LAND SURFACE › SURFACE RADIATIVE PROPERTIES › REFLECTANCELAND SURFACE › SURFACE RADIATIVE PROPERTIES › ALBEDOLAND SURFACE › SURFACE RADIATIVE PROPERTIES › ANISOTROPY

Coverage & cadence

  • Time span2018-01-05 → ongoing
  • Measured byNOAA-20 (VIIRS)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS5
  • 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 NOAA-20 Visible Infrared Imaging Radiometer Suite (VIIRS) Photosynthetically Active Radiation (PAR) Level 3 Climate Modeling Grid (CMG) product produced at 0.05 degree pixel resolution at daily intervals. PAR is the incident solar radiation in the visible spectrum (400-700 nanometers) and is a significant variable in land surface models (LSMs), receiving increased attention due to its importance for the management and operation of solar energy systems. The VJ118 algorithm adapts the narrowband look-up table (LUT) approach to estimate PAR. The LUTs consider different types of loadings of aerosols and clouds at a variety of illumination/viewing geometry. The Algorithm Theoretical Basis Document (ATBD) is forthcoming and will provide additional details regarding the methodology used to create the data. The VJ118C2 product is aggregated from VJ118A2 files and includes one set of global 3-hour PAR variables and one set of daily mean PAR.

Get the data

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

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