从 GEE 导出图像集合中的图像

Exporting images in an image collection from GEE

我想知道从 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);

您可能想要查看 this answer,它向您展示了如何将图像集转换为单波段图像。从那里,使用 Export.image.toDrive().