Resources for “completing the map” of all official hiking trails in Great Smoky Mountains National Park.
Datasets & Maps
Books
Fastest Known Times (FKTs)
There are two supported map completion FKTs recoginzed at fastestknowntime.com. A successful self-supported map completion FKT has not yet been reported.
Nancy East & Chris Ford - Supported Mixed-Gender Team FKT (September 4 to October 3, 2020)
Jeff Woody - Supported Male FKT (July 23 to August 25, 2020)
Efficient Map Completions
Matthew Kirk - Great Smoky Postman (December 2019 to October 2020)
Eric West - Great Smokies Circuit (2019-2022)
- Tableau Visualization - My analysis of daily progress overlaid on the $1 Map.
- Cue Sheet - My turn-by-turn re-creation of 900 Miler progress in Google Sheets.
- GeoJSON Point File - Derived from my Garmin inReach Mini and phone recordings, for analysis in QGIS, Atlas, etc.
- Permits - Permits issued by the Backcountry Office for the entirety of my Circuit hike.
- completingthemap.com - My forthcoming website with details on attempting a self-supported map completion.
Elizabeth Etnier - Day Hiker’s Guide to All the Trails in the Smoky Mountains (Book)
Routing / Optimization
This is the area of greatest interest to those attempting an efficient map completion. The Traveling Salesman Problem is perhaps the most studied routing optimization problem, but the goal of the TSP is to visit points (nodes), not lines (edges/arcs). Hiking all the trails in the park is an arc routing problem that most closely resembles the Chinese Postman Problem.
The impact of elevation change makes the trail network “windy”, as it takes more time/energy to travel uphill. For a self-supported journey, the trail network is also “rural” in that roads or non-required trails can be used to more efficiently complete the map. The Windy Rural Postman Problem (WRPP) is reasonably well known in the literature and algorithms have been created to calculate optimal (or near-optimal) solutions.
- Postman Problems - Python code for solving the Chinese Postman Problem (CPP) and the Rural Postman Problem (RPP). I used this to plan my Great Smokies Circuit hike.
- ArcRoutingLibrary - Java code with solvers for many Postman Problem variants. The code is nearly 10 years old and I have not figured out how to run it on WRPP problems.
- The Chinese-Postman-Method - Interactive tutorial that illustrates the algorithm for solving Postman problems.