Good day,
Any suggestions on how one can approach the 'masked' gaps in monthly MODIS data accessed through GEE?
var monthly_sum_MODIS = ee.List.sequence(0, 1*179).map(function(n){
var start6 = ee.Date('2002-01-01').advance(n,'month');
var end6 = start6.advance(1,'month');
return ee.ImageCollection('MODIS/006/MOD16A2')
.filterBounds(roi)
.filterDate(start6,end6)
.map(function(image){return image.clip(roi)})
.sum().multiply(0.1) //correction factor
.select('ET')
.set('system:time_start',start6.millis());
});
//
var collection_ET = ee.ImageCollection(monthly_sum_MODIS)
.select('ET');