Skip to content

Commit 5cb50f0

Browse files
author
pcoma55
committed
updates to show 2 datasets
1 parent b577603 commit 5cb50f0

File tree

1 file changed

+153
-152
lines changed

1 file changed

+153
-152
lines changed

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

Lines changed: 153 additions & 152 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,138 @@ ms.custom:
1212

1313
# Microsoft Planetary Computer Pro Data Visualization Gallery
1414

15+
1516
## Sentinel-2-l2a Collection Configuration
1617

1718
[Collection description to be added here]
1819

19-
![Screenshot of Sentinel-2-l2a data visualization](path/to/screenshot.png)
20+
[ ![Screenshot of Sentinel-2-l2a data visualization](media/sentinel-2-l2a.png) ](media/sentinel-2-l2a.png#lightbox)
2021

2122
[Description of data source and link to where to get the data]
2223

2324
## Configuration details
2425

25-
# [STAC](#tab/stac)
26+
# [Mosaics](#tab/mosaics)
2627

27-
## STAC Configuration
28+
## Mosaics Configuration
2829

29-
The STAC configuration defines the core metadata for this collection.
30+
The mosaics configuration defines how images are combined when displayed in the Explorer.
31+
32+
```json
33+
[
34+
{
35+
"id": "default",
36+
"name": "Most recent available",
37+
"description": "Most recent available imagery in this collection",
38+
"cql": [
39+
{
40+
"op": "<=",
41+
"args": [
42+
{
43+
"property": "eo:cloud_cover"
44+
},
45+
40
46+
]
47+
}
48+
]
49+
}
50+
]
51+
```
52+
53+
# [Render Options](#tab/render-options)
54+
55+
## Render Options Configuration
56+
57+
The render options configuration defines how imagery is displayed in the Explorer.
58+
59+
```json
60+
[
61+
{
62+
"id": "natural-color",
63+
"name": "Natural color",
64+
"description": "True color composite of visible bands (B04, B03, B02)",
65+
"type": "raster-tile",
66+
"options": "assets=B04&assets=B03&assets=B02&nodata=0&color_formula=Gamma RGB 3.2 Saturation 0.8 Sigmoidal RGB 25 0.35",
67+
"minZoom": 9
68+
},
69+
{
70+
"id": "natural-color-pre-feb-2022",
71+
"name": "Natural color (pre Feb, 2022)",
72+
"description": "Pre-Feb 2022 true color composite of visible bands (B04, B03, B02)",
73+
"type": "raster-tile",
74+
"options": "assets=B04&assets=B03&assets=B02&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
75+
"minZoom": 9
76+
},
77+
{
78+
"id": "color-infrared",
79+
"name": "Color infrared",
80+
"description": "Highlights healthy (red) and unhealthy (blue/gray) vegetation (B08, B04, B03).",
81+
"type": "raster-tile",
82+
"options": "assets=B08&assets=B04&assets=B03&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
83+
"minZoom": 9
84+
},
85+
{
86+
"id": "short-wave-infrared",
87+
"name": "Short wave infrared",
88+
"description": "Darker shades of green indicate denser vegetation. Brown is indicative of bare soil and built-up areas (B12, B8A, B04).",
89+
"type": "raster-tile",
90+
"options": "assets=B12&assets=B8A&assets=B04&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
91+
"minZoom": 9
92+
},
93+
{
94+
"id": "agriculture",
95+
"name": "Agriculture",
96+
"description": "Darker shades of green indicate denser vegetation (B11, B08, B02).",
97+
"type": "raster-tile",
98+
"options": "assets=B11&assets=B08&assets=B02&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
99+
"minZoom": 9
100+
},
101+
{
102+
"id": "normalized-difference-veg-inde",
103+
"name": "Normalized Difference Veg. Index (NDVI)",
104+
"description": "Normalized Difference Vegetation Index (B08-B04)/(B08+B04), darker green indicates healthier vegetation.",
105+
"type": "raster-tile",
106+
"options": "nodata=0&expression=(B08-B04)/(B08+B04)&rescale=-1,1&colormap_name=rdylgn&asset_as_band=true",
107+
"minZoom": 9
108+
},
109+
{
110+
"id": "moisture-index-ndwi",
111+
"name": "Moisture Index (NDWI)",
112+
"description": "Index indicating water stress in plants (B8A-B11)/(B8A+B11)",
113+
"type": "raster-tile",
114+
"options": "nodata=0&expression=(B8A-B11)/(B8A+B11)&rescale=-1,1&colormap_name=rdbu&asset_as_band=true",
115+
"minZoom": 9
116+
},
117+
{
118+
"id": "atmospheric-penetration",
119+
"name": "Atmospheric penetration",
120+
"description": "False color rendering with non-visible bands to reduce effects of atmospheric particles (B12, B11, B8A).",
121+
"type": "raster-tile",
122+
"options": "nodata=0&assets=B12&assets=B11&assets=B8A&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
123+
"minZoom": 9
124+
}
125+
]
126+
```
127+
128+
# [Tile Settings](#tab/tile-settings)
129+
130+
## Tile Settings Configuration
131+
132+
The tile settings configuration defines how data is tiled and displayed at different zoom levels.
133+
134+
```json
135+
{
136+
"minZoom": 8,
137+
"maxItemsPerTile": 35,
138+
"defaultLocation": null
139+
}
140+
```
141+
142+
# [STAC Collection](#tab/stac)
143+
144+
## STAC Collection configuration
145+
146+
The STAC Collection configuration defines the core metadata for this collection.
30147

31148
```json
32149
{
@@ -36,22 +153,22 @@ The STAC configuration defines the core metadata for this collection.
36153
{
37154
"rel": "items",
38155
"type": "application/geo+json",
39-
"href": "https://tc-demo.bxfqdqh5dagmbgez.uksouth.geocatalog.spatio.azure.com/stac/collections/sentinel-2-l2a_Grindavik/items"
156+
"href": "https://{geocatalog_id}/stac/collections/sentinel-2-l2a_Grindavik/items"
40157
},
41158
{
42159
"rel": "parent",
43160
"type": "application/json",
44-
"href": "https://tc-demo.bxfqdqh5dagmbgez.uksouth.geocatalog.spatio.azure.com/stac/"
161+
"href": "https://{geocatalog_id}/stac/"
45162
},
46163
{
47164
"rel": "root",
48165
"type": "application/json",
49-
"href": "https://tc-demo.bxfqdqh5dagmbgez.uksouth.geocatalog.spatio.azure.com/stac/"
166+
"href": "https://{geocatalog_id}/stac/"
50167
},
51168
{
52169
"rel": "self",
53170
"type": "application/json",
54-
"href": "https://tc-demo.bxfqdqh5dagmbgez.uksouth.geocatalog.spatio.azure.com/stac/collections/sentinel-2-l2a_Grindavik"
171+
"href": "https://{geocatalog_id}/stac/collections/sentinel-2-l2a_Grindavik"
55172
},
56173
{
57174
"rel": "license",
@@ -68,7 +185,7 @@ The STAC configuration defines the core metadata for this collection.
68185
"title": "Sentinel-2-l2a",
69186
"assets": {
70187
"thumbnail": {
71-
"href": "https://ubpobrdatasa.blob.core.windows.net/sentinel-2-l2a-grindavik-64221e99/collection-assets/thumbnail/blob",
188+
"href": "https://{storage_account}.blob.core.windows.net/{blob_container}/collection-assets/thumbnail/blob",
72189
"type": "image/png",
73190
"roles": [
74191
"thumbnail"
@@ -569,6 +686,16 @@ The STAC configuration defines the core metadata for this collection.
569686
}
570687
```
571688

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+
572699
# [Mosaics](#tab/mosaics)
573700

574701
## Mosaics Configuration
@@ -579,19 +706,9 @@ The mosaics configuration defines how images are combined when displayed in the
579706
[
580707
{
581708
"id": "default",
582-
"name": "Most recent available",
583-
"description": "Most recent available imagery in this collection",
584-
"cql": [
585-
{
586-
"op": "<=",
587-
"args": [
588-
{
589-
"property": "eo:cloud_cover"
590-
},
591-
40
592-
]
593-
}
594-
]
709+
"name": "Default",
710+
"description": "",
711+
"cql": []
595712
}
596713
]
597714
```
@@ -605,68 +722,20 @@ The render options configuration defines how imagery is displayed in the Explore
605722
```json
606723
[
607724
{
608-
"id": "natural-color",
609-
"name": "Natural color",
610-
"description": "True color composite of visible bands (B04, B03, B02)",
611-
"type": "raster-tile",
612-
"options": "assets=B04&assets=B03&assets=B02&nodata=0&color_formula=Gamma RGB 3.2 Saturation 0.8 Sigmoidal RGB 25 0.35",
613-
"minZoom": 9
614-
},
615-
{
616-
"id": "natural-color-pre-feb-2022",
617-
"name": "Natural color (pre Feb, 2022)",
618-
"description": "Pre-Feb 2022 true color composite of visible bands (B04, B03, B02)",
619-
"type": "raster-tile",
620-
"options": "assets=B04&assets=B03&assets=B02&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
621-
"minZoom": 9
622-
},
623-
{
624-
"id": "color-infrared",
625-
"name": "Color infrared",
626-
"description": "Highlights healthy (red) and unhealthy (blue/gray) vegetation (B08, B04, B03).",
627-
"type": "raster-tile",
628-
"options": "assets=B08&assets=B04&assets=B03&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
629-
"minZoom": 9
630-
},
631-
{
632-
"id": "short-wave-infrared",
633-
"name": "Short wave infrared",
634-
"description": "Darker shades of green indicate denser vegetation. Brown is indicative of bare soil and built-up areas (B12, B8A, B04).",
635-
"type": "raster-tile",
636-
"options": "assets=B12&assets=B8A&assets=B04&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
637-
"minZoom": 9
638-
},
639-
{
640-
"id": "agriculture",
641-
"name": "Agriculture",
642-
"description": "Darker shades of green indicate denser vegetation (B11, B08, B02).",
643-
"type": "raster-tile",
644-
"options": "assets=B11&assets=B08&assets=B02&nodata=0&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
645-
"minZoom": 9
646-
},
647-
{
648-
"id": "normalized-difference-veg-inde",
649-
"name": "Normalized Difference Veg. Index (NDVI)",
650-
"description": "Normalized Difference Vegetation Index (B08-B04)/(B08+B04), darker green indicates healthier vegetation.",
651-
"type": "raster-tile",
652-
"options": "nodata=0&expression=(B08-B04)/(B08+B04)&rescale=-1,1&colormap_name=rdylgn&asset_as_band=true",
653-
"minZoom": 9
654-
},
655-
{
656-
"id": "moisture-index-ndwi",
657-
"name": "Moisture Index (NDWI)",
658-
"description": "Index indicating water stress in plants (B8A-B11)/(B8A+B11)",
659-
"type": "raster-tile",
660-
"options": "nodata=0&expression=(B8A-B11)/(B8A+B11)&rescale=-1,1&colormap_name=rdbu&asset_as_band=true",
661-
"minZoom": 9
662-
},
663-
{
664-
"id": "atmospheric-penetration",
665-
"name": "Atmospheric penetration",
666-
"description": "False color rendering with non-visible bands to reduce effects of atmospheric particles (B12, B11, B8A).",
725+
"id": "vv-polarization",
726+
"name": "VV polarization",
727+
"description": "VV asset scaled to `0,.20`.",
667728
"type": "raster-tile",
668-
"options": "nodata=0&assets=B12&assets=B11&assets=B8A&color_formula=Gamma RGB 3.7 Saturation 1.5 Sigmoidal RGB 15 0.35",
669-
"minZoom": 9
729+
"options": "assets=GEC&rescale=0,255&colormap_name=gray",
730+
"minZoom": 8,
731+
"conditions": [
732+
{
733+
"property": "sar:polarizations",
734+
"value": [
735+
"VV"
736+
]
737+
}
738+
]
670739
}
671740
]
672741
```
@@ -679,23 +748,12 @@ The tile settings configuration defines how data is tiled and displayed at diffe
679748

680749
```json
681750
{
682-
"minZoom": 8,
751+
"minZoom": 12,
683752
"maxItemsPerTile": 35,
684753
"defaultLocation": null
685754
}
686755
```
687756

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-
699757
# [STAC Collection](#tab/stac)
700758

701759
## STAC Collection configuration
@@ -810,60 +868,3 @@ The STAC Collection configuration defines the core metadata for this collection.
810868
}
811869
```
812870

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-
}
869-
```

0 commit comments

Comments
 (0)