You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 24, 2025. It is now read-only.
While checking the pause/resume refactoring, I found the implemented functionality is not supported by GPX (i.e., the generated GPX is not in complaince with version 1.1.).
Context
We now store trackpoints that do not have a actual location (i.e., where generated by the user and only contain a timestamp).
And the plan was to export those, so we can actually backup/restore the trackstatistics.
Issue
While KML supports empty gx:coords (i..e, https://developers.google.com/kml/documentation/kmlreference#gxcoord ), this is not supported by GPX as here the lat and lon attributes must be present (and valid numbers).
In GPX a track (trk) contains track segments (trkseq) which contain trkpt that are of type wptType and wptType defines that lat&lon must be present.
Options
We can ignore the standard and just keep everything as it is.
(users might have trouble importing into other software)
We do not export those trackpoints for GPX.
(track cannot be restored exactly from GPX)
While checking the pause/resume refactoring, I found the implemented functionality is not supported by GPX (i.e., the generated GPX is not in complaince with version 1.1.).
Context
We now store trackpoints that do not have a actual location (i.e., where generated by the user and only contain a timestamp).
And the plan was to export those, so we can actually backup/restore the trackstatistics.
Issue
While KML supports empty
gx:coords(i..e, https://developers.google.com/kml/documentation/kmlreference#gxcoord ), this is not supported by GPX as here thelatandlonattributes must be present (and valid numbers).In GPX a track (trk) contains track segments (trkseq) which contain trkpt that are of type wptType and wptType defines that lat&lon must be present.
Options
(users might have trouble importing into other software)
(track cannot be restored exactly from GPX)
@pstorch @rgmf Any suggestions on what to do?