从哥白尼下载Sentinel SL_1_LST图像

问题描述

我已经完成了使用python从Sentinel-3 Copernicus下载数据的脚本。它非常适合producttype =' SL_1_WST ___ '或' SL_1_RBT ___ '。这是海表温度,但我也对陆面温度 SL_1_LST ___ 感兴趣。我共享代码:

from sentinelsat.sentinel import SentinelAPI,read_geojson,geojson_to_wkt
import os

credentials = open('E:/Download-Sentinel3/credentials.txt','r')
cred_tmp = credentials.read().splitlines()
username = cred_tmp[0]
password = cred_tmp[1]

footprint = geojson_to_wkt(read_geojson('E:/Download-Sentinel3/coordenadas_galicia.geojson'))

url_coda = 'https://coda.eumetsat.int/'
url_codarep = 'https://codarep.eumetsat.int/'

api = SentinelAPI(username,password,url_coda)
response = api.query(footprint,producttype='SL_1_LST___')
api.download_all(response,directory_path='E:/Download-Sentinel3/data',checksum=True)

coordenadas_galicia.geojson 中,它只是我感兴趣的范围内的协调对象。有人知道为什么它可以与产品类型一起使用,而与其他产品类型无关吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...