Skip to content

Commit 855706c

Browse files
author
pcoma55
committed
update to data-vis for umbra-sar
1 parent 4590220 commit 855706c

File tree

1 file changed

+183
-0
lines changed

1 file changed

+183
-0
lines changed

articles/planetary-computer/data-visualization-samples.md

Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,4 +683,187 @@ The tile settings configuration defines how data is tiled and displayed at diffe
683683
"maxItemsPerTile": 35,
684684
"defaultLocation": null
685685
}
686+
```
687+
688+
689+
# Umbra SAR Imagery Collection Configuration
690+
691+
[Collection description to be added here]
692+
693+
[ ![Screenshot of Umbra SAR Imagery data visualization](media/umbra-sar-imagery.png) ](media/umbra-sar-imagery.png#lightbox)
694+
695+
[Description of data source and link to where to get the data]
696+
697+
## Configuration details
698+
699+
# [STAC Collection](#tab/stac)
700+
701+
## STAC Collection configuration
702+
703+
The STAC Collection configuration defines the core metadata for this collection.
704+
705+
```json
706+
{
707+
"id": "umbra-sar",
708+
"type": "Collection",
709+
"links": [
710+
{
711+
"rel": "items",
712+
"type": "application/geo+json",
713+
"href": "https://{geocatalog_id}/stac/collections/umbra-sar/items"
714+
},
715+
{
716+
"rel": "parent",
717+
"type": "application/json",
718+
"href": "https://{geocatalog_id}/stac/"
719+
},
720+
{
721+
"rel": "root",
722+
"type": "application/json",
723+
"href": "https://{geocatalog_id}/stac/"
724+
},
725+
{
726+
"rel": "self",
727+
"type": "application/json",
728+
"href": "https://{geocatalog_id}/stac/collections/umbra-sar"
729+
}
730+
],
731+
"title": "Umbra SAR Imagery",
732+
"assets": {
733+
"thumbnail": {
734+
"href": "https://{storage_account}.blob.core.windows.net/{blob_container}/collection-assets/thumbnail/blob",
735+
"type": "image/png",
736+
"roles": [
737+
"thumbnail"
738+
],
739+
"title": "umbra-sar thumbnail"
740+
}
741+
},
742+
"extent": {
743+
"spatial": {
744+
"bbox": [
745+
[
746+
-180,
747+
-90,
748+
180,
749+
90
750+
]
751+
]
752+
},
753+
"temporal": {
754+
"interval": [
755+
[
756+
"2018-01-01T00:00:00Z",
757+
null
758+
]
759+
]
760+
}
761+
},
762+
"license": "CC-BY-4.0",
763+
"keywords": [
764+
"Umbra",
765+
"X-Band",
766+
"SAR",
767+
"RTC"
768+
],
769+
"providers": [
770+
{
771+
"url": "https://umbra.space/",
772+
"name": "Umbra",
773+
"roles": [
774+
"processor"
775+
]
776+
},
777+
{
778+
"url": "https://planetarycomputer.microsoft.com",
779+
"name": "Microsoft",
780+
"roles": [
781+
"host"
782+
]
783+
}
784+
],
785+
"description": "Umbra satellites offer the highest commercially available SAR imagery, surpassing 25 cm resolution. Capable of capturing images day or night, through clouds, smoke, and rain, our technology enables all-weather monitoring.",
786+
"item_assets": {
787+
"GEC": {
788+
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
789+
"roles": [
790+
"data"
791+
],
792+
"title": "VV: vertical transmit, vertical receive",
793+
"description": "Terrain-corrected gamma naught values of signal transmitted with vertical polarization and received with vertical polarization with radiometric terrain correction applied.",
794+
"raster:bands": [
795+
{
796+
"nodata": -32768,
797+
"data_type": "uint8",
798+
"spatial_resolution": 0.4770254115
799+
}
800+
]
801+
}
802+
},
803+
"stac_version": "1.0.0",
804+
"msft:_created": "2024-04-05T17:55:17.930092Z",
805+
"msft:_updated": "2024-04-05T18:30:16.587869Z",
806+
"stac_extensions": [
807+
"https://{storage_account}.blob.core.windows.net/{blob_container}/json-schemas/json-schemas/msft/v0.1/schema.json"
808+
],
809+
"msft:short_description": "Umbra Synthetic Aperture Radar (SAR) Imagery"
810+
}
811+
```
812+
813+
# [Mosaics](#tab/mosaics)
814+
815+
## Mosaics Configuration
816+
817+
The mosaics configuration defines how images are combined when displayed in the Explorer.
818+
819+
```json
820+
[
821+
{
822+
"id": "default",
823+
"name": "Default",
824+
"description": "",
825+
"cql": []
826+
}
827+
]
828+
```
829+
830+
# [Render Options](#tab/render-options)
831+
832+
## Render Options Configuration
833+
834+
The render options configuration defines how imagery is displayed in the Explorer.
835+
836+
```json
837+
[
838+
{
839+
"id": "vv-polarization",
840+
"name": "VV polarization",
841+
"description": "VV asset scaled to `0,.20`.",
842+
"type": "raster-tile",
843+
"options": "assets=GEC&rescale=0,255&colormap_name=gray",
844+
"minZoom": 8,
845+
"conditions": [
846+
{
847+
"property": "sar:polarizations",
848+
"value": [
849+
"VV"
850+
]
851+
}
852+
]
853+
}
854+
]
855+
```
856+
857+
# [Tile Settings](#tab/tile-settings)
858+
859+
## Tile Settings Configuration
860+
861+
The tile settings configuration defines how data is tiled and displayed at different zoom levels.
862+
863+
```json
864+
{
865+
"minZoom": 12,
866+
"maxItemsPerTile": 35,
867+
"defaultLocation": null
868+
}
686869
```

0 commit comments

Comments
 (0)