Google Earth Engine 批量導出+插件
批量導出image collection
參考的是大佬的文檔?Chapter 24: Image Collection Export — Remote Sensing with Google Earth Engine (calekochenour.github.io),GitHub庫在calekochenour/remote-sensing-textbook。阿B好像貼不了鏈接,可以直接根據(jù)標題去搜,大佬的教程寫的很好

需要import 代碼
var batch = require('users/fitoprincipe/geetools:batch');
導出設置根據(jù)需求修改
// Set export folder (relative to Google Drive root folder)
var output_folder = 'gee-export';
// Export collection image to Drive
batch.Download.ImageCollection.toDrive(
? rmnp_collection,?output_folder,
? {name: '{id}', // {id}, {system_date} and all other properties (e.g., {WRS_PATH})
? ? // dateFormat: 'yyyy-MM-dd', // Default
? ? scale: 30,
? ? maxPixels: 1e13,
? ? region: colorado_boundary, // rmnp_boundary,
? ? type: 'int16' // 'float', 'byte', 'int', 'double', 'long', 'short', 'int8',
? ? ? ? ? ? ? ? ? // 'int16', 'int32', 'int64', 'uint8', 'uint16', 'uint32'
? });
print("Completed script. Tasks are available to run.");
然后會出現(xiàn)大量需要自己點擊的RUN

可以使用插件,完成自動下載
插件使用的是chrome(edge可以從chrome遷移),名字叫做open earth engine extension

添加以后code editor中的tasks里就會出現(xiàn)RUN ALL選項
