-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextent.yaml
43 lines (43 loc) · 1.44 KB
/
extent.yaml
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
allOf:
- $ref: '../ogcapi-common-2_1.0/collectionInfo.yaml'
- description: |-
The extent (envelope) of the coverage. In Common, only spatial and temporal
extents are specified. Coverages extends this by regrouping additional coverage dimensions under the "additional" property.
- type: object
properties:
additional:
description: |-
The boundaries for additional dimensions of the extent (envelope) beyond those described in temporal and spatial
type: array
required:
- name
- lowerBound
- upperBound
- rs
- axisLabel
minItems: 1
items:
description: |-
The boundaries for an additional dimension.
type: object
properties:
name:
description: |-
The name of this dimension
type: string
lowerBound:
description: |-
The minimum value along this dimension
type: number
upperBound:
description: |-
The maximum value along this dimension.
type: number
rs:
description: |-
The reference system for this dimension.
type: string
axisLabel:
description: |-
The axisLabel defined in the reference system for this dimension.
type: string