fake_amcl.launch 883 B

1234567891011121314151617181920212223
  1. <launch>
  2. <param name="use_sim_time" value="false" />
  3. <!-- Set the name of the map yaml file: can be overridden on the command line. -->
  4. <arg name="map" default="/home/zx/Downloads/map.yaml" />
  5. <!-- Run the map server with the desired map -->
  6. <node name="map_server" pkg="map_server" type="map_server" args="$(find rbx1_nav)/maps/$(arg map)"/>
  7. <!-- The move_base node -->
  8. <include file="$(find rbx1_nav)/launch/fake_move_base_amcl.launch" />
  9. <include file="$(find amcl)/examples/amcl_omni.launch" />
  10. <!-- Run fake localization compatible with AMCL output -->
  11. <node pkg="fake_localization" type="fake_localization" name="fake_localization" clear_params="true" output="screen">
  12. <remap from="base_pose_ground_truth" to="odom" />
  13. <param name="global_frame_id" value="map" />
  14. <param name="base_frame_id" value="base_link" />
  15. </node>
  16. </launch>