Skip to content

Commit edfb5ac

Browse files
author
pcoma55
committed
adding additional imagery
1 parent 6ecfdbd commit edfb5ac

File tree

4 files changed

+292
-1
lines changed

4 files changed

+292
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,4 @@ articles/planetary-computer/helper-content/generate_collection_docs.py
157157
.gitignore
158158
articles/planetary-computer/sentinel-2-l2a-grindavik.md
159159
articles/planetary-computer/umbra-sar.md
160+
articles/planetary-computer/naip-airports.md

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

Lines changed: 291 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom:
1717

1818
[Collection description to be added here]
1919

20-
[ ![Screenshot of Sentinel-2-l2a data visualization](media/sentinel-2-l2a.png) ](media/sentinel-2-l2a.png#lightbox)
20+
[ ![Screenshot of Sentinel-2-l2a data visualization](media/sentinel-2-imagery.png) ](media/sentinel-2-imagery.png#lightbox)
2121

2222
[Description of data source and link to where to get the data]
2323

@@ -688,6 +688,296 @@ The STAC Collection configuration defines the core metadata for this collection.
688688

689689
---
690690

691+
692+
## naip-airports Collection Configuration
693+
694+
[Collection description to be added here]
695+
696+
[ ![Screenshot of naip-airports data visualization](media/naip-imagery.png) ](media/naip-imagery.png#lightbox)
697+
698+
[Description of data source and link to where to get the data]
699+
700+
## Configuration details
701+
702+
# [Mosaic](#tab/naip-airports-mosaics)
703+
704+
## Mosaic Configuration
705+
706+
The mosaic configuration defines how images are combined when displayed in the Explorer.
707+
708+
```json
709+
[
710+
{
711+
"id": "default",
712+
"name": "Default",
713+
"description": "",
714+
"cql": []
715+
}
716+
]
717+
```
718+
719+
# [Render Options](#tab/naip-airports-render-options)
720+
721+
## Render Options Configuration
722+
723+
The render options configuration defines how imagery is displayed in the Explorer.
724+
725+
```json
726+
[
727+
{
728+
"id": "natural-color",
729+
"name": "Natural color",
730+
"description": "RGB from visual assets",
731+
"type": "raster-tile",
732+
"options": "assets=image&asset_bidx=image|1,2,3",
733+
"minZoom": 11
734+
},
735+
{
736+
"id": "color-infrared",
737+
"name": "Color infrared",
738+
"description": "Highlights healthy (red) and unhealthy (blue/gray) vegetation.",
739+
"type": "raster-tile",
740+
"options": "assets=image&asset_bidx=image|4,1,2&color_formula=Sigmoidal RGB 15 0.35",
741+
"minZoom": 12
742+
},
743+
{
744+
"id": "ndvi",
745+
"name": "Normalized Difference Veg. Index (NDVI)",
746+
"description": "Normalized Difference Vegetation Index (NIR-Red)/(NIR+Red), darker green indicates healthier vegetation.",
747+
"type": "raster-tile",
748+
"options": "expression=(image_b4 - image_b1)/(image_b4 + image_b1)&rescale=-1,1&colormap_name=rdylgn",
749+
"minZoom": 12
750+
}
751+
]
752+
```
753+
754+
# [Tile Settings](#tab/naip-airports-tile-settings)
755+
756+
## Tile Settings Configuration
757+
758+
The tile settings configuration defines how data is tiled and displayed at different zoom levels.
759+
760+
```json
761+
{
762+
"minZoom": 4,
763+
"maxItemsPerTile": 35,
764+
"defaultLocation": null
765+
}
766+
```
767+
768+
# [STAC Collection](#tab/naip-airports-stac)
769+
770+
## STAC Collection configuration
771+
772+
The STAC Collection configuration defines the core metadata for this collection.
773+
774+
```json
775+
{
776+
"id": "naip-airports",
777+
"type": "Collection",
778+
"links": [
779+
{
780+
"rel": "items",
781+
"type": "application/geo+json",
782+
"href": "https://{geocatalog_id}/stac/collections/naip-airports/items"
783+
},
784+
{
785+
"rel": "parent",
786+
"type": "application/json",
787+
"href": "https://{geocatalog_id}/stac/"
788+
},
789+
{
790+
"rel": "root",
791+
"type": "application/json",
792+
"href": "https://{geocatalog_id}/stac/"
793+
},
794+
{
795+
"rel": "self",
796+
"type": "application/json",
797+
"href": "https://{geocatalog_id}/stac/collections/naip-airports"
798+
},
799+
{
800+
"rel": "license",
801+
"href": "https://www.fsa.usda.gov/help/policies-and-links/",
802+
"title": "Public Domain"
803+
},
804+
{
805+
"rel": "describedby",
806+
"href": "https://planetarycomputer.microsoft.com/dataset/naip",
807+
"type": "text/html",
808+
"title": "Human readable dataset overview and reference"
809+
}
810+
],
811+
"title": "naip-airports",
812+
"assets": {
813+
"thumbnail": {
814+
"href": "https://{storage_account}.blob.core.windows.net/{blob_container}/collection-assets/thumbnail/blob",
815+
"type": "image/png",
816+
"roles": [
817+
"thumbnail"
818+
],
819+
"title": "naip-airports thumbnail"
820+
}
821+
},
822+
"extent": {
823+
"spatial": {
824+
"bbox": [
825+
[
826+
-124.784,
827+
24.744,
828+
-66.951,
829+
49.346
830+
],
831+
[
832+
-156.003,
833+
19.059,
834+
-154.809,
835+
20.127
836+
],
837+
[
838+
-67.316,
839+
17.871,
840+
-65.596,
841+
18.565
842+
],
843+
[
844+
-64.94,
845+
17.622,
846+
-64.56,
847+
17.814
848+
]
849+
]
850+
},
851+
"temporal": {
852+
"interval": [
853+
[
854+
"2010-01-01T00:00:00Z",
855+
"2022-12-31T00:00:00Z"
856+
]
857+
]
858+
}
859+
},
860+
"license": "proprietary",
861+
"keywords": [
862+
"NAIP",
863+
"Aerial",
864+
"Imagery",
865+
"USDA",
866+
"AFPO",
867+
"Agriculture",
868+
"United States"
869+
],
870+
"providers": [
871+
{
872+
"url": "https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/",
873+
"name": "USDA Farm Service Agency",
874+
"roles": [
875+
"producer",
876+
"licensor"
877+
]
878+
},
879+
{
880+
"url": "https://www.esri.com/",
881+
"name": "Esri",
882+
"roles": [
883+
"processor"
884+
]
885+
},
886+
{
887+
"url": "https://planetarycomputer.microsoft.com",
888+
"name": "Microsoft",
889+
"roles": [
890+
"host",
891+
"processor"
892+
]
893+
}
894+
],
895+
"summaries": {
896+
"gsd": [
897+
0.3,
898+
0.6,
899+
1
900+
],
901+
"eo:bands": [
902+
{
903+
"name": "Red",
904+
"common_name": "red",
905+
"description": "visible red"
906+
},
907+
{
908+
"name": "Green",
909+
"common_name": "green",
910+
"description": "visible green"
911+
},
912+
{
913+
"name": "Blue",
914+
"common_name": "blue",
915+
"description": "visible blue"
916+
},
917+
{
918+
"name": "NIR",
919+
"common_name": "nir",
920+
"description": "near-infrared"
921+
}
922+
]
923+
},
924+
"description": "The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) \nprovides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). \nNAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) \nwithin the [US Department of Agriculture](https://www.usda.gov/) (USDA). \nData are captured at least once every three years for each state. \nThis dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\nYou can visualize the coverage of current and past collections [here](https://naip-usdaonline.hub.arcgis.com/). \n",
925+
"item_assets": {
926+
"image": {
927+
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
928+
"roles": [
929+
"data"
930+
],
931+
"title": "RGBIR COG tile",
932+
"eo:bands": [
933+
{
934+
"name": "Red",
935+
"common_name": "red"
936+
},
937+
{
938+
"name": "Green",
939+
"common_name": "green"
940+
},
941+
{
942+
"name": "Blue",
943+
"common_name": "blue"
944+
},
945+
{
946+
"name": "NIR",
947+
"common_name": "nir",
948+
"description": "near-infrared"
949+
}
950+
]
951+
},
952+
"metadata": {
953+
"type": "text/plain",
954+
"roles": [
955+
"metadata"
956+
],
957+
"title": "FGDC Metdata"
958+
},
959+
"thumbnail": {
960+
"type": "image/jpeg",
961+
"roles": [
962+
"thumbnail"
963+
],
964+
"title": "Thumbnail"
965+
}
966+
},
967+
"msft:region": "westeurope",
968+
"stac_version": "1.0.0",
969+
"msft:_created": "2024-08-02T13:19:22.446214Z",
970+
"msft:_updated": "2024-08-21T17:21:13.132140Z",
971+
"stac_extensions": [
972+
"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json",
973+
"https://stac-extensions.github.io/table/v1.2.0/schema.json"
974+
],
975+
"msft:short_description": "NAIP provides US-wide, high-resolution aerial imagery. This dataset includes NAIP images from 2010 to the present."
976+
}
977+
```
978+
979+
---
980+
691981
## Umbra SAR Imagery Collection Configuration
692982

693983
[Collection description to be added here]
1.98 MB
Loading
2.33 MB
Loading

0 commit comments

Comments
 (0)