I would like to loop through a selection of GOES images to make exporting quicker.
var collection = ee.ImageCollection('NOAA/GOES/16/FDCC').filterDate('2021-08-05', '2021-08-06').map(clipToCol);
var listOfImages = collection.toList(collection.size());
//this is where you change your image you want to select
var image = ee.Image(listOfImages.get(160));
This is the current section of script I am using. There is a total of 0-287 images per day.
But I am not sure how to convert this to loop through the listOfImages
.