-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspatial-relations.json
45 lines (45 loc) · 1.43 KB
/
spatial-relations.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
{
"@context": [
"https://comp-rob2b.github.io/metamodels/geometry/spatial-relations.json",
"https://comp-rob2b.github.io/metamodels/qudt.json",
{
"rob": "https://comp-rob2b.github.io/modelling-tutorial/robot#"
}
],
"@id": "rob:spatial-relations",
"@graph": [
{
"@id": "rob:pose-link1-joint1-wrt-link1-root",
"@type": "Pose",
"of": "rob:link1-joint1",
"with-respect-to": "rob:link1-root",
"quantity-kind": [ "Angle", "Length" ]
},
{
"@id": "rob:pose-link2-root-wrt-link1-joint1",
"@type": "Pose",
"of": "rob:link2-root",
"with-respect-to": "rob:link1-joint1",
"quantity-kind": [ "Angle", "Length" ]
},
{
"@id": "rob:joint1-offset",
"@type": "Position",
"of": "rob:link2-root-origin",
"with-respect-to": "rob:link1-joint1-origin",
"quantity-kind": "Length"
},
{
"@id": "rob:pose-link2-root-wrt-link1-root",
"@type": "Pose",
"of": "rob:link2-root",
"with-respect-to": "rob:link1-root",
"quantity-kind": [ "Angle", "Length" ]
},
{
"@id": "rob:joint1-common-axis",
"@type": "LineCollinearity",
"lines": [ "rob:link1-joint1-z", "rob:link2-root-z" ]
}
]
}