Full catalog/LPJ_EOSIM_L2_DCH4E
LPJ_EOSIM_L2_DCH4E·v001·dataset

Daily methane released by wetlands, modeled

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

What it measures. Modeled daily estimates of methane gas released by wetlands across the globe, based on simulated wetland extent, soil moisture, temperature, and carbon.

How it's made. Not directly measured; produced by the LPJ-EOSIM computer model at half-degree resolution, run with two different weather datasets (MERRA-2 and ERA5) plus mean and uncertainty layers, delivered as map files.

How & where you'd use it. Supports the U.S. Greenhouse Gas Center's work to map natural greenhouse-gas sources, helping pinpoint methane hotspots and guide where to place measurement campaigns.

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 help with strategic placement of measurement campaigns and monitoring systems as they relate to predicted biogeochemical hotspots. The LPJ-EOSIM Level 2 Global Simulated Daily Wetland Methane Flux (LPJ_EOSIM_L2_DCH4E) Version 1 data product provides simulated daily wetland CH4 flux globally at a spatial resolution of 0.5 degrees. The daily data are presented in four Cloud Optimized GeoTIFF (COG) files: two based on the 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. Due to the latency of global carbon dioxide (CO2) concentration estimates required for computation of LPJ-EOSIM simulated daily CH4 flux data products, low latency ([LPJ_EOSIM_L2_DCH4E_LL](https://doi.org/10.5067/Community/LPJ-EOSIM/LPJ_EOSIM_L2_DCH4E_LL.001)) and high latency (LPJ_EOSIM_L2_DCH4E) 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 CO2 estimate inputs and timing for scheduled updates to the collections.

Get the data

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

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