A package for reading gpx files and make some simple plots
Project description
gpxplotter is a Python package for reading .gpx [1] files and make some simple plots. It uses matplotlib to create some simple predefined plots and mplleaflet for making maps.
Examples
Simple example for plotting an elevation profile with heart rate
from gpxplotter import read_gpx_file from gpxplotter.mplplotting import plot_elevation_hr_multi_dist, save_fig from matplotlib import pyplot as plt plt.style.use('seaborn-poster') for track in read_gpx_file('test.gpx'): for i, segment in enumerate(track['segments']): fig = plot_elevation_hr_multi_dist(track, segment) save_fig(fig, 'test-{}.png'.format(i))
Simple example for showing a track in a map, colored by heart rate
from gpxplotter import read_gpx_file from gpxplotter.mplplotting import plot_map, save_map for track in read_gpx_file('test.gpx'): for i, segment in enumerate(track['segments']): fig = plot_map(track, segment, zcolor='pulse') save_map(fig, 'test-{}.html'.format(i))
Installation
gpxplot can be installed via pip:
pip install gpxplot
Note
The intended usage is for displaying heart rate information together with other information. If the gpx file does not comtain heart rate information, the source code will have to be modified accordingly.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size gpxplotter-0.0.4-py3-none-any.whl (28.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size gpxplotter-0.0.4.tar.gz (19.6 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for gpxplotter-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20a09c22ef78dc84aae225a0e030b53d55a527a0d063343400a05bfb0791969d |
|
MD5 | dac94728e9ceb28fa4fb1fa65b69789d |
|
BLAKE2-256 | 067f9251966e372c1e3c371a4647fad07fa213f7f74421939de2f2ce7f47ee2e |