You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem when I am downloading the UAVSAR images for 2017. There are 27 pair images but It kind of gets stuck after the third pair displaying multiple error messages with collection.collection_to_tiffs().
I am using the following script. Is there a way to skip this pair and continue download with other images?
There is a problem when I am downloading the UAVSAR images for 2017. There are 27 pair images but It kind of gets stuck after the third pair displaying multiple error messages with collection.collection_to_tiffs().
I am using the following script. Is there a way to skip this pair and continue download with other images?
from uavsar_pytools import UavsarCollection
Collection name from the campaign list
col_name = 'Grand Mesa, CO'
Working directory to save files into
work_d = '/srv/local/data/UAVSAR/'
Optional dates to check between
dates = ('2016-10-01','2017-03-01')
collection = UavsarCollection(collection = col_name, work_dir = work_d, dates = dates, inc = True)
Optional keywords: to keep binary files use
clean = False
, to download incidence angleswith each image use
inc = True
, for only certain pols usepols = ['VV','HV']
.See docstring of class for full list.
collection.collection_to_tiffs()
The text was updated successfully, but these errors were encountered: