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.
Release files for gpxplotter 0.2.12
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| gpxplotter-0.2.12.tar.gz | 25.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| gpxplotter-0.2.12-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 61.5 kB
Release files / gpxplotter-0.2.12.tar.gz
| Download URL | gpxplotter-0.2.12.tar.gz |
|---|---|
| Size | 25.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
920d81ad9ae358173a9c1013d9ce2b7db21e157893260127acfcac2af4ed4949
|
|
BLAKE2b-256 checksum How to use checksums |
8a774af2d5b61775b0bcc88204a3350ad68e0ec820898f690eae4d13bc111e2b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.0 CPython/3.9.19
|
Release files / gpxplotter-0.2.12-py3-none-any.whl
| Download URL | gpxplotter-0.2.12-py3-none-any.whl |
|---|---|
| Size | 35.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
1fd4b2370abd689275c38d1f32c16b1f66113156caffa89116ff5ea48223c3bb
|
|
BLAKE2b-256 checksum How to use checksums |
72bae0ac285a8762763c6cecc95f430877742ed0489ea3e6306a7362ebe13b66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.0 CPython/3.9.19
|