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

https://github.com/manalisbhavsar/route-optimization-indian-capitals

Python program to compute the shortest path between Indian state capitals using Single Source Shortest Path (SSSP) Algorithm. Fetched distance data from Google Maps, structured it into a DataFrame, and implemented algorithms like Dijkstra’s to optimize travel routes efficiently.
https://github.com/manalisbhavsar/route-optimization-indian-capitals

data-structures-and-algorithms dijkstra-algorithm google-maps-api google-maps-python googlemaps python single-source-shortest-path

Last synced: 4 months ago
JSON representation

Python program to compute the shortest path between Indian state capitals using Single Source Shortest Path (SSSP) Algorithm. Fetched distance data from Google Maps, structured it into a DataFrame, and implemented algorithms like Dijkstra’s to optimize travel routes efficiently.

Awesome Lists containing this project

README

        

# Python program to compute the shortest path between Indian state capitals
Uses Single Source Shortest Path (SSSP) Algorithm. Fetched distance data from Google Maps, structured it into a DataFrame, and implemented algorithms like Dijkstra’s to optimize travel routes efficiently.

Tech Stack:
Python (for implementing the algorithm and the overall logic)
Google Maps API (for fetching distance data)
Google Maps Python Client (for interacting with the API)
Dijkstra’s Algorithm (for shortest path calculation)
Data Structures (using arrays for graph representation and shortest path calculation)