Skip to main content

A package for plotting and animating .gpx files

Project description

walkmapper

A Python package for plotting and animating your walk/run/ bike ride routes.

walkmapper requires only a few external packages. These can be installed by navigating to where the package is installed on your machine using the terminal, and then issuing the following command:

pip install -r requirements.txt

You can then run the example script:

python example.py

The package works by analyzing .gpx files, a common file format used by GPS devices. The Asics Runkeeper app was used in the development of this package, as it allows you to record GPS locations on your smart phone and export them from your account in the browser.

Open Street Map is a great resource for grabbing maps to use as backgrounds. Just select "Share" on the map sidebar, size your image with "Set custom dimensions", and download. Rename the photo using the methods described below, allowing the package to properly parse the latitudes and longitudes.


The class SingleRoute contains methods for analyzing and plotting a single route. It is also possible to obfuscate your address with a privacy bubble if you plan on sharing on the internet:

from walkmapper.routes import SingleRoute

route = SingleRoute("path/to/your/file.gpx", home_lat=45.0000, home_lon=-
                    122.0000, privacy_bubble_rad=150)

From here you can plot the .gpx file over a map image using the SingleRoute.plot method. The map image should have the following format: Description_UpperRightLat_UpperRightLon_LowerLeftLat_LowerLeftLon.png. If a latitude or longitude is negative, its value should be preceded by an ** m**. For example, a map centered on Portland, OR would have the file name: Portland_45.5372_m122.5831_45.4761_m122.7077.png. Providing the coordinates of the upper right and lower left corners of the map image in the title allows the plotting functions to parse these values and put appropriate boundaries on the matplotlib images.

The function map_file_name in walkmapper.utils makes formatting an image title far easier:

from walkmapper.utils import map_file_name

# this function automatically renames the image
map_file_name("images/portland.png", 45.5372, -
              122.5831, 45.4761, -122.7077, "Portland")

# saves over images/portland.png with images/Portland_45.5372_m122.5831_45.4761_m122.7077.png

The class MultipleRoutes contains methods for analyzing, plotting, and animating multiple routes:

from walkmapper.routes import MultipleRoutes

# compile all .gpx files in a folder into a list
files = ["folder/{}".format(i)
         for i in os.listdir("folder") if i.endswith(".gpx")]

# create instance of MultipleRoutes
routes = MultipleRoutes(files, home_lat=45.0000,
                        home_lon=-122.0000, privacy_bubble_rad=150)

Once a MultipleRoutes instance is created, you can display the data several ways:

map_file = "Portland_45.5372_m122.5831_45.4761_m122.7077.png"

# plot all routes with map background
routes.basic_plot(map_file)

# plot heat map
routes.basic_plot(map_file, n_bins=100, alpha=0.5)

# create .mp4 animation displaying one route after another
routes.basic_route_animation(map_file_path, fps=2, dpi=300)

# create an .mp4 animation that draws out each route sequentially
routes.snake_animation(frame_distance=50, map_file_path=map_file, fps=60, dpi=300)

See example.py for an example script, and the directory example for example data, maps, and animations.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

walkmapper-0.0.1.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

walkmapper-0.0.1-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file walkmapper-0.0.1.tar.gz.

File metadata

  • Download URL: walkmapper-0.0.1.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.24.0 CPython/3.6.2

File hashes

Hashes for walkmapper-0.0.1.tar.gz
Algorithm Hash digest
SHA256 db2334f90e090cbb5e7289a675c9f4f8089dd85a4d4c69f9c89693665d5f3439
MD5 738228d92f1523f428b6e03ca0cc3243
BLAKE2b-256 1d3879b1f88d7dc36ba06764dd573baf625ffb7881c446b54abf1d28bc2942cf

See more details on using hashes here.

File details

Details for the file walkmapper-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: walkmapper-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.24.0 CPython/3.6.2

File hashes

Hashes for walkmapper-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6a35eb9072f221236b3c94c43db383df56e1369566ddb1570889b43c2b5dde82
MD5 9e7ac392b3a9267dd0fcffbef97b308c
BLAKE2b-256 8ced1bbcb87df96e621fac742cb0b96e0a013624df5ba793afce55d4e1636a5b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page