-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmove_base.launch
21 lines (14 loc) · 1.05 KB
/
move_base.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<launch>
<node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen">
<rosparam file="$(find jackal_navigation)/params/costmap_common_params.yaml" command="load" ns="global_costmap" />
<rosparam file="$(find jackal_navigation)/params/costmap_common_params.yaml" command="load" ns="local_costmap" />
<rosparam file="$(find jackal_navigation)/params/map_nav_params/local_costmap_params.yaml" command="load" />
<rosparam file="$(find jackal_navigation)/params/map_nav_params/global_costmap_params.yaml" command="load" />
<rosparam file="$(find jackal_navigation)/params/base_local_planner_params.yaml" command="load" />
<rosparam file="$(find jackal_navigation)/params/move_base_params.yaml" command="load" />
<param name="base_global_planner" type="string" value="navfn/NavfnROS" />
<param name="base_local_planner" value="teb_local_planner/TebLocalPlannerROS"/>
<param name="controller_frequency" value="10.0" />
<remap from="odom" to="odometry/filtered" />
</node>
</launch>