We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Module_2_HydroSAR, there appears to be an edge case in which not all files are downloaded from hype/
''' product_zip = job.download_files()[0] '''
returns a list index out of range.
When the following code runs, we see that there is a warning that the job is still pending, so download will be skipped.
''' job.download_files() '''
Thus, when we try to index the files we can't get the first file because there are none. We should work with Hyp3 team to find a solution here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Module_2_HydroSAR, there appears to be an edge case in which not all files are downloaded from hype/
'''
product_zip = job.download_files()[0]
'''
returns a list index out of range.
When the following code runs, we see that there is a warning that the job is still pending, so download will be skipped.
'''
job.download_files()
'''
Thus, when we try to index the files we can't get the first file because there are none. We should work with Hyp3 team to find a solution here.
The text was updated successfully, but these errors were encountered: