Script Library
BasicAir QualityBasic
CH₄ Methane Mapping
Map methane concentrations from Sentinel-5P. Key greenhouse gas from wetlands, agriculture, oil & gas.
Pipeline (1 steps)
- Map methane concentrations from Sentinel-5P. Key greenhouse gas from wetlands, agriculture, oil & gas.
Datasets
- s5p-ch4
Simulated previewPaste the script in Earth Engine for live results
Outputs the script produces
map Map layers
map Time series chart
map Export GeoTIFF
map Heatmap
// CH4 Methane Mapping
var ch4 = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_CH4')
.filterDate(startDate, endDate).filterBounds(aoi)
.select('CH4_column_volume_mixing_ratio_dry_air').mean();
var result = ch4.clip(aoi);# CH4 Methane Mapping
import ee
ch4 = (ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_CH4')
.filterDate(start_date, end_date).filterBounds(aoi)
.select('CH4_column_volume_mixing_ratio_dry_air').mean())
result = ch4.clip(aoi)