Script Library
BasicAir QualityBasic
SO₂ Concentration Mapping
Map sulfur dioxide concentrations from Sentinel-5P. Monitors volcanic activity, power plants, and smelters.
Pipeline (1 steps)
- Map sulfur dioxide concentrations from Sentinel-5P. Monitors volcanic activity, power plants, and smelters.
Datasets
- s5p-so2
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
// SO2 Mapping
var so2 = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_SO2')
.filterDate(startDate, endDate).filterBounds(aoi)
.select('SO2_column_number_density').mean();
var result = so2.clip(aoi);# SO2 Mapping
import ee
so2 = (ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_SO2')
.filterDate(start_date, end_date).filterBounds(aoi)
.select('SO2_column_number_density').mean())
result = so2.clip(aoi)