-
Notifications
You must be signed in to change notification settings - Fork 4
/
ingest_voxel_globe.schema
115 lines (115 loc) · 3.63 KB
/
ingest_voxel_globe.schema
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://vsi-ri.com/voxel_globe",
"type": "object",
"properties": {
"origin": {
"id": "https://vsi-ri.com/voxel_globe/origin",
"description": "Origin of the cameras",
"type": "object",
"properties": {
"latitude": {
"id": "https://vsi-ri.com/voxel_globe/origin/latitude",
"description": "WGS-84 (or srid) Latitude of origin in degrees",
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitude": {
"id": "https://vsi-ri.com/voxel_globe/origin/longitude",
"description": "WGS-84 (or srid) Longitude of origin in degrees",
"type": "number",
"minimum": -180,
"maximum": 180
},
"altitude": {
"id": "https://vsi-ri.com/voxel_globe/origin/altitude",
"description": "WGS-84 (or srid) Altitude of origin in meters ellipsoid height",
"type": "number"
},
"srid": {
"id": "https://vsi-ri.com/voxel_globe/origin/srid",
"description": "SRID number to specify SRS (Default is WGS-84 4326)",
"type": "int"
}
},
"required": [
"latitude",
"longitude",
"altitude"
]
},
"bbox": {
"id": "https://vsi-ri.com/voxel_globe/bbox",
"description": "Bounding box",
"type": "object",
"properties": {
"north": {
"id": "https://vsi-ri.com/voxel_globe/bbox/north",
"description": "Maximum north extent",
"type": "number"
},
"south": {
"id": "https://vsi-ri.com/voxel_globe/bbox/south",
"description": "Maximum south extent",
"type": "number"
},
"west": {
"id": "https://vsi-ri.com/voxel_globe/bbox/west",
"description": "Maximum west extent",
"type": "number"
},
"east": {
"id": "https://vsi-ri.com/voxel_globe/bbox/east",
"description": "Maximum east extent",
"type": "number"
},
"top": {
"id": "https://vsi-ri.com/voxel_globe/bbox/top",
"description": "Maximum altitude extent",
"type": "number"
},
"bottom": {
"id": "https://vsi-ri.com/voxel_globe/bbox/bottom",
"description": "Minimum altitude extent",
"type": "number"
}
}
},
"gsd": {
"id": "https://vsi-ri.com/voxel_globe/gsd",
"description": "Average ground sample distance ",
"type": "number",
"minimum": 0,
"exclusiveMinimum": true
},
"date": {
"id": "https://vsi-ri.com/voxel_globe/date",
"description": "Data of data set collection in YYYY-MM-DD format",
"type": "string"
},
"time_of_day": {
"id": "https://vsi-ri.com/voxel_globe/time_of_day",
"description": "Time of data set collection in HH:MM:SS format",
"type": "string"
},
"image_camera_match": {
"id": "https://vsi-ri.com/voxel_globe/image_camera_match",
"description": "Corresponding image file names and meta data file names",
"type": "object",
"properties": {}
}
"position_error": {
"id": "https://vsi-ri.com/voxel_globe/position_error",
"description": "Corresponding image file names and positional errors (float)",
"type": "object",
"properties": {}
}
"orientation_error": {
"id": "https://vsi-ri.com/voxel_globe/orientation_error",
"description": "Corresponding image file names and orientation errors (float)",
"type": "object",
"properties": {}
}
}
}