请我想知道从Google Earth Engine的图像集中导出图像带的最佳方法,以便在本地计算机上使用。图像集合包含21个元素,我希望将其导出为单个图像带或所有21个元素的图像合成。请问我该如何处理。下面是我写的代码摘录。谢谢
var S1_1 = ee.ImageCollection('COPERNICUS/S1_GRD')
.filterBounds(SA)
.filterDate('2016-10-01', '2017-06-01')
.filterMetadata('transmitterReceiverPolarisation', 'equals', ['VV', 'VH'])
.filterMetadata('resolution_meters', 'equals' , 10);