MikeDegany / GlobalPlanner

The implementation of a global planner using A* algorithm as a plugin for ROS-Navigation stack.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GlobalPlanner

One of the main advantages of ROS is that programs can be modular. This repo is part of a project for motion planning for autonmous vehicles in dynamic environments. The project uses Hierarchical approach in order to make the best planner considering the design criteria. A hierarchical approach combines different motion planning techniques in two stages: Global Planning, and Local Planning, and this repo is designed to solve the Global planning problem. The implementation of a global planner using A* algorithm as a plugin for ROS-Navigation stack. Take a look at the following address to follow the instruction on how to make a plugin for ROS Navigation stack: Writing A Global Path Planner As Plugin in ROS.

It does not matter what kind of local planner you are going to use. The following will explain how to use this planner with the well known turtlebot package.

  1. Clone this repository to your workspace (Open Terminal : Ctrl+Alt+t, and copy each line below to your command line using : Ctrl+c and Ctrl+Shift+v)
mkdir -p ~/globalplanner_ws/src
cd ~/globalplanner_ws/src
git clone https://github.com/Dehghanni/GlobalPlanner.git
  1. Compile the source
cd ..
catkin_make --pkg astar_planner 
  1. You can install all the packages of turtlebot if you want or if you are not well familiar with ROS using the following command.
sudo apt-get install ros-[ROS distribution]-turtlebot* 

In any case, we are going to work with turtlebot-navigation package.

  1. roscd to turtlebot_navigation package. Go to the launch/includes directory and add following line in the file move_base.launch.xml as the super user (sudo) : <param name="base_global_planner" value="astar/Astar" />

  2. Launch stage and rviz with turtlebot:

    roslaunch turtlebot_stage turtlebot_in_stage.launch

  3. Now click on “2D nav goal” button (at the top) in rviz and choose a goal location.


This repository is part of the project for implementing global planner using A* algorithm and Gradient Descent method. There are two main classes: ‍‍‍Astar, and GradientDescent. As is obvious, the first one is to implement A* algorithm and the latter one is designed to reconstruct the path with gradient descent method. The environment of the robot is represented as a Grid. The grid consists of many squares which we call them Cells in this project. Every Cell has an index and a value. First, the value of the cells(grid squares or pixels of the map) of a part of the map will be calculated using A* method. A* is an informed graph based search method. Therefore, it only process the part of the map that the path is more likely to be in that. In order to do so, it uses a heuristic which has been defined as Eucleaden Distance in this project. Then, the quantifyed map will be used to calculate the interpolated gradient descent, which will be used to reconstruct the path.


Further descriptions will be added soon..

About

The implementation of a global planner using A* algorithm as a plugin for ROS-Navigation stack.

License:GNU General Public License v3.0


Languages

Language:C++ 83.8%Language:CMake 16.2%