parse actual lat/lon from gpx trkpt nodes

This commit is contained in:
Daniel Barlow 2024-10-23 23:49:19 +01:00
parent 4922e4d5d9
commit b78dbda7b8
2 changed files with 13 additions and 8 deletions

View File

@ -1,8 +1,7 @@
module Track exposing (Track, parse)
module Track exposing (Track, Point, parse)
import Result
import Xml.Decode as XD exposing (path, single, list, float)
import Xml.Decode as XD exposing (path, list, floatAttr)
type alias Point =
{ lat : Float
@ -12,11 +11,11 @@ type alias Point =
type alias Track = List Point
pointDecoder = XD.map2 Point
(XD.path ["ele"] (single float))
(XD.path ["ele"] (single float))
(floatAttr "lat")
(floatAttr "lon")
gpxDecoder =
(XD.path [ "trk", "trkseg", "trkpt" ] (XD.list pointDecoder))
(path [ "trk", "trkseg", "trkpt" ] (list pointDecoder))
parse str = XD.run gpxDecoder str

View File

@ -1,7 +1,7 @@
module TrackTest exposing (specs)
import Fixtures
import Track exposing (Track)
import Track exposing (Track, Point)
import Test exposing (..)
import Expect exposing (Expectation)
@ -12,8 +12,14 @@ specs =
\_ ->
let
r = Track.parse Fixtures.threepoints
expected =
[ (Point 51.600643 -0.01856)
, (Point 51.600679 -0.018179)
, (Point 51.600697 -0.018064)
]
in
case r of
(Ok trk) -> Expect.equal (List.length trk) 3
(Ok trk) -> Expect.equalLists trk expected
_ -> Expect.fail "not ok"
]