- Catalog Owner
- Nature Trace
- Dataset Availability
- 2022-08-10T00:00:00Z–2026-06-09T17:16:18Z
- Dataset Producer
- Google Research
- Tags
Description
The Methane Analysis and Plume Localization with EMIT (MAPL-EMIT) enhancements dataset provides high-resolution (60m) methane (CH₄) enhancement maps and plume probabilities derived from radiance data captured by the Earth Surface Mineral Dust Source Investigation (EMIT) instrument which were generated and released as part of the research paper: "Publication to be updated, preprint: https://arxiv.org/abs/2604.10094"
Methane point-source emissions are a major driver of near-term climate forcing. Traditional space-based identification methods often rely on manual analyst review or matched-filter techniques that can miss smaller plumes. MAPL-EMIT addresses this using a deep learning vision transformer framework that simultaneously analyzes the full radiance spectrum and the spatial context of neighboring pixels. Validated on millions of synthetic plumes and real-world benchmarks, the model achieves significantly lower detection limits, capturing weaker plumes and more plausible emissions than human analysts.
This dataset provides model-generated granule-level methane enhancements (in ppm-m) along with plume probability scores for each pixel. You can also explore and visualize the enhancement data interactively through the MAPL-EMIT EE App. If you are interested in plume level data, please see MAPL-EMIT Plumes.
The data is provided on a per-pixel basis:
- Enhancements: The estimated column-integrated methane enhancement (ppm-m).
- Plume Probability: A score (0 to 1) representing the model's confidence that the pixel contains a methane plume.
Example Uses:
- Enhancement based flux inversion: Using the granule level enhancements paired with winds and other relevant sources to produce flux inversion estimates.
- Algorithm Development & Cross-Validation: Utilizing the raw pixel-level enhancements and probabilities to develop custom plume identification algorithms, or comparing against other retrieval techniques.
- Detailed Morphological Studies: Analyzing the continuous spread and diffusion of a plume without relying on pre-computed discrete bounding polygons.
Limitations:
- Enhancement noise: The enhancements can be noisy, especially when we are looking at very low enhancements which can either be missed out by the model entirely or incorrectly estimated. We observe that the SNR (signal-to-noise ratio) for MAPL-EMIT enhancements is much higher than Matched Filter or other approaches, however, noise still exists and should be handled accordingly.
- Instrument coverage: Data coverage is constrained by EMIT's orbital sampling and field-of-view; observations are only available for locations and times when the instrument collected measurements from the International Space Station.
- Environmental Factors: Model performance degrades in scenarios with heavy cloud cover, shadows, or low-albedo (dark) surfaces, which reduce the quality of the hyperspectral radiance signal.
Bands
Bands
Pixel size: 60 meters (all bands)
| Name | Units | Pixel Size | Description |
|---|---|---|---|
methane_enhancement |
ppm m | 60 meters | Methane enhancement (ppm-m) |
plume_probability |
60 meters | Plume probability |
Image Properties
Image Properties
| Name | Type | Description |
|---|---|---|
| ee_asset_id | STRING | Earth Engine asset ID of the corresponding EMIT L1B granule |
Terms of Use
Terms of Use
This dataset is licensed under CC-BY 4.0 and requires the following attribution: "This dataset is produced by Google".
Citations
Batchu, V. V., Conserva, M., Wilson, A., Michalak, A. M., Gulshan, V., Brodrick, P. G., Thorpe, A. K., & Arsdale, C. V. (2026). Global monitoring of methane point sources using deep learning on hyperspectral radiance measurements from EMIT. arXiv preprint arXiv:2604.10094.
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('projects/nature-trace/assets/ghg/emit/mapl_emit_enhancements_v1_0'); var visParamsEnhancement = { min: 0, max: 300, palette: ['#000004', '#1b0c41', '#4a0c6b', '#781c6d', '#a52c60', '#cf4446', '#ed6925', '#fb9b06', '#f7d13d', '#fcffa4'] }; Map.setCenter(54.16, 38.4604, 8); Map.addLayer(dataset.select(1), {min: 0, max: 1, palette: ['white', 'black']}, 'Plume probability'); Map.addLayer(dataset.select(0), visParamsEnhancement, 'Granule enhancement');