Loading Sentinel-2 data into Google Earth Engine

Getting started with using GEE for analysing earth observation data doesn’t have to be painful! In this video I’ll show you how to load and visualise Sentinel-2 data based on date, location, and cloud coverage. This is a follow on from my video showing how to load Landsat data - see The code that I’m using in the video is below // Let’s define the image collection we are working with by writing this command. // We are creating a new variable ’image’ that will come from the L8 collection we have imported var image = (S2 // We will then include a filter to get only images in the date range we are interested in .filterDate(“2019-07-01“, “2021-10-30“) // Next we include a geographic filter to narrow the search to images at the location of our ROI point .filterBounds(ROI) // Next we will also sort the collection by a metadata property, in our case cloud cover is a
Back to Top