Is it possible to specify that I want to request time series from a collection rather than temporal averages? Running something like
test = ee_grab(data = ee_data_collection(datasetID = "COPERNICUS/S2",
spatialReducer = 'mean',
timeStart = '2019-05-01',
timeEnd = '2019-07-30',
resolution = 10),
targetArea = 'roi.shp')
always returns the average over the entire time period (presumably because temporalReducer = "mean" by default). How do I average only in space but not in time? I.e. I want to average over my regions of interest for each image but return the time series of that for the specified period.
Is it possible to specify that I want to request time series from a collection rather than temporal averages? Running something like
always returns the average over the entire time period (presumably because
temporalReducer = "mean"by default). How do I average only in space but not in time? I.e. I want to average over my regions of interest for each image but return the time series of that for the specified period.