generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 9
Add SAR swath information #18
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
64712ae
feat: Add SAR swath information
emmanuelmathot 9ded21e
links
emmanuelmathot d1dc6c9
more examples
emmanuelmathot 4ffe085
Add `sar:relative_burst` field for item scope
emmanuelmathot 78bbf8c
simplified swath descriptiomn
emmanuelmathot 03b17be
chore: Update SAR swath information in JSON example
emmanuelmathot fd1f3f6
chore: Remove settings file
emmanuelmathot 388e768
updated changelog
emmanuelmathot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"jira-plugin.workingProject": "" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
{ | ||
"type": "Feature", | ||
"stac_version": "1.0.0", | ||
"stac_extensions": [ | ||
"https://stac-extensions.github.io/sar/v1.0.0/schema.json", | ||
"https://stac-extensions.github.io/sat/v1.0.0/schema.json", | ||
"https://stac-extensions.github.io/processing/v1.2.0/schema.json", | ||
"https://stac-extensions.github.io/product/v0.1.0/schema.json" | ||
], | ||
"id": "S1A_S4_GRDH_1SDV_20240531T073124_20240531T073144_054112_06947D_072C", | ||
"collection": "SENTINEL-1", | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [ | ||
[ | ||
[ | ||
-24.488338, | ||
14.122218 | ||
], | ||
[ | ||
-24.251352, | ||
15.285328 | ||
], | ||
[ | ||
-24.985012, | ||
15.424737 | ||
], | ||
[ | ||
-25.217945, | ||
14.262449 | ||
], | ||
[ | ||
-24.488338, | ||
14.122218 | ||
] | ||
] | ||
] | ||
}, | ||
"bbox": [ | ||
-25.217945, | ||
14.122218, | ||
-24.251352, | ||
15.424737 | ||
], | ||
"properties": { | ||
"sat:absolute_orbit": 54112, | ||
"sat:orbit_state": "descending", | ||
"processing:datetime": "2024-05-31T11:25:04.541000+00:00", | ||
"sar:instrument_mode": "SM", | ||
"processing:level": "L1", | ||
"sar:beam_ids": [ | ||
"S6" | ||
emmanuelmathot marked this conversation as resolved.
Show resolved
Hide resolved
|
||
], | ||
"processing:facility": "Production Service-SERCO", | ||
"processing:version": "003.71", | ||
"constellation": "sentinel-1", | ||
"Instruments": [ | ||
"SAR" | ||
], | ||
"sat:relative_orbit": 140, | ||
"sar:polarizations": [ | ||
"VV", | ||
"VH" | ||
], | ||
"platforn": "sentinel-1a", | ||
"datetime": "2024-05-31T07:31:24.961Z", | ||
"end_datetime": "2024-05-31T07:31:44.204Z", | ||
"start_datetime": "2024-05-31T07:31:24.961Z", | ||
"product:type": "S4_GRDH_1S-COG", | ||
"sar:frequency_band": "C" | ||
}, | ||
"assets": { | ||
"vh": { | ||
"href": "https://example.com/collections/sentinel-1/items/S1A_S4_GRDH_1SDV_20240531T073124_20240531T073144_054112_06947D_072C/assets/s1a-s4-grd-vh-20240531t073124-20240531t073144-054112-06947d-002-cog.tiff", | ||
"type": "image/tiff; application=geotiff; profile=cloud-optimized", | ||
"title": "VH Band", | ||
"sar:polarizations": [ | ||
"VH" | ||
] | ||
}, | ||
"vv": { | ||
"href": "https://example.com/collections/sentinel-1/items/S1A_S4_GRDH_1SDV_20240531T073124_20240531T073144_054112_06947D_072C/assets/s1a-s4-grd-vv-20240531t073124-20240531t073144-054112-06947d-001-cog.tiff", | ||
"type": "image/tiff; application=geotiff; profile=cloud-optimized", | ||
"title": "VV Band", | ||
"sar:polarizations": [ | ||
"VV" | ||
] | ||
}, | ||
"thumbnail": { | ||
"href": "https://example.com/collections/sentinel-1/items/S1A_S4_GRDH_1SDV_20240531T073124_20240531T073144_054112_06947D_072C/assets/s1a-s4-grd-thumbnail-20240531t073124-20240531t073144-054112-06947d-072c.png", | ||
"type": "image/png", | ||
"title": "Thumbnail" | ||
} | ||
}, | ||
"links": [ | ||
{ | ||
"rel": "root", | ||
"href": "../../catalog.json", | ||
"type": "application/json" | ||
}, | ||
{ | ||
"rel": "collection", | ||
"href": "../collection.json", | ||
"type": "application/json" | ||
} | ||
] | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove