在GEE平台上下载去云哨兵2年均遥感地图的代码
时间: 2023-12-30 19:03:16 浏览: 86
基于GEE云平台实现NDWI水体提取并计算面积覆盖代码.txt
5星 · 资源好评率100%
好的,以下是在GEE平台上下载去云哨兵2年均遥感地图的代码:
```javascript
// 定义区域
var region = ee.Geometry.Rectangle([xmin, ymin, xmax, ymax]);
// 定义时间段
var startYear = 2019;
var endYear = 2020;
// 导入哨兵影像
var sentinelCollection = ee.ImageCollection('COPERNICUS/S2_SR')
.filterBounds(region)
.filterDate(startYear + '-01-01', endYear + '-12-31')
.map(function(image) {
// 应用云掩码
var cloudMask = ee.Algorithms.Landsat.simpleCloudScore(image).select('cloud').lte(20);
var maskedImage = image.updateMask(cloudMask);
// 计算 NDVI
var ndvi = maskedImage.normalizedDifference(['B8', 'B4']).rename('NDVI');
// 将 NDVI 添加到影像中
return maskedImage.addBands(ndvi);
});
// 计算两年均值
var meanImage = sentinelCollection.mean();
// 下载影像
Export.image.toDrive({
image: meanImage,
description: 'Sentinel2_mean_cloudfree',
scale: 10,
region: region
});
```
请将 xmin、ymin、xmax、ymax 替换为你需要的矩形区域的经纬度坐标。该代码会应用云掩码来去除影像中的云,并计算两年均值。同时,你需要在GEE平台上进行身份验证并创建一个新任务,该任务将在您的Google Drive中创建一个名为 "Sentinel2_mean_cloudfree" 的文件夹,并将去云后的两年均值影像保存在其中。
阅读全文