February 2020
Intermediate to advanced
432 pages
10h 50m
English
In this chapter, we will make use of the code located in the Chapter9_GoPiGo_SLAM folder (https://github.com/PacktPublishing/Hands-On-ROS-for-Robotics-Programming/tree/master/Chapter9_GoPiGo_SLAM). Copy its files to the ROS workspace so that they're available and leave the rest outside the src folder. This way, you will have a cleaner ROS environment:
$ cp -R ~/Hands-On-ROS-for-Robotics-Programming/Chapter9_GoPiGo_SLAM ~/catkin_ws/src/
The code in the aforementioned folder contains two new ROS packages, each one located within a folder that has the same name:
You will ...