forked from autowarefoundation/autoware_universe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform_maps.schema.json
75 lines (75 loc) · 2.13 KB
/
transform_maps.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for Transforming Maps",
"type": "object",
"definitions": {
"transform_maps": {
"type": "object",
"properties": {
"llt_map_path": {
"type": "string",
"description": "Path pointing to the input lanelet2 file",
"default": ""
},
"pcd_map_path": {
"type": "string",
"description": "Path pointing to the input point cloud file",
"default": ""
},
"llt_output_path": {
"type": "string",
"description": "Path pointing to the output lanelet2 file",
"default": ""
},
"pcd_output_path": {
"type": "string",
"description": "Path pointing to the output point cloud file",
"default": ""
},
"x": {
"type": "number",
"default": 0.0,
"description": "x factor of Translation vector for transforming maps [m]"
},
"y": {
"type": "number",
"default": 0.0,
"description": "y factor of Translation vector for transforming maps [m]"
},
"z": {
"type": "number",
"default": 0.0,
"description": "z factor of Translation vector for transforming maps [m]"
},
"roll": {
"type": "number",
"default": 0.0,
"description": "roll factor of Rotation vector for transforming maps [rad]"
},
"pitch": {
"type": "number",
"default": 0.0,
"description": "pitch factor of Rotation vector for transforming maps [rad]"
},
"yaw": {
"type": "number",
"default": 0.0,
"description": "yaw factor of Rotation vector for transforming maps [rad]"
}
},
"required": ["x", "y", "z", "roll", "pitch", "yaw"]
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/transform_maps"
}
},
"required": ["ros__parameters"]
}
},
"required": ["/**"]
}