Script Library
BasicAir QualityIntermediate
HCHO Formaldehyde Mapping
Map formaldehyde from Sentinel-5P. Proxy for VOC emissions from biogenic sources and fires.
Pipeline (1 steps)
- Map formaldehyde from Sentinel-5P. Proxy for VOC emissions from biogenic sources and fires.
Datasets
- s5p-hcho
Simulated previewPaste the script in Earth Engine for live results
Outputs the script produces
map Map layers
map Time series chart
map Export GeoTIFF
// HCHO Formaldehyde Mapping
var hcho = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_HCHO')
.filterDate(startDate, endDate).filterBounds(aoi)
.select('tropospheric_HCHO_column_number_density').mean();
var result = hcho.clip(aoi);# HCHO Formaldehyde Mapping
import ee
hcho = (ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_HCHO')
.filterDate(start_date, end_date).filterBounds(aoi)
.select('tropospheric_HCHO_column_number_density').mean())
result = hcho.clip(aoi)