I am very new to Google Earth Engine.
I want to create image collections with specific images that I have pre-selected. I think that maybe I should filter by metadata properties - either date
or product_ID
.
It's not working and I need to figure out how to do it for many images.
A basic example of what I have tried:
var l8 = ee.ImageCollection('LANDSAT/LC08/C01/T1_SR').filterMetadata(
'LANDSAT_ID',
'equals',
LT05_L1TP_225059_19840826_20170220_01_T1
);
or perhaps using system:time_start
to filter by date in some way.