// Define the coordinates of the point or region of interest var point = ee.Geometry.Point(90.2611485521762, 23.44690280909043); // Define the date range for the year 2012 var startDate = '2012-01-01'; var endDate = '2012-12-31'; // Create a Landsat 7 Collection 2 Tier 1 image collection for the year 2012 var landsatCollection = ee.ImageCollection('LANDSAT/LE07/C02/T1_TOA') .filterBounds(point) .filterDate(startDate, endDate) .filter(ee.Filter.lt('CLOUD_COVER', 10)); // Filter for images with less than 10% cloud cover // Get the median image for the year 2012 var medianImage = landsatCollection.median(); // Center the map to the point of interest Map.centerObject(point, 10); // Add the median image to the map Map.addLayer(medianImage, { bands: ['B3', 'B2', 'B1'], // True color composite (RGB) min: 0, max: 0.3 }, 'Landsat 7 Image (2012, Low Clouds)'); // Pinpoint the coordinates by adding the point to the map Map.addLayer(point, {color: 'red'}, 'Pinpoint Location');