Full catalog/NISAR_RP
NISAR_RP·v1·dataset

Where the NISAR radar antenna is aimed

NISAR Radar Pointing
land NASA ASF Level 1A active XML
In plain English

What it measures. Engineering files that record where the NISAR radar antenna is pointed, available at different accuracy levels from quick forecasts to precise after-the-fact values.

How it's made. Produced as part of the NASA-ISRO NISAR mission to document the radar's pointing.

How & where you'd use it. A behind-the-scenes input used to correctly process and geolocate NISAR radar imagery, not a product general users work with directly.

What's measured

SPECTRAL/ENGINEERING › SENSOR CHARACTERISTICS › VIEWING GEOMETRY

Coverage & cadence

  • Time span2025-08-02 → ongoing
  • Measured byNISAR (L-SAR, S-SAR)
  • Processing levelLevel 1A
  • Spatial extent-180, -90, 180, 90
  • FormatsXML
  • 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 NASA-ISRO Synthetic Aperture Radar (NISAR) Radar Pointing collection contains the radar pointing files for the NISAR mission. The collection includes multiple accuracy levels defined by the product type where FRP=Forecast Radar Pointing, NRP=Near real-time Radar Pointing, and PRP=Precise Radar Pointing.

Get the data

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

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