-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Determine path forward for Sentinel-1 processing #305
Comments
For the SLC pair above, here are the associated burst pairs:
|
The easiest way to get all the bursts for a particular SLC will be to use >>> import asf_search as asf
>>> results = asf.product_search('S1A_IW_SLC__1SSH_20170221T204710_20170221T204737_015387_0193F6_AB07-SLC')
>>> results[0].properties['groupID']
'S1A_IWSH_0227_0232_015387_090' which can then be applied to a burst search in vertex using the groupID filter, or, using doing a burst search in results = asf.search(
dataset='SLC-BURST',
groupID='S1A_IWSH_0227_0232_015387_090'
) |
Note, cost target is to be able to process all 6 and 12 day pairs for every land ice intersecting burst from 2023-01-01 to "today" (whatever day we submit the pairs for processing) with $30K. |
~Right now, processing Sentinel-1 ITS_LIVE velocity granules costs ~$0.20 / pair whereas Optical products are generally $0.01 or less. Accordingly, e have only processed 6 and 12 day pairs through Dec. 31, 2022, and thus have an almost 2 year gap in the data record right now, and no ability to do low-latency production.
Ideally, we could get S1 processing down to ~$0.05/pair for V2, fill the product record, and turn on low latency production.
To do that, we need to determine which processing option is the best path forward. There are a couple options:
Adapt the S1 correction workflow to process SLC pairsAdapt the S1 correction workflow to process SLC BURST pairsAdapt the S1 correction workflow to process GRD pairsMigrate the ISCE2 workflow to ISCE3 to process SLC pairsStick with what we've got and deal with it.Can start with this pair:
References:
The text was updated successfully, but these errors were encountered: