Full catalog/PREFIRE_SAT2_0-BUS-TLM
PREFIRE_SAT2_0-BUS-TLM·vR01·dataset

Spacecraft health and status data (PREFIRE Sat 2)

Polar Radiant Energy in the Far InfraRed Experiment (PREFIRE) Satellite 2 telemetry R01
atmosphere NASA LARC_CLOUD Level 0 active CSV
In plain English

What it measures. The location, speed, and orientation of the PREFIRE Satellite 2 CubeSat as it orbits, including time, orbit position and velocity, and pointing angle. It is spacecraft housekeeping data, not an Earth measurement.

How it's made. Recorded directly from PREFIRE Satellite 2's onboard systems once per second and stored as simple text files.

How & where you'd use it. Combined with elevation maps to pin PREFIRE's measurements to the right place on Earth. A technical support file used in processing, not on its own.

What's measured

ATMOSPHERE › ATMOSPHERIC RADIATION › OUTGOING LONGWAVE RADIATION

Coverage & cadence

  • Time span2024-05-25 → ongoing
  • Measured byPREFIRE-SAT2 (TIRS-PREFIRE)
  • Processing levelLevel 0
  • Spatial extent-180, -84, 180, 84
  • FormatsCSV
  • StatusACTIVE

What you can do with it

  • Map air pollutants — NO₂, aerosols, ozone
  • Track greenhouse gases and Earth's energy budget
  • Feed weather and air-quality analysis
Official description

Polar Radiant Energy in the Far InfraRed Experiment (PREFIRE) Satellite 2 Telemetry (PREFIRE_SAT2_0-BUS-TLM) contains positioning and pointing information for one of two PREFIRE polar orbiting CubeSats. Both CubeSats carry a PREFIRE Thermal Infrared Spectrometer (TIRS-PREFIRE), a push broom spectrometer with 63 channels measuring mid- and far-infrared (FIR) radiation from approximately 5 to 53 µm. Most polar emissions are in the FIR but have not been measured on a large scale. PREFIRE aims to fill knowledge gaps in the global energy budget by more accurately characterizing polar emissions. This information will be assimilated into global circulation and other models to predict future conditions more accurately. This collection contains the time, beta angle, orbit position and velocity, and the quaternion of PREFIRE Satellite 2 (PREFIRE-SAT2). Combined with a Digital Elevation Map, these telemeters geolocate PREFIRE data on the Earth’s surface. Data retrieval started June 29, 2024 and is ongoing. Geographic coverage is global, with the greatest concentration of data in the polar regions. This data is retrieved at a frequency of 1Hz and is available in CSV format. Positioning and pointing information for the sister satellite, PREFIRE-SAT1, can be found in the PREFIRE_SAT1_0-BUS-TLM collection.

Get the data

prefire_sat2_0-bus-tlm_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

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