-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.yaml
202 lines (202 loc) · 5.31 KB
/
demo.yaml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
flow: AutowareDemo
operators:
- id: zenoh_flow_global_planner
uri: file://./install/lib/libzenoh_flow_global_planner.so
inputs:
- id: goal_pose
type: geometry_msgs_PoseStamped
- id: current_pose
type: autoware_auto_msgs_VehicleKinematicState
outputs:
- id: route
type: autoware_auto_msgs_HADMapRoute
- id: zenoh_flow_local_planner
uri: file://./install/lib/libzenoh_flow_local_planner.so
inputs:
- id: kinematic_state
type: autoware_auto_msgs_VehicleKinematicState
- id: route
type: autoware_auto_msgs_HADMapRoute
- id: state_report
type: autoware_auto_msgs_VehicleStateReport
outputs:
- id: trajectory
type: autoware_auto_msgs_Trajectory
- id: state_cmd
type: autoware_auto_msgs_VehicleStateCommand
- id: zenoh_flow_pure_pursuit
uri: file://./install/lib/libzenoh_flow_pure_pursuit.so
inputs:
- id: trajectory
type: autoware_auto_msgs_Trajectory
- id: kinematic_state
type: autoware_auto_msgs_VehicleKinematicState
outputs:
- id: control_cmd
type: autoware_auto_msgs_VehicleControlCommand
- id: zenoh_flow_simulator
uri: file://./install/lib/libzenoh_flow_simulator.so
inputs:
- id: tick
type: u64
- id: init_pose
type: geometry_msgs_PoseWithCovarianceStamped
- id: control_cmd
type: autoware_auto_msgs_VehicleControlCommand
- id: state_cmd
type: autoware_auto_msgs_VehicleStateCommand
outputs:
- id: kinematic_state
type: autoware_auto_msgs_VehicleKinematicState
- id: state_report
type: autoware_auto_msgs_VehicleStateReport
sources:
- id: zenoh_flow_tick_source
uri: file://./target/release/libzenoh_flow_tick_source.so
output:
id: tick
type: u64
configuration:
hz: 25
- id: zenoh_flow_init_pose
uri: file://./install/lib/libzenoh_flow_init_pose.so
output:
id: init_pose
type: geometry_msgs_PoseWithCovarianceStamped
- id: zenoh_flow_goal_pose
uri: file://./install/lib/libzenoh_flow_goal_pose.so
output:
id: goal_pose
type: geometry_msgs_PoseStamped
- id: zenoh_flow_pcd_map_loader
uri: file://./install/lib/libzenoh_flow_pcd_map_loader.so
output:
id: log
type: Str
- id: zenoh_flow_osm_map_loader
uri: file://./install/lib/libzenoh_flow_osm_map_loader.so
output:
id: log
type: Str
- id: zenoh_flow_lane_planner
uri: file://./install/lib/libzenoh_flow_lane_planner.so
output:
id: log
type: Str
- id: zenoh_flow_parking_planner
uri: file://./install/lib/libzenoh_flow_parking_planner.so
output:
id: log
type: Str
sinks:
- id: zenoh_flow_pcd_map_loader_monitor
uri: file://./target/release/libzenoh_flow_system_monitor.so
input:
id: log
type: Str
- id: zenoh_flow_osm_map_loader_monitor
uri: file://./target/release/libzenoh_flow_system_monitor.so
input:
id: log
type: Str
- id: zenoh_flow_lane_planner_monitor
uri: file://./target/release/libzenoh_flow_system_monitor.so
input:
id: log
type: Str
- id: zenoh_flow_parking_planner_monitor
uri: file://./target/release/libzenoh_flow_system_monitor.so
input:
id: log
type: Str
links:
- from:
node: zenoh_flow_osm_map_loader
output: log
to:
node: zenoh_flow_osm_map_loader_monitor
input: log
- from:
node: zenoh_flow_pcd_map_loader
output: log
to:
node: zenoh_flow_pcd_map_loader_monitor
input: log
- from:
node: zenoh_flow_lane_planner
output: log
to:
node: zenoh_flow_lane_planner_monitor
input: log
- from:
node: zenoh_flow_parking_planner
output: log
to:
node: zenoh_flow_parking_planner_monitor
input: log
- from:
node: zenoh_flow_init_pose
output: init_pose
to:
node: zenoh_flow_simulator
input: init_pose
- from:
node: zenoh_flow_goal_pose
output: goal_pose
to:
node: zenoh_flow_global_planner
input: goal_pose
- from:
node: zenoh_flow_global_planner
output: route
to:
node: zenoh_flow_local_planner
input: route
- from:
node: zenoh_flow_local_planner
output: trajectory
to:
node: zenoh_flow_pure_pursuit
input: trajectory
- from:
node: zenoh_flow_local_planner
output: state_cmd
to:
node: zenoh_flow_simulator
input: state_cmd
- from:
node: zenoh_flow_simulator
output: kinematic_state
to:
node: zenoh_flow_global_planner
input: current_pose
- from:
node: zenoh_flow_simulator
output: kinematic_state
to:
node: zenoh_flow_pure_pursuit
input: kinematic_state
- from:
node: zenoh_flow_simulator
output: kinematic_state
to:
node: zenoh_flow_local_planner
input: kinematic_state
- from:
node: zenoh_flow_simulator
output: state_report
to:
node: zenoh_flow_local_planner
input: state_report
- from:
node: zenoh_flow_pure_pursuit
output: control_cmd
to:
node: zenoh_flow_simulator
input: control_cmd
- from:
node: zenoh_flow_tick_source
output: tick
to:
node: zenoh_flow_simulator
input: tick