Universal Code Hub Upgrade
Script Library
BasicUrbanAdvanced

Urban Heat Island Assessment

Assess Urban Heat Island effect using MODIS LST and land cover.

Pipeline (1 steps)
  1. Assess Urban Heat Island effect using MODIS LST and land cover.
Datasets
  • modis-lst-8day
  • dynamic-world
AOI modes
adminasset
Simulated previewPaste the script in Earth Engine for live results
Outputs the script produces
map Map layers
map Histogram
map Zonal stats table
map Export GeoTIFF
map Heatmap
Open Code Editor ↗
uhi-assessment.js · 7 lines
// Urban Heat Island Assessment
var lst = ee.ImageCollection('MODIS/061/MOD11A2')
  .filterDate(startDate, endDate).filterBounds(aoi)
  .select('LST_Day_1km').mean().multiply(0.02).subtract(273.15);
var dw = ee.ImageCollection('GOOGLE/DYNAMICWORLD/V1')
  .filterDate(startDate, endDate).filterBounds(aoi).mode();
var result = lst.clip(aoi);
#UHI#heat island#LST#urban