From dd49bc50fa81e7f166e47641840af73a338e0d35 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 30 Oct 2024 17:44:40 +0000 Subject: [PATCH] parse trkpt timestamp --- README.md | 3 ++- lib/Track.hs | 9 ++++++++- souplesse.cabal | 3 ++- tests/UnitTest.hs | 6 ++++-- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 56cd981..f3cbf7f 100644 --- a/README.md +++ b/README.md @@ -58,5 +58,6 @@ _Do not look below this line_ * [done] Pos can't include elevation if it's sometimes unknown * do we even need Track? will it ever be anything more than a collection of Points? -* need a real gpx file with namespace decls before we can parse power and stuff +* [done] need a real gpx file with namespace decls before we can parse power and stuff * tests seem to pass without element? +* stop returning bogus data when missing required elements (e.g. time) diff --git a/lib/Track.hs b/lib/Track.hs index 1b717ef..f8a5451 100644 --- a/lib/Track.hs +++ b/lib/Track.hs @@ -7,10 +7,12 @@ module Track ( elevation, cadence, power, + time, parse, Track.length ) where import Data.Time +import qualified Data.Time.ISO8601 import qualified Data.List import Text.XML import Text.XML.Cursor as Cursor @@ -61,6 +63,7 @@ elToPoint c = lat = getAttr "lat" lon = getAttr "lon" ele = child c >>= element (gpxNS "ele") >>= child >>= content + ts = child c >>= element (gpxNS "time") >>= child >>= content gpxtpx = child c >>= element (gpxNS "extensions") >>= child @@ -73,7 +76,11 @@ elToPoint c = (case ele of [e] -> Just $ asFloat e _ -> Nothing) - (UTCTime (toEnum 60631) 43200) + (case ts of + [e] -> case Data.Time.ISO8601.parseISO8601 (Data.Text.unpack e) of + Just utime -> utime + _ -> UTCTime (toEnum 0) 0 + _ -> UTCTime (toEnum 0) 0) (case cadence of [e] -> Just (asInt e) _ -> Nothing) diff --git a/souplesse.cabal b/souplesse.cabal index 0d24a64..713bc28 100644 --- a/souplesse.cabal +++ b/souplesse.cabal @@ -90,7 +90,7 @@ library souplesse-lib , time , containers , text - -- , text-iso8601 + , iso8601-time default-language: GHC2021 test-suite tests @@ -102,5 +102,6 @@ test-suite tests base >=4.7 && <5 , souplesse-lib , raw-strings-qq + , time , HUnit default-language: GHC2021 diff --git a/tests/UnitTest.hs b/tests/UnitTest.hs index 095c115..740fc90 100644 --- a/tests/UnitTest.hs +++ b/tests/UnitTest.hs @@ -9,6 +9,7 @@ import Test.HUnit import qualified System.Exit as Exit import Control.Exception import Debug.Trace (trace, traceShow) +import qualified Data.Time preamble = [r| @@ -39,6 +40,7 @@ onepointWithAttrs = wrap [r| 25.2 + 2.4 128 @@ -88,8 +90,8 @@ test4 = TestCase $ Left err -> assertFailure (displayException err) Right (p:ps) -> assertEqual "matches attributes" - (Just 25.2, Just 128, Just 55) - (Track.elevation p, Track.cadence p, Track.power p) + (Just 25.2, Just 128, Just 55, Data.Time.UTCTime (toEnum 60606) 27299.779) + (Track.elevation p, Track.cadence p, Track.power p, Track.time p) Right [] -> assertFailure "no points" tests :: Test