【发布时间】:2021-07-21 03:50:55
【问题描述】:
我需要从 ee 集合中下载单个或多个图像。 (最好是多个,但我可以将单个图像代码放在一个循环中)。
我的主要问题 --> 使用缩放 9 下载特定位置(纬度:“”,长:“”)从开始日期到结束日期的每月图像
我正在尝试从SKYSAT/GEN-A/PUBLIC/ORTHO/RGB 下载历史简单卫星数据。这给出了一个类似 -->
我正在python 处理这个问题。所以这段代码会给我集合,但我不能下载整个集合,我需要从中选择一个图像。
import ee
# Load a Landsat 8 ImageCollection for a single path-row.
collection = (ee.ImageCollection('SKYSAT/GEN-A/PUBLIC/ORTHO/RGB').filterDate('2016-03-01', '2018-03-01'))
#pp.pprint('Collection: '+str(collection.getInfo())+'\n')
# Get the number of images.
count = collection.size()
print('Count: ', str(count.getInfo()))
image = ee.Image(collection.sort('CLOUD_COVER').first())
这里的image 包含<ee.image.Image at 0x23d6cf5dc70> 属性,但我不知道如何下载它。
另外,我如何使用缩放 19 指定我想要的特定位置(纬度、经度)。
谢谢你
【问题讨论】:
标签: python google-earth-engine satellite