scls19fr / GPX.jl

A Julia GPX parser (ie reader) and creator (ie writer). GPX (GPS eXchange Format) is an XML based file format for GPS tracks.
MIT License
6 stars 6 forks source link

Fix for time field with optional milliseconds #8

Closed CMGeldenhuys closed 3 years ago

CMGeldenhuys commented 3 years ago

This fixes #7 by implementing the millisecond format code. The fix checks for if a period('.') is present within the string, to be parsed, if so the parser includes the millisecond format code (.sss), else reverts to the olddateformat`.

scls19fr commented 3 years ago

Thanks @CMGeldenhuys for your contribution!