Skip to content

Commit df9d504

Browse files
committed
fix(traffic_light_estimator): fix input topic name
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
1 parent 4664e55 commit df9d504

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

perception/traffic_light_estimator/launch/traffic_light_estimator.launch.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<node pkg="traffic_light_estimator" exec="traffic_light_estimator_node" name="traffic_light_estimator" output="screen">
44
<remap from="~/input/vector_map" to="/map/vector_map"/>
55
<remap from="~/input/route" to="/planning/mission_planning/route"/>
6-
<remap from="~/input/observed/traffic_signals" to="observed/traffic_signals"/>
6+
<remap from="~/input/classified/traffic_signals" to="classified/traffic_signals"/>
77
<remap from="~/output/traffic_signals" to="traffic_signals"/>
88
</node>
99
</launch>

perception/traffic_light_estimator/src/node.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ TrafficLightEstimatorNode::TrafficLightEstimatorNode(const rclcpp::NodeOptions &
8787
"~/input/route", rclcpp::QoS{1}.transient_local(),
8888
std::bind(&TrafficLightEstimatorNode::onRoute, this, _1));
8989
sub_traffic_light_array_ = create_subscription<TrafficSignalArray>(
90-
"~/input/observed/traffic_signals", rclcpp::QoS{1},
90+
"~/input/classified/traffic_signals", rclcpp::QoS{1},
9191
std::bind(&TrafficLightEstimatorNode::onTrafficLightArray, this, _1));
9292

9393
pub_traffic_light_array_ =

0 commit comments

Comments
 (0)