Navigation in ROS2

Aus HSHL Mechatronik
Zur Navigation springen Zur Suche springen

Map building in ROS2

A map is a picture of the area in which the robot is working. A map is used by the robot to plan and localize its trajectories. An occupancy grid map is what a map is in ROS. In plain English, each map cell represents an obstacle by having a certain value. We require a robot with LIDAR, odometry, and the robot environment in order to create a map.

SLAM Simultaneous Localization and Mapping (SLAM) will locate the robot while also making a map. SLAM algorithms are used to make maps of uncharted environments while simultaneously being aware of where the robot is. Cartographer and SLAM-Toolbox are two excellent SLAMs for ROS2.

Cartographer

Cartographer (https://opensource.google/projects/cartographer) is a system that offers real-time simultaneous localization and mapping (SLAM) in 2D and 3D across numerous platforms and sensor configurations. Google creates cartographer, and they have been mapping building interiors using Google Street View.

Cartographer ros is a ROS wrapper for cartographer that enables integration with ROS (https://google-cartographer-ros.readthedocs.io/en/latest/). This is fantastic since you can utilize only the pre-built packages and precisely configure them for your robot. In this unit, this procedure is detailed.

This section will describe the robot's launch file for the cartographer. The primary advantage of a launch file is the ability to launch many nodes from a single file and set a node-specific parameter. The parameters may be supplied in the launch file or loaded from a YAML file. We must launch two nodes in order to launch "cartographer."

1. Launch of the cartographer_node

  • The cartographer_node is provided by the package cartographer_ros
  • The executable is called cartographer_node
  • The parameters it requires are: 1. use_sim_time : is a boolean indicating whether the node must synchronize its time with the simulation

The arguments are: 1. configuration_directory : the directory where to find the configuration files 2. configuration_basename : the config file name

 package='cartographer_ros'
 executable='cartographer_node',
 name='cartographer_node',
 output='screen', 
 parameters=[{'use_sim_time': True}],
 arguments=['-configuration_directory', cartographer_config_dir, 
  '-configuration_basename', configuration_basename]
  • Create a new package in ros2_ws workspace named cartographer_slam inside the src/ directory.
  • Create launch & config directories at ros2_ws/src/cartographer_slam
  • Write a launch file to launch cartographer with the name cartographer.launch.py where the two nodes are launched
  • Create an LUA file named cartographer.lua in the config directory with the following config parameters:
  • Compile everything
  • Launch your program
  • code
  • ros2 launch cartographer_slam cartographer.launch.py
  • Launch RVIZ to see the map being created. You will configure RVIZ to show the data you want to control
  • Add the map display in RVIZ and configure it to see the map you are generating
Fig. 2: 3D view of 4-Wheeled-Robot