Skip to content

This program solves orienteering courses with the A* algorithm for a given terrain image, height data, and set of course coordinates.

Notifications You must be signed in to change notification settings

Zlass/OreinteeringSolver

Repository files navigation

OreinteeringSolver

This program solves orienteering courses with the A* algorithm for a given terrain image, height data, and set of course coordinates.

Requires

Python Image Library(PIL)

pip install Pillow

Run

python OrienteeringSearch.py < map_image_file > < map_heights_file > < output_file > < course_file >

  • < map_image_file > Name of map file to use
  • < map_heights_file > Name of height values to use
  • < output_file > Filename to output to
  • < course_file > Name of orienteering course file

ex. python OrienteeringSearch.py 'terrain.png', 'mpp.txt', 'result.png', 'brownCourse.txt'

About

This program solves orienteering courses with the A* algorithm for a given terrain image, height data, and set of course coordinates.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages