gpxpy icon indicating copy to clipboard operation
gpxpy copied to clipboard

gpx-py is a python GPX parser. GPX (GPS eXchange Format) is an XML based file format for GPS tracks.

Results 51 gpxpy issues
Sort by recently updated
recently updated
newest added

There was a typo where 'extreeme' should have obviously been 'extreme' instead. A few minor improvements also.

Closes #211 To preview the docs before publishing to ReadTheDocs, run: ```bash pip install ".[docs]" make -C docs html ``` Then open `docs/_build/html/index.html`.

For my use case, when lxml is installed I get drastically less performance. In the __init__.py it says " > parser may be 'lxml', 'minidom' or None (then it will...

Normally the default namespace for a GPX file is http://www.topografix.com/GPX/1/1. However it doesn't have to be. Many of my files have the default namespace as http://www.garmin.com/xmlschemas/TrackPointExtension/v2 (TrackPointExtension/v2 is a common...

Fixes https://github.com/tkrajina/gpxpy/issues/237. Currently, gpxpy is distributed on PyPI only as a sdist: * https://pypi.org/project/gpxpy/1.5.0/#files Please could you also distribute a wheel? It makes installation faster. More info: * https://pythonwheels.com/ This...

It looks like only the source distribution is uploaded to PyPI: https://pypi.org/project/gpxpy/1.4.2/#files ![image](https://user-images.githubusercontent.com/591645/131213755-eaacc98e-f2ec-40a0-b216-16539bb785e0.png) It would be great to have a Python wheel uploaded there too. This will make it possible...

Travis CI have changed their pricing model making it harder to use with open source projects, and also [builds stopped 9 months ago](https://travis-ci.org/tkrajina/gpxpy), and many projects have switched to GitHub...

`assertEquals` was replaced by `assertEqual`, and the former has been deleted from Python 3.11.

Sorry if I'm being thick and there is an obvious answer for this. I'm looking to get a running distance within a track. Ie, for each GPX point, the distance...