In the previous section, we discussed how to configure the navigation stack. We now have to create a launch file to start the navigation stack with all its configuration.
Creating a launch file for the navigation stack
Getting ready
We will create a new file in the chapter7_tutorials/launch folder with the name move_base.launch and put the following code there:
<?xml version="1.0"?>
<launch>
<!-- Run the map server -->
<node name="map_server" pkg="map_server" type="map_server" args="$(find chapter7_tutorials)/maps/map.yaml" output="screen"/>
<include file="$(find amcl)/examples/amcl_diff.launch" >
</include>
<node pkg="...