Full catalog/VJ121
VJ121·v002·dataset

How hot the land surface is (NOAA-20, 750 m)

VIIRS/JPSS1 Land Surface Temperature and Emissivity 6-Min L2 Swath 750m V002
land NASA LPCLOUD Level 2 active netCDF-4
In plain English

What it measures. How hot the actual land surface is (the ground, not the air above it) and how efficiently that surface radiates heat, mapped at 750 meters from each satellite pass.

How it's made. Retrieved from the VIIRS instrument on the NOAA-20 satellite using its thermal infrared bands and a physics-based method that solves for surface temperature and emissivity together, designed to match the older MODIS approach.

How & where you'd use it. Useful for tracking heat over cities and farmland, monitoring drought and water stress, and continuing the long-running record of land surface temperature begun by MODIS.

What's measured

LAND SURFACE › SURFACE THERMAL PROPERTIES › LAND SURFACE TEMPERATURELAND SURFACE › SURFACE RADIATIVE PROPERTIES › EMISSIVITY

Coverage & cadence

  • Time span2018-01-01 → ongoing
  • Measured byNOAA-20 (VIIRS)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • FormatsnetCDF-4
  • 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) Version 2 swath product (VJ121) is produced daily in 6-minute temporal increments of satellite acquisition. The VJ121 product uses a physics-based algorithm to dynamically retrieve both the LST and emissivity simultaneously for VIIRS thermal infrared bands M14 (8.55 µm), M15 (10.76 µm), and M16 (12 µm) at a spatial resolution of 750 meters. The VJ121 product is developed developed synergistically with the Moderate Resolution Imaging Spectroradiometer (MODIS) LST&E Version 6.1 product ([MOD21](https://doi.org/10.5067/MODIS/MOD21.061)) using the same input atmospheric products and algorithmic approach based on the ASTER Temperature Emissivity Separation (TES) technique. The TES algorithm is combined with an improved Water Vapor Scaling (WVS) atmospheric correction scheme to stabilize the retrieval during very warm and humid conditions. 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. VIIRS LST&E products are available two months after acquisition due to latency of data inputs. Additional details regarding the method used to create this Level 2 (L2) product are available in the Algorithm Theoretical Basis Document (ATBD). Provided in the VJ121 product are layers for LST, quality control, emissivity for bands M14, M15, and M16, LST&E errors, view angle, ASTER Global Emissivity Dataset (GED), Precipitable Water Vapor (PWV), ocean-land mask, latitude, and longitude. A low-resolution browse image for LST is also available for each VJ121 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

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

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