Topo correction

hello everyone
May you please assist me to address the problems associated with the hills shadows in GEE, as shown in the screenshot attached. it brings a lot of complication.

AN IMAGE USED
// Filter to 2019 Landsat 8 images over banglore.
var L8 = ee.ImageCollection(‘LANDSAT/LC08/C02/T1_L2’).select(‘SR_B[2-7]’)
.filter(ee.Filter.date(‘2022-05-01’, ‘2022-08-31’))
.filterMetadata(“CLOUD_COVER”, “less_than”, 0.5)
.filter(ee.Filter.bounds(ROI))
//.map(maskL8sr)
.median()
.clip(ROI);

// Visualization parameter.
var rgbVis = {min:7557.04, max:13030.96, bands:[‘SR_B4’, ‘SR_B3’, ‘SR_B2’]}
Map.centerObject(ROI, 10);
Map.addLayer(L8, rgbVis, ‘2023’, false)
print(‘Image details: 2023’,L8);

I think you might be in the wrong place. You are likely better off looking for help somewhere related to Google Earth Engine.

1 Like