Hello,
I'm having the same problem when I write: wget -O - 'https://oceandata.sci.gsfc.nasa.gov/cgi/getfile/requested_files_1.tar?h=ocdist301&p=/data1/e040135b90e8436b/requested_files' | wget --load-cookies ~/.urs_cookies --save-cookies ~/.urs_cookies --auth-no-challenge=on --no-check-certificate --content-disposition -i -
In my case, the order will expire on September 2. I also tried with Python, importing wget and tarfile:
import wget
import tarfile
output_directory = '/Users/laura/Desktop'
url = 'https://oceandata.sci.gsfc.nasa.gov/cgi/getfile/requested_files_1.tar?h=ocdist301&p=/data1/e040135b90e8436b/requested_files'
file = wget.download(url,output_directory)
tar = tarfile.open('/Users/laura/Desktop/requested_files_1.tar','r')
I could dowload a requested_files_1.tar file with wget.download. However, the file is corrupted, I couldnt't open it. I did so many tests, I even tried obdaac_download without success. I'm out of ideas.
Thank you
Laura
download using wget from http manifest
-
- Subject Matter Expert
- Posts: 337
- Joined: Fri Feb 05, 2021 9:17 am America/New_York
Re: download using wget from http manifest
See if the tar file you downloaded is actually an HTML file. If so, open it in a browser. There may be a clue to the download failure in there.
Tommy
Tommy