Full catalog/NISAR_LRCLK_UTC
NISAR_LRCLK_UTC·v1·dataset

Clock-conversion file for the NISAR radar satellite

NISAR L-SAR Radar Clock to UTC Conversion File
land NASA ASF Level Not Provided active ASCII
In plain English

What it measures. A conversion file that translates the NISAR radar satellite's internal clock readings into standard world time (UTC).

How it's made. Generated for the NASA-ISRO Synthetic Aperture Radar (NISAR) mission's L-band radar.

How & where you'd use it. A purely technical housekeeping file used to time-stamp the satellite's data correctly; not a measurement and not used directly by general audiences.

What's measured

SPECTRAL/ENGINEERING › SENSOR CHARACTERISTICS

Coverage & cadence

  • Time span2019-01-01 → ongoing
  • Measured byNISAR (L-SAR)
  • Processing levelLevel Not Provided
  • Spatial extent-180, -90, 180, 90
  • FormatsASCII
  • 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

NASA-ISRO Synthetic Aperture Radar (NISAR) L-SAR Radar Clock to UTC conversion files.

Get the data

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

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