微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

从哥白尼下载Sentinel SL_1_LST图像

如何解决从哥白尼下载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 举报,一经查实,本站将立刻删除。