GEE下载月度合成影像
时间: 2023-11-10 19:04:02 浏览: 120
要下载 GEE 的月度合成影像,可以使用以下代码:
```javascript
var collection = ee.ImageCollection('MODIS/006/MOD13A2')
.filterDate('2019-01-01', '2019-12-31')
.select('NDVI')
.map(function(image) {
return image.clip(geometry);
});
var monthlyNDVI = ee.ImageCollection.fromImages(
ee.List.sequence(1, 12).map(function (month) {
var filtered = collection.filter(ee.Filter.calendarRange(month, month, 'month'));
return filtered.mean().set('month', month);
}));
print(monthlyNDVI);
// 下载第一个月的影像
var firstMonthImage = monthlyNDVI.first();
var firstMonthImageVis = {
min: 0.0,
max: 9000.0,
};
Map.addLayer(firstMonthImage, firstMonthImageVis, 'First month image');
Export.image.toDrive({
image: firstMonthImage,
description: 'first_month_image',
scale: 500,
region: geometry
});
```
这段代码会下载 MODIS 的 NDVI 数据集在指定时间范围内的月度合成影像,并输出第一个月的影像并下载到 Google Drive 中。
阅读全文