generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcollection.json
100 lines (100 loc) · 2.18 KB
/
collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
],
"type": "Collection",
"id": "collection",
"title": "A title",
"description": "A description",
"license": "Apache-2.0",
"extent": {
"spatial": {
"bbox": [
[
172.9,
1.3,
173,
1.4
]
]
},
"temporal": {
"interval": [
[
"2015-06-23T00:00:00Z",
null
]
]
}
},
"attribution": "© 2022 The Example Corp.",
"links": [
{
"href": "https://example.com/examples/collection.json",
"rel": "self"
},
{
"href": "https://example.com/examples/item.json",
"rel": "item"
},
{
"href": "https://maps.example.com/wmts",
"rel": "wmts",
"type": "image/png",
"title": "RGB composite visualized through a WMTS",
"wmts:layer": "rgb",
"wmts:dimensions": {
"time": "2022-01-01"
}
},
{
"href": "https://maps.example.com/wms",
"rel": "wms",
"type": "image/png",
"title": "RGB composite visualized through a WMS",
"wms:layers": [
"rgb"
],
"wms:styles": [
"default"
],
"wms:dimensions": {
"ELEVATION": "0",
"TIME": "2022-01-01"
}
},
{
"href": "https://{s}.maps.example.com/xyz/{z}/{x}/{y}.png",
"rel": "xyz",
"type": "image/png",
"title": "RGB composite visualized through a XYZ",
"href:servers": [
"a",
"b",
"c"
]
},
{
"href": "https://maps.example.com/collection/tilejson.json",
"rel": "tilejson",
"title": "TileJSON",
"type": "application/json"
},
{
"href": "https://storage.googleapis.com/open-cogs/planet-stac/cocabamba-peru/3d-geofox.ai/3DTiles/tileset.json",
"rel": "3d-tiles",
"title": "3D Tiles",
"type": "application/json"
},
{
"href": "https://maps.example.com/item/example.pmtiles",
"rel": "pmtiles",
"title": "PMTiles",
"type": "application/vnd.pmtiles",
"pmtiles:layers": [
"streets"
]
}
]
}