Full catalog/LPJ_EOSIM_L2_MCH4E
LPJ_EOSIM_L2_MCH4E·v001·dataset

Modeled methane rising from wetlands, monthly (LPJ-EOSIM)

LPJ-EOSIM L2 Global Simulated Monthly Wetland Methane Flux V001
atmosphere NASA LPCLOUD Level 2 active COG
In plain English

What it measures. Monthly estimates of how much methane, a potent greenhouse gas, is released from the world's wetlands, on a half-degree global grid. Here wetlands mean land that stays wet permanently or seasonally, not small ponds, lakes, or coastal marshes.

How it's made. Produced by the LPJ-EOSIM computer model, which simulates wetland extent along with soil moisture, temperature, and carbon to estimate methane release; the monthly files aggregate daily model runs.

How & where you'd use it. Supports the U.S. Greenhouse Gas Center in studying natural methane sources and helps plan where to focus measurement campaigns for climate research.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › CARBON AND HYDROCARBON COMPOUNDS › METHANE › METHANE FLUX

Coverage & cadence

  • Time span1990-01-01 → ongoing
  • Measured byLPJ-EOSIM
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • FormatsCOG
  • 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

The Lund-Potsdam-Jena Earth Observation SIMulator (LPJ-EOSIM) model estimates global wetland methane (CH4) emissions using simulated wetland extent and characteristics including soil moisture, temperature, and carbon content. For this dataset, wetlands are defined as land areas that are either permanently or seasonally saturated, excluding small ponds, lakes, and coastal wetlands. These wetland CH4 flux data will be used to support the United States Greenhouse Gas Center ([GHGC](https://earth.gov/ghgcenter)) and its mission to study natural GHG fluxes. The model will also be used to facilitate improved rapid detection and attribution of climate-carbon feedback and in strategic placement of measurement campaigns and monitoring systems as they relate to predicted biogeochemical hotspots. The LPJ-EOSIM L2 Global Simulated Monthly Wetland Methane Flux (LPJ_EOSIM_L2_MCH4E) Version 1 data product provides simulated monthly wetland CH4 flux globally at a spatial resolution of 0.5 degrees. The monthly simulation data contains aggregate versions of the daily LPJ-EOSIM L2 Global Simulated Daily Wetland Methane Flux ([LPJ_EOSIM_L2_DCH4E](https://doi.org/10.5067/Community/LPJ-EOSIM/LPJ_EOSIM_L2_DCH4E.001)) Version 1 data. The monthly data are presented in four Cloud Optimized GeoTIFF (COG) files: two based on the aggregated daily forcing datasets Modern-Era Retrospective analysis for Research and Applications Version 2 (MERRA-2) and European Centre for Medium-Range Weather Forecasts (ECMWF) Re-Analysis (ERA5), and two containing the mean and standard deviation values calculated from the monthly aggregate data. Due to the latency of global carbon dioxide (CO2) concentration estimates required for computation of LPJ-EOSIM simulated monthly CH4 flux data products, low latency ([LPJ_EOSIM_L2_MCH4E_LL](https://doi.org/10.5067/Community/LPJ-EOSIM/LPJ_EOSIM_L2_MCH4E_LL.001)) and high latency (LPJ_EOSIM_L2_MCH4E) collections are available. High latency data in this collection will be delivered around May of each year when National Oceanic and Atmospheric Administration’s (NOAA) Global Monitoring Laboratory (GML) publishes the previous year’s CO2 concentration and will have a lag of at least 5 months (January-May), and at most 17 months (January of the current year to May of the next year). Please refer to Section 2.0.1 of the User Guide for a more detailed explanation of estimated CO2 inputs and timing for scheduled updates to the collections.

Get the data

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

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