richardos / occupancy-grid-a-star

A Python implementation of the A* algorithm in a 2D Occupancy Grid Map

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2D grid map A*

A Python implementation of the A* algorithm in a 2D Occupancy Grid Map, based on Claus Brenner's Path Planning lectures.

Requirements

The implementation runs on both Python 2 and 3. Additionally, it requires the following python packages (available via pip):

  • numpy
  • pypng
  • matplotlib

Examples

Two examples are given for both binary and occupancy grid maps, each one with different allowed movements (4-connectivity and 8-connectivity respectively). Note that the examples are assuming that the directory containing the provided modules (i.e. gridmap.py, a_star.py, utils.py) is on sys.path.

About

A Python implementation of the A* algorithm in a 2D Occupancy Grid Map

License:MIT License


Languages

Language:Python 100.0%