This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define Study Area | |
var ROI = ee.FeatureCollection(geometry1); | |
Map.centerObject(ROI, 8); | |
Map.addLayer(ROI, {}, 'Study Area'); | |
// Function to mask clouds | |
function maskClouds(image) { | |
var cloudBitMask = 1 << 10; // Bit 10 is clouds | |
var cirrusBitMask = 1 << 11; // Bit 11 is cirrus clouds | |
var qa = image.select('QA60'); // QA60 band |