-
Notifications
You must be signed in to change notification settings - Fork 9
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
Use of BurstIDs from ESA S1 Burst Database #66
Comments
Agreed, providing SLC + swath + burst index is cumbersome. It's difficult to know where a particular burst is spatially located within the SLC, and the burst index for a particular location may not be consistent from SLC to SLC. Our hope is to abstract the SLC away and deal with bursts directly. ASF has already built an API to download the data for a particular burst from a particular SLC. Our ASF also intends to advertise these individual SLC burst products in our DAAC archive and make them accessible via Vertex, CMR, and Earthdata Search. You can explore our initial non-production efforts in Earthdata Search UAT or via the CMR UAT Search API. With the ability to directly search for individual bursts, we plan to update the interface for
becomes:
|
@asjohnston-asf thanks for this roadmap, it sounds nicely designed and it looks like things are already moving forward for v0.4.0. Can you comment on how bursts are currently being indexed and the timeline for adding them? For example, my search for a point in Seattle currently only turns up 6 bursts: ![]() |
@scottyhq I'm not in a position to make commitments, but my best guess is that we'll begin indexing bursts in production for new SLCs as they arrive sometime this summer, and that we'll index bursts for the back-catalog of SLCs sometime in the next year. The bursts currently indexed in CMR UAT are just to support development work. The bulk are from SLCs acquired over a few weeks in May 2023, so I've only been seeing 1-4 acquisitions available for any given area. The change we have in-progress for |
Thanks for this information @asjohnston-asf , if the timeline is a year for the back-catalog then it would be nice to retain an option for the existing syntax. So far we've just started experimenting with this locally, but have in mind time series analysis for different areas running via HYP3 (possibly setting up our own deployment). This is the workflow we're using to calculate the relative burst numbering in any SLC based on TANX, seems to work so far but not extensively tested! https://nbviewer.org/github/relativeorbit/hyp3bursts/blob/main/workflow-ascending.ipynb |
@scottyhq do you have specific temporal/spatial ranges of data you'd like to explore in the short term? ASF could weigh the cost of indexing those bursts vs the cost of maintaining the second interface. I suspect we'll be motivated to have a complete temporal coverage for at least some small area of interest available sooner than later. |
FYI, separately, the OPERA project at JPL has an implementation of computing burst IDs for IPF <3.4 SLCs at https://github.com/opera-adt/s1-reader/blob/main/src/s1reader/s1_burst_id.py . There's discussion at isce-framework/s1-reader#117 that the metadata from ESA is occasionally inaccurate causing the computed burst ID to be incorrect, however. ASF's seen similar occasional metadata issues with our burst extractor API. |
Sure, here are two points of interest (-122.299, 47.657) and (-121.767, 44.133), and the full temporal range, but if it helps to restrict we could focus on 2019-2023.
Thanks for the linked info, good to know! |
ASF made a provisional release of S1 burst products available in production last Friday! They're accessible through:
The collection currently includes:
Thanks to @benbart for helping add all of the historical data! We likely won't officially integrate Eager to hear any feedback you might have! |
Just noting that >=v0.4 uses preprocessed ASF bursts (https://github.com/ASFHyP3/hyp3-isce2/releases/tag/v0.4.0) that almost match ESA naming scheme. Just the track number must be looked up in as 'Full Burst Id' in the metadata:
|
Background
If generating many burst interferograms you run into the case where it's not clear what burst-number to use if the framing is different for different granules.
IPF>=3.4 has standard burstIDs in the metadata for every granule which would be nice to use
https://sentinels.copernicus.eu/web/sentinel/-/publication-of-brust-id-maps-for-copernicus-sentinel-1
For the Iran Earthquake example in the readme, here is a quick plot of all the ASF S1 frames and the burst

64_IW2_136231
that is processedDescribe the solution you'd like
I'm thinking as alternative to setting
--reference-burst-number
and--secondary-burst-number
you could have--burst-id IW2_136231
and the software would figure out which burst within the SLC to extractAdditional context
For IPF>=3.4 the burst_ids should be in the metadata, but for IPF<3.4 this would require an additional lookup maybe based on the burstid database polygons (available via the above link). short example below for reading the burst_id info
The text was updated successfully, but these errors were encountered: