Script Library
BasicAir QualityBasic
O₃ Ozone Column Mapping
Map total ozone column from Sentinel-5P. Monitors stratospheric ozone layer and ground-level pollution.
Pipeline (1 steps)
- Map total ozone column from Sentinel-5P. Monitors stratospheric ozone layer and ground-level pollution.
Datasets
- s5p-o3
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
// O3 Ozone Mapping
var o3 = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_O3')
.filterDate(startDate, endDate).filterBounds(aoi)
.select('O3_column_number_density').mean();
var result = o3.clip(aoi);# O3 Ozone Mapping
import ee
o3 = (ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_O3')
.filterDate(start_date, end_date).filterBounds(aoi)
.select('O3_column_number_density').mean())
result = o3.clip(aoi)