Difference between revisions of "Move base.launch"

From wikidb
Jump to: navigation, search
(Created page with "<pre> <!-- http://wiki.ros.org/navigation/Tutorials/RobotSetup section 2.5 Goebel p82 --> <launch> <master auto="start"/> <!-- Run the map server --> <node name="...")
 
(No difference)

Latest revision as of 13:06, 24 June 2016

<!-- 
  http://wiki.ros.org/navigation/Tutorials/RobotSetup section 2.5
  Goebel p82
-->

<launch>
  <master auto="start"/>

  <!-- Run the map server -->
  <node name="map_server" pkg="map_server" type="map_server" args="$(find floor_hugger)/map/map.yaml"/>

  <!--- 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 floor_hugger)/nav/costmap_common_params.yaml" command="load" ns="global_costmap" />
    <rosparam file="$(find floor_hugger)/nav/costmap_common_params.yaml" command="load" ns="local_costmap" />
    <rosparam file="$(find floor_hugger)/nav/local_costmap_params.yaml" command="load" />
    <rosparam file="$(find floor_hugger)/nav/global_costmap_params.yaml" command="load" />
    <rosparam file="$(find floor_hugger)/nav/base_local_planner_params.yaml" command="load" />
  </node>
</launch>