I need to download Carbon monoxide concentrations daily data provided by sentinel 5p but the data consists of gaps for my region of interest
var dataset1 = ee.ImageCollection("COPERNICUS/S5P/NRTI/L3_CO")
.filterDate('2021-03-01', '2021-03-31')
.filterBounds(roi)
.select("CO_column_number_density")
print (dataset1)
var img = dataset1.filterMetadata('TIME_REFERENCE_DAYS_SINCE_1950', 'equals',25992 )
.mean();
Map.addLayer(img)
This is the code used. I am trying to average the data available for a single day but there are gaps. if the data has to be averaged over more than one day, how to do it? how to create a loop that iterates over the dates and computes the average?