Exercise 3.1: Filter
Requisitos de finalización
Ver
The collection contains all imagery ever collected by the sensor. The entire collections are not very useful. Most applications require a subset of the images. We use filters to select the appropriate images. There are many
types of filter functions, look at ee.Filter...
module to see all available filters. Select a filter and then run the filter()
function with the filter parameters.
We will learn about 3 main types of filtering techniques
- Filter by metadata: You can apply a filter on the image metadata using filters such as
ee.Filter.eq()
,ee.Filter.lt()
etc. You can filter by PATH/ROW values, Orbit number, Cloud cover etc. - Filter by date: You can select images in a particular date range using filters such as
ee.Filter.date()
. - Filter by location: You can select the subset of images with a bounding box, location or geometry using the
ee.Filter.bounds()
. You can also use the drawing tools to draw a geometry for filtering.
After applying the filters, you can use the size()
function to check how many images match the filters.
The code is available in this repository under Module3/Exercise1
Última modificación: sábado, 10 de julio de 2021, 13:24