Skip to content

Commit

Permalink
Building blocks postprocessing
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-metalinkage committed Jun 18, 2024
1 parent dad8edb commit 21601ba
Show file tree
Hide file tree
Showing 170 changed files with 737 additions and 374 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ path @id
/frameSpecification/id
/frameSpecification/parameters
/quaternion http://example.com/geopose/quaternion
/quaternion/x
/quaternion/y
/quaternion/z
/quaternion/w
/quaternion/x http://example.com/geopose/x
/quaternion/y http://example.com/geopose/y
/quaternion/z http://example.com/geopose/z
/quaternion/w http://example.com/geopose/w
/validTime
10 changes: 9 additions & 1 deletion annotated-schemas/geo/geopose/advanced/context.jsonld
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"@context": {
"quaternion": "geopose:quaternion",
"quaternion": {
"@context": {
"x": "geopose:x",
"y": "geopose:y",
"z": "geopose:z",
"w": "geopose:w"
},
"@id": "geopose:quaternion"
},
"position": {
"@id": "geopose:position",
"@context": {
Expand Down
12 changes: 8 additions & 4 deletions annotated-schemas/geo/geopose/advanced/schema-oas3.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,20 @@
"type": "object",
"properties": {
"x": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/x"
},
"y": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/y"
},
"z": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/z"
},
"w": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/w"
}
},
"required": [
Expand Down
4 changes: 4 additions & 0 deletions annotated-schemas/geo/geopose/advanced/schema-oas3.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ definitions:
properties:
x:
type: number
x-jsonld-id: http://example.com/geopose/x
y:
type: number
x-jsonld-id: http://example.com/geopose/y
z:
type: number
x-jsonld-id: http://example.com/geopose/z
w:
type: number
x-jsonld-id: http://example.com/geopose/w
required:
- x
- y
Expand Down
12 changes: 8 additions & 4 deletions annotated-schemas/geo/geopose/advanced/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,20 @@
"type": "object",
"properties": {
"x": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/x"
},
"y": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/y"
},
"z": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/z"
},
"w": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/w"
}
},
"required": [
Expand Down
4 changes: 4 additions & 0 deletions annotated-schemas/geo/geopose/advanced/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,16 @@ definitions:
properties:
x:
type: number
x-jsonld-id: http://example.com/geopose/x
y:
type: number
x-jsonld-id: http://example.com/geopose/y
z:
type: number
x-jsonld-id: http://example.com/geopose/z
w:
type: number
x-jsonld-id: http://example.com/geopose/w
required:
- x
- y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
path @id
/position http://example.com/geopose/position
/position/lat
/position/lon
/position/h
/position/lat http://www.w3.org/2003/01/geo/wgs84_pos#lat
/position/lon http://www.w3.org/2003/01/geo/wgs84_pos#long
/position/h http://example.com/geopose/h
/quaternion http://example.com/geopose/quaternion
/quaternion/x
/quaternion/y
/quaternion/z
/quaternion/w
/quaternion/x http://example.com/geopose/x
/quaternion/y http://example.com/geopose/y
/quaternion/z http://example.com/geopose/z
/quaternion/w http://example.com/geopose/w
19 changes: 17 additions & 2 deletions annotated-schemas/geo/geopose/basic/quaternion/context.jsonld
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
{
"@context": {
"position": "geopose:position",
"quaternion": "geopose:quaternion",
"position": {
"@context": {
"lat": "geo:lat",
"lon": "geo:long",
"h": "geopose:h"
},
"@id": "geopose:position"
},
"quaternion": {
"@context": {
"x": "geopose:x",
"y": "geopose:y",
"z": "geopose:z",
"w": "geopose:w"
},
"@id": "geopose:quaternion"
},
"geopose": "http://example.com/geopose/",
"geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
"@version": 1.1
Expand Down
21 changes: 14 additions & 7 deletions annotated-schemas/geo/geopose/basic/quaternion/schema-oas3.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
"type": "object",
"properties": {
"lat": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#lat"
},
"lon": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#long"
},
"h": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/h"
}
},
"required": [
Expand All @@ -25,16 +28,20 @@
"type": "object",
"properties": {
"x": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/x"
},
"y": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/y"
},
"z": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/z"
},
"w": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/w"
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ definitions:
properties:
lat:
type: number
x-jsonld-id: http://www.w3.org/2003/01/geo/wgs84_pos#lat
lon:
type: number
x-jsonld-id: http://www.w3.org/2003/01/geo/wgs84_pos#long
h:
type: number
x-jsonld-id: http://example.com/geopose/h
required:
- lat
- lon
Expand All @@ -19,12 +22,16 @@ definitions:
properties:
x:
type: number
x-jsonld-id: http://example.com/geopose/x
y:
type: number
x-jsonld-id: http://example.com/geopose/y
z:
type: number
x-jsonld-id: http://example.com/geopose/z
w:
type: number
x-jsonld-id: http://example.com/geopose/w
required:
- x
- y
Expand Down
21 changes: 14 additions & 7 deletions annotated-schemas/geo/geopose/basic/quaternion/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
"type": "object",
"properties": {
"lat": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#lat"
},
"lon": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#long"
},
"h": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/h"
}
},
"required": [
Expand All @@ -24,16 +27,20 @@
"type": "object",
"properties": {
"x": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/x"
},
"y": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/y"
},
"z": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/z"
},
"w": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/w"
}
},
"required": [
Expand Down
7 changes: 7 additions & 0 deletions annotated-schemas/geo/geopose/basic/quaternion/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ definitions:
properties:
lat:
type: number
x-jsonld-id: http://www.w3.org/2003/01/geo/wgs84_pos#lat
lon:
type: number
x-jsonld-id: http://www.w3.org/2003/01/geo/wgs84_pos#long
h:
type: number
x-jsonld-id: http://example.com/geopose/h
required:
- lat
- lon
Expand All @@ -18,12 +21,16 @@ definitions:
properties:
x:
type: number
x-jsonld-id: http://example.com/geopose/x
y:
type: number
x-jsonld-id: http://example.com/geopose/y
z:
type: number
x-jsonld-id: http://example.com/geopose/z
w:
type: number
x-jsonld-id: http://example.com/geopose/w
required:
- x
- y
Expand Down
12 changes: 6 additions & 6 deletions annotated-schemas/geo/geopose/basic/ypr/_visited_properties.tsv
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
path @id
/position http://example.com/geopose/position
/position/lat
/position/lon
/position/h
/position/lat http://www.w3.org/2003/01/geo/wgs84_pos#lat
/position/lon http://www.w3.org/2003/01/geo/wgs84_pos#long
/position/h http://example.com/geopose/h
/angles http://example.com/geopose/angles
/angles/yaw
/angles/pitch
/angles/roll
/angles/yaw http://example.com/geopose/yaw
/angles/pitch http://example.com/geopose/pitch
/angles/roll http://example.com/geopose/roll
18 changes: 16 additions & 2 deletions annotated-schemas/geo/geopose/basic/ypr/context.jsonld
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
{
"@context": {
"position": "geopose:position",
"angles": "geopose:angles",
"position": {
"@context": {
"lat": "geo:lat",
"lon": "geo:long",
"h": "geopose:h"
},
"@id": "geopose:position"
},
"angles": {
"@context": {
"yaw": "geopose:yaw",
"pitch": "geopose:pitch",
"roll": "geopose:roll"
},
"@id": "geopose:angles"
},
"geopose": "http://example.com/geopose/",
"geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
"@version": 1.1
Expand Down
18 changes: 12 additions & 6 deletions annotated-schemas/geo/geopose/basic/ypr/schema-oas3.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
"type": "object",
"properties": {
"yaw": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/yaw"
},
"pitch": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/pitch"
},
"roll": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/roll"
}
},
"required": [
Expand All @@ -25,13 +28,16 @@
"type": "object",
"properties": {
"lat": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#lat"
},
"lon": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://www.w3.org/2003/01/geo/wgs84_pos#long"
},
"h": {
"type": "number"
"type": "number",
"x-jsonld-id": "http://example.com/geopose/h"
}
},
"required": [
Expand Down
Loading

0 comments on commit 21601ba

Please sign in to comment.