Full catalog/SNDRJ1CrISL1B
SNDRJ1CrISL1B·v3·dataset

Calibrated raw infrared light spectra (JPSS-1)

JPSS-1 CrIS Level 1B Full Spectral Resolution V3 (SNDRJ1CrISL1B) at GES DISC
land NASA GES_DISC Level 1B active
In plain English

What it measures. Calibrated infrared light spectra, meaning detailed measurements of how much infrared energy the sensor recorded across thousands of narrow wavelength channels, along with location and instrument details for each reading.

How it's made. Comes from the CrIS infrared sounder on the NOAA-20 (JPSS-1) satellite, processed to the calibrated-measurement stage but before the data are turned into temperature or humidity profiles.

How & where you'd use it. A building-block input that scientists feed into weather forecasting models and combine with other instruments to derive atmospheric temperature and humidity, rather than something most people use directly.

What's measured

SPECTRAL/ENGINEERING › INFRARED WAVELENGTHS › BRIGHTNESS TEMPERATURESPECTRAL/ENGINEERING › INFRARED WAVELENGTHS › INFRARED RADIANCE

Coverage & cadence

  • Time span2018-01-05 → ongoing
  • Measured byNOAA-20 (CrIS)
  • Processing levelLevel 1B
  • Spatial extent-180, -90, 180, 90
  • 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 Cross-track Infrared Sounder (CrIS) Level 1B Full Spectral Resolution (FSR) data files contain radiance measurements along with ancillary spacecraft, instrument, and geolocation data of the CrIS instrument on the Joint Polar Satellite System-1 (JPSS-1) platform. This platform is also know as NOAA-20 (National Oceanic and Atmospheric Administration). The JPSS-1 mission with CrIS instrumentation is a follow-on to the Suomi National Polar-orbiting Partnership (SNPP) mission. The CrIS instrumentation and data processing system is nearly identical to that of the SNPP satellite. The FSR files have 2,223 channels (*2211 apodized channels): 637 (*633) shortwave channels from 3.9 to 4.7 microns (2555 to 2150 cm-1), 869 (*865) midwave channels from 5.7 to 8.05 microns (1752.5 to 1242.5 cm-1), and 717 (*713)longwave channels from 9.1 to 15.41 microns (1096.25 to 648.75 cm-1). Each CrIS field-of-regard (FOR) contains 9 field-of-views (FOVs) arranged in a 3X3 array. The Level 1B files contain 30 FORs in the cross track direction and 45 in the along track direction. Data products are constructed on six minute boundaries. CrIS is designed to be used with the ATMS (Advanced Technology Microwave Sounder) instrument. Processing the data from both of these instruments together is referred to as CrIMSS (Cross-Track Infrared and Microwave Sounder Suite). Version 3 of this product contain improvements to the L1B calibration, geolocation, quality monitoring, and metadata. Additional information can be found in the NASA Cross Track Infrared Sounder (CrIS) Level 1B Product Users’ Guide. If you were redirected to this page from a DOI from an older version, please note this is the current version of the product. Please contact the GES DISC user support if you need information about previous data collections.

Get the data

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

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