Skip to content

Commit e2c43a0

Browse files
authored
Switch to new-style static_transform_publisher arguments (ros-navigation#134)
Signed-off-by: mini-1235 <mauricepurnawan@gmail.com>
1 parent 1e2489d commit e2c43a0

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

nav2_gps_waypoint_follower_demo/launch/mapviz.launch.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ def generate_launch_description():
2929
package="tf2_ros",
3030
executable="static_transform_publisher",
3131
name="swri_transform",
32-
arguments=["0", "0", "0", "0", "0", "0", "map", "origin"]
32+
arguments=[
33+
'--x', '0',
34+
'--y', '0',
35+
'--z', '0',
36+
'--roll', '0',
37+
'--pitch', '0',
38+
'--yaw', '0',
39+
'--frame-id', 'map',
40+
'--child-frame-id', 'origin'
41+
]
3342
)
3443
])

0 commit comments

Comments
 (0)