qt_pi/launch/move_base.launch
2018-08-07 01:44:31 +05:30

18 lines
842 B
XML

<launch>
<master auto="start"/>
<!-- Run the map server -->
<node name="map_server" pkg="map_server" type="map_server" args="$(find qt_pi)/map/Untitled.pgm 0.05"/>
<!--- Run AMCL -->
<include file="$(find amcl)/examples/amcl_diff.launch" />
<node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen">
<rosparam file="$(find qt_pi)/config/costmap_common_params.yaml" command="load" ns="global_costmap" />
<rosparam file="$(find qt_pi)/config/costmap_common_params.yaml" command="load" ns="local_costmap" />
<rosparam file="$(find qt_pi)/config/local_costmap_params.yaml" command="load" />
<rosparam file="$(find qt_pi)/config/global_costmap_params.yaml" command="load" />
<rosparam file="$(find qt_pi)/config/base_local_planner_params.yaml" command="load" />
</node>
</launch>