GEE CODE EDITOR 下载哨兵NDVI影像
时间: 2023-11-22 22:40:02 浏览: 237
回答:
要下载哨兵NDVI影像,您可以使用Google Earth Engine(GEE)的代码编辑器来完成。下面是一个简单的代码示例,演示如何下载哨兵影像中的NDVI数据:
```javascript
// 选择区域
var roi = ee.Geometry.Rectangle([xmin, ymin, xmax, ymax]);
// 选择日期范围
var startDate = ee.Date('yyyy-mm-dd');
var endDate = ee.Date('yyyy-mm-dd');
// 选择哨兵影像集
var sentinelCollection = ee.ImageCollection('COPERNICUS/S2')
.filterBounds(roi)
.filterDate(startDate, endDate)
.select('B4', 'B8');
// 计算NDVI
var calculateNDVI = function(image) {
var ndvi = image.normalizedDifference(['B8', 'B4']).rename('NDVI');
return image.addBands(ndvi);
};
// 对图像集中的每个影像应用NDVI计算
var sentinelWithNDVI = sentinelCollection.map(calculateNDVI);
// 下载影像
var downloadOptions = {
name: 'sentinel_with_ndvi',
scale: 10,
region: roi
};
Export.image.toDrive({
image: sentinelWithNDVI,
description: 'sentinel_with_ndvi',
scale: 10,
region: roi,
maxPixels: 1e13
});
```
请确保将代码编辑器中的 `xmin`、`ymin`、`xmax` 和 `ymax` 替换为您感兴趣区域的经纬度坐标范围。选择合适的 `startDate` 和 `endDate` 来定义想要下载的时间范围。最后,执行代码以将NDVI影像下载到Google Drive中。
阅读全文