Full catalog/VJ121C2
VJ121C2·v002·dataset

How hot the land surface gets (NOAA-20, 8-day, 0.05 deg)

VIIRS/JPSS1 Land Surface Temperature/Emissivity 8-Day L3 Global 0.05Deg CMG V002
land NASA LPCLOUD Level 3 active HDF-EOS5
In plain English

What it measures. How hot or cold the land surface is, plus how efficiently surfaces radiate heat (emissivity), averaged over 8-day periods and mapped globally at about 5-kilometer detail, with separate day and night values.

How it's made. Built from the VIIRS sensor on the NOAA-20 satellite by averaging all the cloud-free daily readings over each 8-day window, formatted for use in climate models.

How & where you'd use it. Useful for studying heat patterns on land, urban warming, drought, and climate, and designed to continue the long record started by NASA's older MODIS sensors.

What's measured

LAND SURFACE › SURFACE RADIATIVE PROPERTIES › EMISSIVITYLAND SURFACE › SURFACE THERMAL PROPERTIES › LAND SURFACE TEMPERATURE

Coverage & cadence

  • Time span2018-01-01 → 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) Land Surface Temperature and Emissivity (LST&E) 8-day Climate Modeling Grid Version 2 product (VJ121C2) combines the daily [VJ121A1D](http://doi.org/10.5067/VIIRS/VJ121A1D.002) and [VJ121A1N](http://doi.org/10.5067/VIIRS/VJ121A1N.002) products over an 8-day compositing period into a single product. The VJ121C2 dataset is an 8-day composite LST&E product at 0.05 degree (~5,600 meter) resolution that uses an algorithm based on a simple-averaging method and is formatted as a CMG for use in climate simulation models. The algorithm calculates the average from all the cloud-free VJ121A1D and VJ121A1N daily acquisitions from the 8-day period. Unlike the VJ121A1 datasets where the daytime and nighttime acquisitions are separate products, the VJ121C2 contains both daytime and nighttime acquisitions as separate science dataset (SDS) variables within a single Hierarchical Data Format (HDF) file. The overall objective for NASA VIIRS products is to ensure the algorithms and products are compatible with the MODIS Terra and Aqua algorithms to promote the continuity of the Earth Observation System (EOS) mission. Additional details regarding the method used to create this Level 3 (L3) product are available in the Algorithm Theoretical Basis Document (ATBD). The VJ121C2 product contains 27 Science Datasets (SDS) variables: LST, quality control, view zenith angle, and time of observation for both day and night observations along with emissivity for bands M14, M15, and M16. Low-resolution browse images for day and night LST are also available for each VJ121C2 granule. 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=VIIRS) and the User Guide.

Get the data

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

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