@@ -12,21 +12,138 @@ ms.custom:
12
12
13
13
# Microsoft Planetary Computer Pro Data Visualization Gallery
14
14
15
+
15
16
## Sentinel-2-l2a Collection Configuration
16
17
17
18
[ Collection description to be added here]
18
19
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 )
20
21
21
22
[ Description of data source and link to where to get the data]
22
23
23
24
## Configuration details
24
25
25
- # [ STAC ] ( #tab/stac )
26
+ # [ Mosaics ] ( #tab/mosaics )
26
27
27
- ## STAC Configuration
28
+ ## Mosaics Configuration
28
29
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.
30
147
31
148
``` json
32
149
{
@@ -36,22 +153,22 @@ The STAC configuration defines the core metadata for this collection.
36
153
{
37
154
"rel" : " items" ,
38
155
"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"
40
157
},
41
158
{
42
159
"rel" : " parent" ,
43
160
"type" : " application/json" ,
44
- "href" : " https://tc-demo.bxfqdqh5dagmbgez.uksouth.geocatalog.spatio.azure.com /stac/"
161
+ "href" : " https://{geocatalog_id} /stac/"
45
162
},
46
163
{
47
164
"rel" : " root" ,
48
165
"type" : " application/json" ,
49
- "href" : " https://tc-demo.bxfqdqh5dagmbgez.uksouth.geocatalog.spatio.azure.com /stac/"
166
+ "href" : " https://{geocatalog_id} /stac/"
50
167
},
51
168
{
52
169
"rel" : " self" ,
53
170
"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"
55
172
},
56
173
{
57
174
"rel" : " license" ,
@@ -68,7 +185,7 @@ The STAC configuration defines the core metadata for this collection.
68
185
"title" : " Sentinel-2-l2a" ,
69
186
"assets" : {
70
187
"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" ,
72
189
"type" : " image/png" ,
73
190
"roles" : [
74
191
" thumbnail"
@@ -569,6 +686,16 @@ The STAC configuration defines the core metadata for this collection.
569
686
}
570
687
```
571
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
+
572
699
# [ Mosaics] ( #tab/mosaics )
573
700
574
701
## Mosaics Configuration
@@ -579,19 +706,9 @@ The mosaics configuration defines how images are combined when displayed in the
579
706
[
580
707
{
581
708
"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" : []
595
712
}
596
713
]
597
714
```
@@ -605,68 +722,20 @@ The render options configuration defines how imagery is displayed in the Explore
605
722
``` json
606
723
[
607
724
{
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`." ,
667
728
"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
+ ]
670
739
}
671
740
]
672
741
```
@@ -679,23 +748,12 @@ The tile settings configuration defines how data is tiled and displayed at diffe
679
748
680
749
``` json
681
750
{
682
- "minZoom" : 8 ,
751
+ "minZoom" : 12 ,
683
752
"maxItemsPerTile" : 35 ,
684
753
"defaultLocation" : null
685
754
}
686
755
```
687
756
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
757
# [ STAC Collection] ( #tab/stac )
700
758
701
759
## STAC Collection configuration
@@ -810,60 +868,3 @@ The STAC Collection configuration defines the core metadata for this collection.
810
868
}
811
869
```
812
870
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