move_base_obstacle.launch 664 B

1234567891011121314
  1. <launch>
  2. <include file="$(find rbx1_nav)/launch/move_base.launch" />
  3. <!-- Run the map server with a blank map -->
  4. <node name="map_server" pkg="map_server" type="map_server" args="$(find rbx1_nav)/maps/blank_map_with_obstacle.yaml"/>
  5. <!-- Run a static transform between /odom and /map -->
  6. <node pkg="tf" type="static_transform_publisher" name="odom_map_broadcaster" args="0 0 0 0 0 0 /map /odom 100" />
  7. <!-- For the TurtleBot, we need Run a static transform between /odom and /odom_combined -->
  8. <node pkg="tf" type="static_transform_publisher" name="odom_combined_broadcaster" args="0 0 0 0 0 0 /odom /odom_combined 100" />
  9. </launch>