有兴趣的同学可以see this: https://geemap.org/notebooks/118_download_image/
直接上代码,以MCD12Q1的IGBP Land Cover为例
CN = geemap.shp_to_ee("D:/Onedrive/data/china.shp")
LUCC = ee.ImageCollection('MODIS/006/MCD12Q1').select('LC_Type1').filterDate('2019-01-01', '2020-01-01').first().clip(CN).reproject(crs='EPSG:4326', scale=5400)
geemap.download_ee_image(LUCC, "LUCC.tif", scale=5400)
下载的数据提供了进度条,结果如图:

see the data we download from ArcGIS

顺便比较了传统GEE python的下载速度
顺便比较了传统GEE python的下载速度
