A package for reading gpx files and creating simple plots
Project description
gpxplotter
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
Further examples
Please see the gallery in the documentation for further examples.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gpxplotter-0.2.5.tar.gz
(25.2 kB
view details)
Built Distribution
File details
Details for the file gpxplotter-0.2.5.tar.gz
.
File metadata
- Download URL: gpxplotter-0.2.5.tar.gz
- Upload date:
- Size: 25.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba0cd52dae29518a6046162eb6adaffe7fc9540974455ce71a1c73cdf0b606c4 |
|
MD5 | a6a6ae3d46cea8513680ab854f0fe4fd |
|
BLAKE2b-256 | 4bea85d195fb24df3146d711eecb35c5b9dbc7df21abc94b922a9ebad7c7b9d4 |
File details
Details for the file gpxplotter-0.2.5-py3-none-any.whl
.
File metadata
- Download URL: gpxplotter-0.2.5-py3-none-any.whl
- Upload date:
- Size: 34.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f8c632c82185b620c4e6f489f555333773ebdb9b2c3bdc86f226afef6e43334 |
|
MD5 | 0bab448d748144878156e2e129c25743 |
|
BLAKE2b-256 | addccde5a08eed0339afe2f556f2a2de7193710bbd0a8352c75a7c66a771861a |