Skip to content

andersle/gpxplotter

gpxplotter

Documentation Status Binder

gpxplotter is a Python package for reading gpx files and creating simple predefined plots using matplotlib and maps using folium.

Please see https://gpxplotter.readthedocs.io/en/latest/ for the latest documentation and the Binder notebooks for examples.

Installation

pip install gpxplotter

Examples

Interactive examples can be explored via Binder.

Simple example for showing a track in a map, colored by heart rate

from gpxplotter import read_gpx_file, create_folium_map, add_segment_to_map

the_map = create_folium_map()
for track in read_gpx_file('ruten.gpx'):
    for i, segment in enumerate(track['segments']):
        add_segment_to_map(the_map, segment, color_by='hr')

# To display the map in a Jupyter notebook:
the_map

map

Further examples

Please see the gallery in the documentation for further examples.

About

gpxplotter reads gpx files and makes some simple plots.

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE
LGPL-2.1
COPYING
LGPL-2.1
COPYING.LESSER

Stars

Watchers

Forks

Packages

No packages published