0

我在从https://search.asf.alaska.edu批量下载 Alos Palsar DEM 时遇到问题 当我运行包含我的下载的 script.py 时出现错误:

Microsoft Windows [version 10.0.18362.1082]
(c) 2019 Microsoft Corporation. Tous droits réservés.

C:\Users\Name>cd Downloads

C:\Users\Name\Downloads>python download-all-2020-10-01_05-44-48.py
No existing URS cookie found, please enter Earthdata username & password:
(Credentials will not be stored, saved or logged anywhere)
 > Cookiejar is bunk: None
Username: username
Password (will not be displayed):

IMPORTANT: There was a problem communicating with URS, unable to obtain cookie.
Try cookie generation later.

C:\Users\Name\Downloads>

有谁知道如何解决它?关于这个问题的文献似乎很少见。

谢谢

4

1 回答 1

0

我有同样的错误。所以,我找到了这个答案。在de之前添加这一行,工作

ssl._create_default_https_context = ssl._create_unverified_context

此外,您需要将在https://search.asf.alaska.edu生成的 .csv 文件放在最后。

python download-all-2020-10-01_05-44-48.py path/csv.csv
于 2020-11-18T19:53:24.200 回答