How to Navigate Within Preferred Lanes – ROS 2 Navigation

9-send-to-goal

In this tutorial, I will show you how to navigate using preferred lanes using the ROS 2 Navigation Stack (also known as Nav2). Here is the final output you will be able to achieve after going through this tutorial:

Real-World Applications

The application that we will develop in this tutorial can be used in a number of real-world robotic applications: 

  • Hospitals and Medical Centers
  • Hotels (e.g. Room Service)
  • House
  • Offices
  • Restaurants
  • Warehouses
  • And more…

We will focus on creating an application that will enable an autonomous mobile robot to move along pre-specified paths on a warehouse or factory floor.

Prerequisites

You can find the files for this post here on my Google Drive. Credit to this GitHub repository for the code.

Create a World

Open a terminal window, and move to your package.

cd ~/dev_ws/src/two_wheeled_robot/worlds

Make sure this world is inside this folder. The name of the file is warehouse_preferred_lanes.world.

Create a Map

Open a terminal window, and move to your package.

cd ~/dev_ws/src/two_wheeled_robot/maps/warehouse_world

Make sure the pgm and yaml map files are inside this folder.

My world map is made up of two files:

  • warehouse_world_preferred_lanes.pgm
  • warehouse_world_preferred_lanes.yaml

Create a Filter Mask

Now we need to create a mask that identifies the preferred lanes. 

This tutorial has instructions on how to use a graphics editor like GIMP (you can install using the sudo apt-get install gimp command) to prepare the filter mask. 

You will start with a copy of the world file you want to use. In this tutorial, I am going to use my warehouse_world_preferred_lanes.pgm file. You need to edit this file so that free travel lanes are white and keepout zones are black.

My filter mask is made up of two files:

  • lanes_rotated.pgm
  • lanes.yaml

Both of these files are located in my ~/dev_ws/src/two_wheeled_robot/maps/warehouse_world/ folder.

Create the Parameters File

Let’s create the parameters file.

Open a terminal window, and move to your package.

cd ~/dev_ws/src/two_wheeled_robot/params/warehouse_world

Add this file (preferred_lanes_params.yaml).

Create the RViz Configuration File

Let’s create the RViz configuration file.

Open a terminal window, and move to your package.

cd ~/dev_ws/src/two_wheeled_robot/rviz/warehouse_world

Add this file (nav2_config_preferred_lanes.rviz).

Create the Launch File

Let’s create the launch file.

Open a terminal window, and move to your package.

cd ~/dev_ws/src/two_wheeled_robot/launch/warehouse_world

Add this file (warehouse_world_preferred_lanes.launch.py).

Launch the Launch File

We will now build our package.

cd ~/dev_ws/
colcon build

Open a new terminal and launch the robot in a Gazebo world. 

ros2 launch two_wheeled_robot warehouse_world_preferred_lanes.launch.py
1-pre-snap-warehouse-robot
1-pre-snap-warehouse-robot-2

Wait for the robot to snap to the estimated initial location within RViz. This process should take a minute or two.

3-post-snap-warehouse-robot

You might notice that the robot’s pose in RViz is not aligned with the pose in Gazebo. Localization using the AMCL (Adaptive Monte Carlo Localization) package is really sensitive to the initial pose estimate. The trick is to make sure the initial location of the robot is in a location with a lot of distinctively shaped obstacles (i.e. the shelves and boxes) for the LIDAR to read. 

Even though the initial pose was set when we launched the robot, it is likely that the estimate in RViz is pretty bad. Let’s set the initial pose again by clicking the 2D Pose Estimate button at the top of RViz and then clicking on the map.

2-2d-pose-estimate-button

You can also set the initial pose by opening a new terminal window and typing the following command (all of this stuff below is a single command).

ros2 topic pub -1 /initialpose geometry_msgs/PoseWithCovarianceStamped '{ header: {stamp: {sec: 0, nanosec: 0}, frame_id: "map"}, pose: { pose: {position: {x: -3.7, y: 9.0, z: 0.0}, orientation: {w: 1.0}}, } }'
4-pose-set-command
5-post-snap-warehouse-robot

When the robot snaps to the location, the map and odom axes should be pretty close to each other right at the origin of the map (x=0, y=0).

6-map-odom-close-together
7-map-odom-close-together

Now send the robot to a goal that is inside the preferred lane (i.e. the white space) by clicking the “Nav2 Goal” button at the top of RViz and clicking on a goal location.

8-nav2-goal-button

The robot will move to the goal, following the lane along the way.

9-send-to-goal-1
10-warehouse-robot

A success message will print in the terminal window once the robot has reached the goal location.

That’s it! Keep building!