forked from radiantearth/stac-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
119 lines (119 loc) · 2.88 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
{
"$schema":"http://json-schema.org/draft-07/schema#",
"$id":"schema.json#",
"title":"Projection Extension",
"description":"STAC Projection Extension to a STAC Item",
"allOf":[
{
"$ref": "../../../item-spec/json-schema/item.json"
},
{
"$ref":"#/definitions/proj"
}
],
"definitions":{
"proj":{
"type": "object",
"required": [
"stac_extensions",
"properties"
],
"properties":{
"stac_extensions": {
"type": "array",
"contains": {
"const": "projection"
}
},
"properties":{
"type":"object",
"required":[
"proj:epsg"
],
"properties":{
"proj:epsg":{
"title":"EPSG code",
"type":[
"integer",
"null"
]
},
"proj:wkt2":{
"title":"Coordinate Reference System in WKT2 format",
"type":[
"string",
"null"
]
},
"proj:projjson": {
"title":"Coordinate Reference System in PROJJSON format",
"oneOf": [
{
"$ref": "https://proj.org/schemas/v0.1/projjson.schema.json"
},
{
"type": "null"
}
]
},
"proj:geometry":{
"title":"Geometry",
"oneOf": [
{
"$ref": "https://geojson.org/schema/Polygon.json"
}
]
},
"proj:bbox":{
"title":"Extent",
"type":"array",
"minItems":4,
"maxItems":6,
"items":{
"type":"number"
}
},
"proj:centroid":{
"title":"Centroid",
"type":"object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lon": {
"type": "number",
"minimum": -180,
"maximum": 180
}
}
},
"proj:shape":{
"title":"Shape",
"type":"array",
"minItems":2,
"maxItems":2,
"items":{
"type":"integer"
}
},
"proj:transform":{
"title":"Transform",
"type":"array",
"minItems":6,
"maxItems":9,
"items":{
"type":"number"
}
}
}
}
}
}
}
}