Skip to content

Commit dd3a7a8

Browse files
authored
refactor(simple_planning_simulator): remove static odom tf publisher (#7265)
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
1 parent 42a6340 commit dd3a7a8

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

simulator/simple_planning_simulator/launch/simple_planning_simulator.launch.py

+1-17
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
import launch
1616
from launch.actions import DeclareLaunchArgument
17-
from launch.actions import GroupAction
1817
from launch.actions import OpaqueFunction
1918
from launch.substitutions import LaunchConfiguration
2019
from launch_ros.actions import Node
@@ -78,22 +77,7 @@ def launch_setup(context, *args, **kwargs):
7877
],
7978
)
8079

81-
map_to_odom_tf_publisher = Node(
82-
package="tf2_ros",
83-
executable="static_transform_publisher",
84-
name="static_map_to_odom_tf_publisher",
85-
output="screen",
86-
arguments=[
87-
"--frame-id",
88-
"map",
89-
"--child-frame-id",
90-
"odom",
91-
],
92-
)
93-
94-
group = GroupAction([simple_planning_simulator_node, map_to_odom_tf_publisher])
95-
96-
return [group]
80+
return [simple_planning_simulator_node]
9781

9882

9983
def generate_launch_description():

0 commit comments

Comments
 (0)