Skip to content

riturajkaushik/quick_path_planning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Quick path planning

  • A-star algorithm

    • start position, goal position, obstacles and map boundary can take any float values. The algorithm automatically segments the space according to the given resolution.
   obstacles = [[-4, -1, -3, 10], [2.5, 5.0,-8, 5]] #Rectangular obstacles [xmin, xmax, ymin, ymax]
   boundary = [-10, 10, -10, 10] #Map boundary [xmin, xmax, ymin, ymax]
   planner = A_star(obstacles, boundary, resolution=0.8)
   start, goal = [-7,0], [7,5]
   path = planner.plan(start, goal)
-  Path planning can also be visualised

A star planning visualization:

About

Quick and dirty path planning algorithms in python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages