generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
416 lines (416 loc) · 13.3 KB
/
schema.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stac-extensions.github.io/tiled-assets/v1.0.0/schema.json#",
"title": "Tiled Assets Extension",
"description": "STAC Tiled Assets Extension for STAC Items and STAC Collections.",
"type": "object",
"required": [
"stac_extensions"
],
"properties": {
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/tiled-assets/v1.0.0/schema.json"
}
}
},
"oneOf": [
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"const": "Feature"
}
},
"allOf": [
{
"$ref": "#/definitions/item-tiles"
}
]
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"const": "Catalog"
}
},
"allOf": [
{
"$ref": "#/definitions/catalog-collection-tiles"
}
]
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"const": "Collection"
}
},
"allOf": [
{
"$ref": "#/definitions/catalog-collection-tiles"
}
]
}
],
"definitions": {
"catalog-collection-tiles": {
"title": "Tile matrix additions to STAC Collections and Catalogs",
"description": "Allows the definition of tile matrix sets on a Collection or Catalog.",
"type": "object",
"required": [
"tiles:tile_matrix_set"
],
"properties": {
"tiles:tile_matrix_set": {
"$ref": "#/definitions/tile_matrix_set"
}
}
},
"item-tiles": {
"type": "object",
"required": [
"properties",
"asset_templates"
],
"properties": {
"properties": {
"type": "object",
"required": [],
"properties": {
"tiles:tile_matrix_set": {
"$ref": "#/definitions/tile_matrix_set"
},
"tiles:tile_matrix_links": {
"title": "A map of tile matrix identifier to its definition with possible limits.",
"type": "object",
"patternProperties": {
"[a-zA-Z0-9]+": {
"$ref": "#/definitions/tile_matrix_link"
}
}
}
}
},
"asset_templates": {
"title": "Asset template links",
"description": "Links to assets templates. These are regular assets that may have template arguments in their href property.",
"type": "object",
"additionalProperties": {
"$ref": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/asset"
}
}
}
},
"tile_matrix_set": {
"$comment": "Should be a $ref to http://schemas.opengis.net/tms/1.0/json/tms-schema.json but it doesn't work",
"type": "object",
"required": ["type", "identifier", "supportedCRS", "tileMatrix"],
"properties": {
"type": {
"description": "Type of the Tile Matrix Set",
"enum": ["TileMatrixSetType"]
},
"title": {
"description": "Title of this tile matrix set, normally used for display to a human",
"type": "string"
},
"abstract": {
"description": "Brief narrative description of this tile matrix set, normally available for display to a human",
"type": "string"
},
"keywords": {
"description": "Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this dataset",
"$ref": "#/definitions/keywords"
},
"identifier": {
"description": "Tile matrix set identifier",
"type": "string"
},
"boundingBox": {
"description": "Minimum bounding rectangle surrounding the tile matrix set, in the supported CRS",
"$ref": "#/definitions/boundingBox"
},
"supportedCRS": {
"description": "Reference to one coordinate reference system (CRS)",
"type": "string",
"format": "uri"
},
"wellKnownScaleSet": {
"description": "Reference to a well-known scale set",
"type": "string",
"format": "uri"
},
"tileMatrix": {
"description": "Describes a scale level and its tile matrix",
"$ref": "#/definitions/tileMatrix"
}
}
},
"tile_matrix_link": {
"type": "object",
"oneOf": [
{
"required": [
"url"
]
},
{
"required": [
"well_known_scale_set"
]
}
],
"properties": {
"url": {
"type": "string",
"description": "The URL to access the linked tile matrix set."
},
"well_known_scale_set": {
"type": "string",
"description": "The name of a Well Known Scale Set.",
"enum": [
"GlobalCRS84Scale",
"GlobalCRS84Pixel",
"GoogleCRS84Quad",
"WorldMercatorWGS84"
]
},
"limits": {
"type": "object",
"description": "Optional limits for each tile matrix. Keys in this mapping must be all be valid tile matrix identifiers of the reference tile matrix set.",
"additionalProperties": {
"$ref": "#/definitions/tile_matrix_limits"
}
},
"pixel_buffer": {
"type": "object",
"description": "An optional pixel buffer description object per tile matrix. By default, no pixel buffers are used. Keys in this mapping must be all be valid tile matrix identifiers of the reference tile matrix set.",
"additionalProperties": {
"$ref": "#/definitions/pixel_buffer"
}
}
}
},
"tile_matrix_limits": {
"type": "object",
"description": "This object allows to specify subset region of the source tileset. This concept is modelled after the TileMatrixSetLimits2D requirement class.",
"properties": {
"min_tile_row": {
"type": "integer",
"description": "Minimum tile row index valid for this layer. If not specified it uses the the one from the referenced tile matrix."
},
"max_tile_row": {
"type": "integer",
"description": "Maximum tile row index valid for this layer. If not specified it uses the the one from the referenced tile matrix."
},
"min_tile_col": {
"type": "integer",
"description": "Minimum tile column index valid for this layer. If not specified it uses the the one from the referenced tile matrix."
},
"max_tile_col": {
"type": "integer",
"description": "Maximum tile column index valid for this layer. If not specified it uses the the one from the referenced tile matrix."
}
}
},
"pixel_buffer": {
"type": "object",
"properties": {
"top": {
"type": "integer",
"description": "The size of the pixel-buffer in the top border of the image. Default is `0`.",
"minimum": 0
},
"left": {
"type": "integer",
"description": "The size of the pixel-buffer in the left border of the image. Default is `0`.",
"minimum": 0
},
"bottom": {
"type": "integer",
"description": "The size of the pixel-buffer in the bottom border of the image. Default is `0`.",
"minimum": 0
},
"right": {
"type": "integer",
"description": "The size of the pixel-buffer in the right border of the image. Default is `0`.",
"minimum": 0
},
"border_top": {
"type": "boolean",
"description": "Whether or not the pixelbuffer is included images on the top border of the first tile row. Default is `true`."
},
"border_left": {
"type": "boolean",
"description": "Whether or not the pixelbuffer is included images on the left border of the first tile column. Default is `true`."
},
"border_bottom": {
"type": "boolean",
"description": "Whether or not the pixelbuffer is included images on the bottom border of the last tile row. Default is `true`."
},
"border_right": {
"type": "boolean",
"description": "Whether or not the pixelbuffer is included images on the right border of the last tile row. Default is `true`."
}
}
},
"keywords": {
"description": "Unordered list of one or more commonly used or formalised word(s) or phrase(s) used to describe this resource",
"type": "array",
"items": {
"type": "string"
}
},
"boundingBox": {
"description": "Minimum bounding rectangle surrounding the tile matrix set, in the supported CRS",
"type": "object",
"required": ["type", "lowerCorner", "upperCorner"],
"properties":
{
"type": {
"description": "Type of the Bounding Bos",
"enum": ["BoundingBoxType"]
},
"crs": {
"description": "",
"type": "string",
"format": "uri"
},
"lowerCorner": {
"description": "",
"type": "array",
"items": {
"type": "number",
"minItems": 2,
"maxItems": 2
}
},
"upperCorner": {
"description": "",
"type": "array",
"items": {
"type": "number",
"minItems": 2,
"maxItems": 2
}
}
}
},
"tileMatrix": {
"type": "array",
"items": {
"type": "object",
"required": ["type", "identifier", "scaleDenominator", "topLeftCorner", "tileWidth", "tileHeight", "matrixWidth", "matrixHeight"],
"properties": {
"type": {
"description": "Type of the Tile Matrix",
"enum": ["TileMatrixType"]
},
"title": {
"description": "Title of this tile matrix set, normally used for display to a human",
"type": "string"
},
"abstract": {
"description": "Brief narrative description of this tile matrix set, normally available for display to a human",
"type": "string"
},
"keywords": {
"description": "Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this dataset",
"$ref": "#/definitions/keywords"
},
"identifier": {
"description": "Tile matrix identifier",
"type": "string"
},
"scaleDenominator": {
"description": "Scale denominator level of this tile matrix",
"type": "number"
},
"topLeftCorner": {
"description": "Position in CRS coordinates of the top-left corner of this tile matrix",
"type": "array",
"items": {
"type": "number",
"minItems": 2,
"maxItems": 2
}
},
"tileWidth": {
"description": "Width of each tile of this tile matrix in pixels",
"type": "number",
"minimum": 1,
"multipleOf" : 1
},
"tileHeight": {
"description": "Height of each tile of this tile matrix in pixels",
"type": "number",
"minimum": 1,
"multipleOf" : 1
},
"matrixWidth": {
"description": "Width of the matrix (number of tiles in width)",
"type": "number",
"minimum": 1,
"multipleOf" : 1
},
"matrixHeight": {
"description": "Height of the matrix (number of tiles in height)",
"type": "number",
"minimum": 1,
"multipleOf" : 1
},
"variableMatrixWidth": {
"description": "Describes the rows that has variable matix width",
"$ref": "#/definitions/variableMatrixWidth"
}
}
}
},
"variableMatrixWidth": {
"description": "List of data structures defining the tiles rows that was variable width",
"type": "array",
"items": {
"description": "Variable Matrix Width data structure",
"type": "object",
"required": ["type", "coalesce", "minTileRow", "maxTileRow"],
"properties": {
"type": {
"description": "Type of the Variable Matrix Width",
"enum": ["VariableMatrixWidthType"]
},
"coalesce" : {
"description": "Coalescence factor",
"type": "number",
"minimum": 2,
"multipleOf" : 1
},
"minTileRow": {
"description": "Minimum tile row index valid for this layer",
"type": "number",
"minimum": 0,
"multipleOf" : 1
},
"maxTileRow": {
"description": "Maximim tile row index valid for this layer",
"type": "number",
"minimum": 0,
"multipleOf" : 1
}
}
}
}
}
}