Skip to content
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

Support for BlackSky Global metadata text format #56

Merged
merged 4 commits into from
May 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Stars.Data.Tests/Harvesters/MetadataExtractorsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ private static void RemoveAssetUriTmp(StacItemNode stacItemNode)
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/processing/v1.0.0/schema.json",
"https://stac-extensions.github.io/raster/v1.0.0/schema.json"
],
"type": "Feature",
"id": "BSG-102-20240320-024025-217335171_ortho-pan",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
107.20026032340076,
47.7408500353907
],
[
107.31073894793276,
47.738677702031254
],
[
107.31338802634312,
47.79841769410016
],
[
107.20278300270137,
47.800594553305935
],
[
107.20026032340076,
47.7408500353907
]
]
]
},
"properties": {
"datetime": "2024-03-20T00:00:00Z",
"agency": "BlackSky",
"platform": "global-1",
"constellation": "blacksky-global",
"mission": "blacksky-global",
"instruments": [
"spaceview-24"
],
"sensor_type": "optical",
"spectral_mode": "MS",
"gsd": 1.0,
"title": "BLACKSY GLOBAL-1 GEO MS",
"processing:level": "GEO",
"eo:bands": [
{
"name": "pan",
"common_name": "pan",
"center_wavelength": 0.575,
"full_width_half_max": 0.25
}
],
"providers": [
{
"name": "BlackSky",
"description": "BlackSky Constellation is a commercially owned and operated constellation of 60 high resolution imaging microsatellites developed by BlackSky Global. The constellation aims to provide higher temporal resolution and lower cost Earth imaging, and currently contains 17 operational microsatellites, each with an expected lifetime of 4 years.",
"roles": [
"producer",
"processor",
"licensor"
],
"url": "https://www.blacksky.com"
}
]
},
"bbox": [
107.20026032340076,
47.738677702031254,
107.31338802634312,
47.800594553305935
],
"assets": {
"metadata": {
"type": "application/json",
"roles": [
"metadata"
],
"title": "Metadata file",
"href": "data/BSG-102-20240320-024025-217335171_ortho-pan/BS01N47_769636E107_2567602024032000000000MS03_DG000000001.txt",
"filename": "BS01N47_769636E107_2567602024032000000000MS03_DG000000001.txt",
"file:size": 1963
},
"ORTHO_PAN": {
"type": "image/tiff; application=geotiff",
"roles": [
"data"
],
"title": "PAN image",
"href": "data/BSG-102-20240320-024025-217335171_ortho-pan/BS01N47_769636E107_2567602024032000000000MS03_GG000000001.tif",
"filename": "BS01N47_769636E107_2567602024032000000000MS03_GG000000001.tif",
"file:size": 0,
"gsd": 1.0,
"eo:bands": [
{
"name": "pan",
"common_name": "pan",
"center_wavelength": 0.575,
"full_width_half_max": 0.25
}
],
"raster:bands": [
{
"data_type": "uint16",
"bits_per_sample": 12
}
]
}
},
"links": []
}
Loading
Loading