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

When importing some gpx-files with usage of extensions will broke the file. I use a downloaded gpx file, which worked with all tools. When importing and exporting the file it...

bug

It would be cool to easier get values from gpx extensions. e.g.: ``` 23.6000003814697265625 2018-02-21T14:30:50.000Z 125 75 ``` ``` >>> point.extensions.get("hr") '125' >>> point.extensions.get("cad") '75' ``` Don't know if it...

enhancement

I've noticed some of my distance measurements have been not quite right, and after some investigation I've realised that it's down to gpxpy using the simpler distance calculations that ignore...

Hello, It's a newbie question: Why is the module imported twice? ``` import gpxpy import gpxpy.gpx ``` https://pypi.org/project/gpxpy/ Thank you.

@tkrajina It looks like there is a bit of a backlog of issues and PRs that need to be reviewed. It's totally understandable if you don't have as much time...

> GPXpy: 1.4.2 > Python: 3.8.3 **Issue** I ran the following line: ```python gpx = gpxpy.parse(self.source_file.open()) ``` and encountered the following issue: ``` free variable 'from_start_to_end' referenced before assignment in...

I ran into this error trying to plot points with matplotlib (see code below to repro). I worked around it by modifying`SimpleTZ.__eq__` to do an isinstance check: ``` def __eq__(self,...

I found that the processing time in serializing xml can be reduced by ~10 % in my test case (of about 13k trackpoints, from 1.4 to 1.2 seconds by cProfile)...

Issue #225 To reduce the processing time and to make the code simple, .isoformat() is used instead of strftime. TZ format is changed from '+/-HHMM' to '+/-HH:MM'. Both of the...

I added __repr__, __str__ and __eq__ methods to the LocationDelta class and documented most of the methods in geo.py. This is my first pull request so please let me know...