An open API service indexing awesome lists of open source software.

https://github.com/mkner/road-network-paths

Shortest road network paths with Open Street Map using a Dijkstra/A* Combo Algorithm
https://github.com/mkner/road-network-paths

a-star-algorithm autonomous-vehicles dijkstra-algorithm mission-planning open-street-map shortest-path-algorithm

Last synced: 4 months ago
JSON representation

Shortest road network paths with Open Street Map using a Dijkstra/A* Combo Algorithm

Awesome Lists containing this project

README

        

## Mission Planning - Shortest Path in a Road Network

Shortest road network paths with Open Street Map using a Dijkstra/A* Combo Algorithm

Finds a shortest path in a road network graph.

This shortest path algorithm combines Dijkstra's and A* algorithms into one function. The type is selectable and Dijkstras is treated as a special case of A*

The heuristic function can easily be modified to accomplish distance related variants.

An example shows a detour attempt to bypass the shortest path.