Skip to content

Commit b97bc20

Browse files
committed
Building blocks postprocessing
1 parent 2d31ce4 commit b97bc20

File tree

176 files changed

+559
-386
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+559
-386
lines changed

annotated-schemas/geo/geopose/advanced/_visited_properties.tsv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ path @id
44
/frameSpecification/id
55
/frameSpecification/parameters
66
/quaternion http://example.com/geopose/quaternion
7-
/quaternion/x
8-
/quaternion/y
9-
/quaternion/z
10-
/quaternion/w
7+
/quaternion/x http://example.com/geopose/x
8+
/quaternion/y http://example.com/geopose/y
9+
/quaternion/z http://example.com/geopose/z
10+
/quaternion/w http://example.com/geopose/w
1111
/validTime

annotated-schemas/geo/geopose/advanced/context.jsonld

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@
88
"h": "geopose:h"
99
}
1010
},
11-
"quaternion": "geopose:quaternion",
11+
"quaternion": {
12+
"@context": {
13+
"x": "geopose:x",
14+
"y": "geopose:y",
15+
"z": "geopose:z",
16+
"w": "geopose:w"
17+
},
18+
"@id": "geopose:quaternion"
19+
},
1220
"geopose": "http://example.com/geopose/",
1321
"geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
1422
"@version": 1.1

annotated-schemas/geo/geopose/advanced/schema.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,20 @@
2424
"type": "object",
2525
"properties": {
2626
"x": {
27-
"type": "number"
27+
"type": "number",
28+
"x-jsonld-id": "http://example.com/geopose/x"
2829
},
2930
"y": {
30-
"type": "number"
31+
"type": "number",
32+
"x-jsonld-id": "http://example.com/geopose/y"
3133
},
3234
"z": {
33-
"type": "number"
35+
"type": "number",
36+
"x-jsonld-id": "http://example.com/geopose/z"
3437
},
3538
"w": {
36-
"type": "number"
39+
"type": "number",
40+
"x-jsonld-id": "http://example.com/geopose/w"
3741
}
3842
},
3943
"required": [

annotated-schemas/geo/geopose/advanced/schema.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,16 @@ definitions:
1919
properties:
2020
x:
2121
type: number
22+
x-jsonld-id: http://example.com/geopose/x
2223
y:
2324
type: number
25+
x-jsonld-id: http://example.com/geopose/y
2426
z:
2527
type: number
28+
x-jsonld-id: http://example.com/geopose/z
2629
w:
2730
type: number
31+
x-jsonld-id: http://example.com/geopose/w
2832
required:
2933
- x
3034
- y
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
path @id
22
/position http://example.com/geopose/position
3-
/position/lat
4-
/position/lon
5-
/position/h
3+
/position/lat http://www.w3.org/2003/01/geo/wgs84_pos#lat
4+
/position/lon http://www.w3.org/2003/01/geo/wgs84_pos#long
5+
/position/h http://example.com/geopose/h
66
/quaternion http://example.com/geopose/quaternion
7-
/quaternion/x
8-
/quaternion/y
9-
/quaternion/z
10-
/quaternion/w
7+
/quaternion/x http://example.com/geopose/x
8+
/quaternion/y http://example.com/geopose/y
9+
/quaternion/z http://example.com/geopose/z
10+
/quaternion/w http://example.com/geopose/w

annotated-schemas/geo/geopose/basic/quaternion/context.jsonld

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
{
22
"@context": {
3-
"position": "geopose:position",
4-
"quaternion": "geopose:quaternion",
3+
"position": {
4+
"@context": {
5+
"lat": "geo:lat",
6+
"lon": "geo:long",
7+
"h": "geopose:h"
8+
},
9+
"@id": "geopose:position"
10+
},
11+
"quaternion": {
12+
"@context": {
13+
"x": "geopose:x",
14+
"y": "geopose:y",
15+
"z": "geopose:z",
16+
"w": "geopose:w"
17+
},
18+
"@id": "geopose:quaternion"
19+
},
520
"geopose": "http://example.com/geopose/",
621
"geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
722
"@version": 1.1

annotated-schemas/geo/geopose/basic/quaternion/schema.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55
"type": "object",
66
"properties": {
77
"lat": {
8-
"type": "number"
8+
"type": "number",
9+
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#lat"
910
},
1011
"lon": {
11-
"type": "number"
12+
"type": "number",
13+
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#long"
1214
},
1315
"h": {
14-
"type": "number"
16+
"type": "number",
17+
"x-jsonld-id": "http://example.com/geopose/h"
1518
}
1619
},
1720
"required": [
@@ -24,16 +27,20 @@
2427
"type": "object",
2528
"properties": {
2629
"x": {
27-
"type": "number"
30+
"type": "number",
31+
"x-jsonld-id": "http://example.com/geopose/x"
2832
},
2933
"y": {
30-
"type": "number"
34+
"type": "number",
35+
"x-jsonld-id": "http://example.com/geopose/y"
3136
},
3237
"z": {
33-
"type": "number"
38+
"type": "number",
39+
"x-jsonld-id": "http://example.com/geopose/z"
3440
},
3541
"w": {
36-
"type": "number"
42+
"type": "number",
43+
"x-jsonld-id": "http://example.com/geopose/w"
3744
}
3845
},
3946
"required": [

annotated-schemas/geo/geopose/basic/quaternion/schema.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ definitions:
55
properties:
66
lat:
77
type: number
8+
x-jsonld-id: http://www.w3.org/2003/01/geo/wgs84_pos#lat
89
lon:
910
type: number
11+
x-jsonld-id: http://www.w3.org/2003/01/geo/wgs84_pos#long
1012
h:
1113
type: number
14+
x-jsonld-id: http://example.com/geopose/h
1215
required:
1316
- lat
1417
- lon
@@ -18,12 +21,16 @@ definitions:
1821
properties:
1922
x:
2023
type: number
24+
x-jsonld-id: http://example.com/geopose/x
2125
y:
2226
type: number
27+
x-jsonld-id: http://example.com/geopose/y
2328
z:
2429
type: number
30+
x-jsonld-id: http://example.com/geopose/z
2531
w:
2632
type: number
33+
x-jsonld-id: http://example.com/geopose/w
2734
required:
2835
- x
2936
- y
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
path @id
22
/position http://example.com/geopose/position
3-
/position/lat
4-
/position/lon
5-
/position/h
3+
/position/lat http://www.w3.org/2003/01/geo/wgs84_pos#lat
4+
/position/lon http://www.w3.org/2003/01/geo/wgs84_pos#long
5+
/position/h http://example.com/geopose/h
66
/angles http://example.com/geopose/angles
7-
/angles/yaw
8-
/angles/pitch
9-
/angles/roll
7+
/angles/yaw http://example.com/geopose/yaw
8+
/angles/pitch http://example.com/geopose/pitch
9+
/angles/roll http://example.com/geopose/roll

annotated-schemas/geo/geopose/basic/ypr/context.jsonld

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
{
22
"@context": {
3-
"position": "geopose:position",
4-
"angles": "geopose:angles",
3+
"position": {
4+
"@context": {
5+
"lat": "geo:lat",
6+
"lon": "geo:long",
7+
"h": "geopose:h"
8+
},
9+
"@id": "geopose:position"
10+
},
11+
"angles": {
12+
"@context": {
13+
"yaw": "geopose:yaw",
14+
"pitch": "geopose:pitch",
15+
"roll": "geopose:roll"
16+
},
17+
"@id": "geopose:angles"
18+
},
519
"geopose": "http://example.com/geopose/",
620
"geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
721
"@version": 1.1

0 commit comments

Comments
 (0)