Script Library
BasicAir QualityIntermediate
Aerosol Optical Depth (MODIS)
Map aerosol optical depth from MODIS MAIAC at 1km resolution. Proxy for PM2.5 air pollution.
Pipeline (1 steps)
- Map aerosol optical depth from MODIS MAIAC at 1km resolution. Proxy for PM2.5 air pollution.
Datasets
- modis-aod
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
// MODIS AOD Mapping
var aod = ee.ImageCollection('MODIS/061/MCD19A2_GRANULES')
.filterDate(startDate, endDate).filterBounds(aoi)
.select('Optical_Depth_055').mean();
var result = aod.clip(aoi);# MODIS AOD Mapping
import ee
aod = (ee.ImageCollection('MODIS/061/MCD19A2_GRANULES')
.filterDate(start_date, end_date).filterBounds(aoi)
.select('Optical_Depth_055').mean())
result = aod.clip(aoi)