WEEK6
- TANG HAORAN

- 2024年3月12日
- 讀畢需時 1 分鐘
深圳10米分辨率树高
var canopy_height = ee.Image('users/nlang/ETH_GlobalCanopyHeight_2020_10m_v1')
.clip(table);
print('canopy_height', canopy_height);
Map.addLayer(canopy_height, {}, 'Canopy Height Image');
var exportParams = {
image: canopy_height,
description: 'canopy_height_export', // 导出文件的描述
folder: 'gee_exports', // 导出文件的目标文件夹
fileNamePrefix: 'canopy_height', // 导出文件名的前缀
scale: 10, // 导出图像的分辨率
region: table.geometry() // 导出的区域
};
// 执行导出
Export.image.toDrive(exportParams);

留言