Skip to content

Commit

Permalink
twist -> odometry (autowarefoundation#109)
Browse files Browse the repository at this point in the history
Co-authored-by: Takayuki Murooka <takayuki.murooka@tier4.jp>
  • Loading branch information
2 people authored and tkimura4 committed Dec 10, 2021
1 parent 5a48271 commit 76fa128
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions launch/control_launch/launch/control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def launch_setup(context, *args, **kwargs):
namespace="trajectory_follower",
remappings=[
("~/input/reference_trajectory", "/planning/scenario_planning/trajectory"),
("~/input/current_velocity", "/localization/twist"),
("~/input/current_velocity", "/localization/kinematic_state"),
("~/input/current_steering", "/vehicle/status/steering"),
("~/output/control_raw", "lateral/control_cmd"),
("~/output/predicted_trajectory", "predicted_trajectory"),
Expand All @@ -79,7 +79,7 @@ def launch_setup(context, *args, **kwargs):
namespace="trajectory_follower",
remappings=[
("input/reference_trajectory", "/planning/scenario_planning/trajectory"),
("input/current_velocity", "/localization/twist"),
("input/current_velocity", "/localization/kinematic_state"),
("output/control_raw", "lateral/control_cmd"),
],
parameters=[
Expand All @@ -95,7 +95,7 @@ def launch_setup(context, *args, **kwargs):
name="velocity_controller",
namespace="trajectory_follower",
remappings=[
("~/current_velocity", "/localization/twist"),
("~/current_velocity", "/localization/kinematic_state"),
("~/control_cmd", "longitudinal/control_cmd"),
("~/current_trajectory", "/planning/scenario_planning/trajectory"),
],
Expand Down Expand Up @@ -132,7 +132,7 @@ def launch_setup(context, *args, **kwargs):
name="lane_departure_checker_node",
namespace="trajectory_follower",
remappings=[
("~/input/twist", "/localization/twist"),
("~/input/odometry", "/localization/kinematic_state"),
("~/input/lanelet_map_bin", "/map/vector_map"),
("~/input/route", "/planning/mission_planning/route"),
("~/input/reference_trajectory", "/planning/scenario_planning/trajectory"),
Expand Down

0 comments on commit 76fa128

Please sign in to comment.