Skip to content

Commit

Permalink
refactor(simple_planning_simulator): remove static odom tf publisher (a…
Browse files Browse the repository at this point in the history
…utowarefoundation#7265)

Signed-off-by: Maxime CLEMENT <[email protected]>
  • Loading branch information
maxime-clem authored Jun 6, 2024
1 parent 42a6340 commit dd3a7a8
Showing 1 changed file with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import launch
from launch.actions import DeclareLaunchArgument
from launch.actions import GroupAction
from launch.actions import OpaqueFunction
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node
Expand Down Expand Up @@ -78,22 +77,7 @@ def launch_setup(context, *args, **kwargs):
],
)

map_to_odom_tf_publisher = Node(
package="tf2_ros",
executable="static_transform_publisher",
name="static_map_to_odom_tf_publisher",
output="screen",
arguments=[
"--frame-id",
"map",
"--child-frame-id",
"odom",
],
)

group = GroupAction([simple_planning_simulator_node, map_to_odom_tf_publisher])

return [group]
return [simple_planning_simulator_node]


def generate_launch_description():
Expand Down

0 comments on commit dd3a7a8

Please sign in to comment.