waypoint-based-2D-Navigation-in-ROS

2D waypoints will be predefined in ROS based robots to navigate to the destination avoiding obstacles.

A package that will buffer move_base goals until instructed to navigate to all waypoints in sequence.

follow_waypoints

Installation

Install the binaries needed for the package.

sudo apt-get install ros-melodic-follow-waypoints

New features not documented on wiki:

The code can be run in this way:

rosrun follow_waypoints follow_waypoints.py

A wait_duration parameter. This sets wait duration in between waypoints. The default value is set to 0.0 sec.

rosparam set wait_duration 5.0

A distance threshold parameter. Issue the next goal target if the robot reaches within this distance. This has the effect of smoothing motion and not stopping at each waypoint. The default value is set to 0.0 distance which disables the feature.

rosparam set waypoint_distance_tolerance 0.5

Following waypoints will save the list of poses to a file in the following directory:

follow_waypoints/saved_path/pose.csv

To load the previously save path:

rostopic pub /start_journey std_msgs/Empty -1

follow_waypoints

Source

  1. Follow waypoints by Daniel Snider
  2. Follow waypoints by SLAMCore
  3. Follow waypoints by Qbotics Lab
  4. Follow waypoints by Sugbuv
  5. Follow waypoints in ROS Tutorial

GitHub

View Github