Hike Planner

I used basic heuristic AI methods to take a map with altitude information and plot the easiest route from point A to point B. Working on integrating it with Google Maps to be used for hikers around the world, hopefully I will get to it before Google does.

This code uses the A* algorithm to search for points with an admissible heuristic and binary min-heap / hash of bits for internal storage / record keeping.

The source is in Java and available and in the image the red represents places on the map the algorithm considered moving and the red line is the path it chose.

It should work on any x,y,z topographical map.

Team Members: Michael Boone

C 2025 Michael Boone