GEE export data

个人笔记,仅供参考
Export.image.toDrive({image: ImageData.select(['B5']),description: "S2Img",region: roi, // roi.geometry() if roi is a feature or featureCollection scale: 30,crs:'EPSG:32650',maxPixels: 1e14,folder:'S2ImgCollectionExport'});
【GEE export data】一般而言,为1e14,为了避免影像畸变crs,设置需要注意:
1,首先需要查找影像所在的分区,
找到分区后,以北京为例子:UTM 50n
2,查找对应的EPSG.

GEE export data

文章插图
找到对应的EPSG:“EPSG:32650”
其他参数可以参考API 。