Full catalog/ACOS_L2_Lite_FP
ACOS_L2_Lite_FP·v9r·dataset

Carbon dioxide in the air, daily (GOSAT)

ACOS GOSAT/TANSO-FTS Level 2 bias-corrected XCO2 and other select fields from the full-physics retrieval aggregated as daily files V9r (ACOS_L2_Lite_FP) at GES DISC
atmosphere NASA GES_DISC Level 2
In plain English

What it measures. Daily measurements of how much carbon dioxide is in the air, given as the column-averaged CO2 concentration, with bias corrections applied.

How it's made. Derived from the TANSO-FTS instrument on Japan's GOSAT satellite; calibrated radiances are processed by NASA's ACOS team into Level-2 retrievals and aggregated into daily files.

How & where you'd use it. Used to study atmospheric carbon dioxide and the processes that control it, supporting climate and carbon-cycle research.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › CARBON AND HYDROCARBON COMPOUNDS › ATMOSPHERIC CARBON DIOXIDE

Coverage & cadence

  • Time span2009-04-20 → 2020-07-01
  • Measured byGOSAT (TANSO-FTS)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • StatusCOMPLETE

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

Version 9r is the current version of the data set. Older versions will no longer be available and are superseded by Version 9r. The ACOS Lite files contain bias-corrected XCO2 along with other select fields aggregated as daily files. Orbital granules of the ACOS Level 2 standard product (ACOS_L2S) are used as input. The "ACOS" data set contains Carbon Dioxide (CO2) column averaged dry air mole fraction for all soundings for which retrieval was attempted. These are the highest-level products made available by the OCO Project, using TANSO-FTS spectral radiances. The GOSAT team at JAXA produces GOSAT TANSO-FTS Level 1B (L1B) data products for internal use and for distribution to collaborative partners, such as ESA and NASA. These calibrated products are augmented by the OCO Project with additional geolocation information and further corrections. Thus produced Level 1B products (with calibrated radiances and geolocation) are the input to the "ACOS" Level 2 production process.

Get the data

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

results = earthaccess.search_data(
    short_name="ACOS_L2_Lite_FP",
    version="9r",
    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.