Tuesday 19 March 2019

modis - Image Collection Statistics in Google Earth Engine?


How can I extarct mean of each image collection in google earth engine? for example for this code:


var modis = ee.ImageCollection("MODIS/006/MOD13Q1")
.filterBounds(geometry)

.filterDate("2000-01-01","2001-01-01")
.select("NDVI");

print(modis)

var mod13 = modis.map(function(img){
return img.multiply(0.0001)
.copyProperties(img,['system:time_start','system:time_end']);
});


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...