繁体   English   中英

Python API sentinelsat HTTP 状态 500 内部服务器错误:

[英]Python API sentinelsat HTTP status 500 Internal Server Error:

显示错误:“HTTP 状态 500 内部服务器错误:尝试下载离线产品”我使用的代码是

import time
import datetime
from sentinelsat import SentinelAPI, read_geojson, geojson_to_wkt
api = SentinelAPI('*****','******', 'https://scihub.copernicus.eu/dhus')
footprint = geojson_to_wkt(read_geojson('E:\map.geojson'))
products = api.query(footprint, date =('20161001' , '20170425'), platformname ='Sentinel-1', 
producttype = 'GRD')
api.download_all(products)

不幸的是,这个错误不是由于sentinelsat api 造成的。

正如错误所说,你是

尝试下载离线产品。

您可以下载在线和非离线的哨兵产品。

在线的 Sentinel 产品是过去 1 年的产品,您正在尝试下载较旧的产品。

如果您想要一个较旧的产品 go 来哨兵scihub查找产品,请求它,它将在稍后上线(可能需要 1 天或更长时间,或者如果幸运的话,几个小时后)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM