Compare commits
2 Commits
7b8e07d3ba
...
cf6d4cf9c0
Author | SHA1 | Date | |
---|---|---|---|
cf6d4cf9c0 | |||
a762245d86 |
@ -8,8 +8,8 @@ import Iso8601
|
|||||||
type alias Point =
|
type alias Point =
|
||||||
{ lat : Float
|
{ lat : Float
|
||||||
, lon : Float
|
, lon : Float
|
||||||
, ele : Float
|
, ele : Maybe Float
|
||||||
, time : Time.Posix
|
, time : Maybe Time.Posix
|
||||||
}
|
}
|
||||||
|
|
||||||
type alias Track = List Point
|
type alias Track = List Point
|
||||||
@ -25,8 +25,8 @@ timeDecoder = XD.andThen (\ts ->
|
|||||||
pointDecoder = XD.map4 Point
|
pointDecoder = XD.map4 Point
|
||||||
(floatAttr "lat")
|
(floatAttr "lat")
|
||||||
(floatAttr "lon")
|
(floatAttr "lon")
|
||||||
(path ["ele"] (single XD.float))
|
(XD.maybe (path ["ele"] (single XD.float)))
|
||||||
(path ["time"] (single timeDecoder))
|
(XD.maybe (path ["time"] (single timeDecoder)))
|
||||||
|
|
||||||
|
|
||||||
gpxDecoder =
|
gpxDecoder =
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
module Fixtures exposing (threepoints, threepoints_expected)
|
module Fixtures exposing (threepoints, threepoints_expected)
|
||||||
import Track exposing (Track, Point)
|
import Track exposing (Track, Point)
|
||||||
import Time
|
import Time
|
||||||
|
import Maybe
|
||||||
|
|
||||||
|
|
||||||
threepoints = """
|
threepoints = """
|
||||||
@ -64,7 +65,7 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
threepoints_expected =
|
threepoints_expected =
|
||||||
[ (Point 51.600643 -0.01856 64.8 (Time.millisToPosix 1729669252256))
|
[ (Point 51.600643 -0.01856 (Just 64.8) (Just (Time.millisToPosix 1729669252256)))
|
||||||
, (Point 51.600679 -0.018179 65.5 (Time.millisToPosix 1729669255259))
|
, (Point 51.600679 -0.018179 (Just 65.5) (Just (Time.millisToPosix 1729669255259)))
|
||||||
, (Point 51.600697 -0.018064 66.2 (Time.millisToPosix 1729669256231))
|
, (Point 51.600697 -0.018064 (Just 66.2) (Just (Time.millisToPosix 1729669256231)))
|
||||||
]
|
]
|
||||||
|
@ -4,6 +4,7 @@ import Fixtures
|
|||||||
import Track exposing (Track, Point)
|
import Track exposing (Track, Point)
|
||||||
import Test exposing (..)
|
import Test exposing (..)
|
||||||
import Expect exposing (Expectation)
|
import Expect exposing (Expectation)
|
||||||
|
import Time
|
||||||
|
|
||||||
specs: Test
|
specs: Test
|
||||||
specs =
|
specs =
|
||||||
@ -13,6 +14,19 @@ specs =
|
|||||||
case Track.parse Fixtures.threepoints of
|
case Track.parse Fixtures.threepoints of
|
||||||
(Ok trk) -> Expect.equalLists Fixtures.threepoints_expected trk
|
(Ok trk) -> Expect.equalLists Fixtures.threepoints_expected trk
|
||||||
_ -> Expect.fail "not ok"
|
_ -> Expect.fail "not ok"
|
||||||
|
, test "missing child ele node in track point" <|
|
||||||
|
\_ ->
|
||||||
|
let
|
||||||
|
xml = String.replace
|
||||||
|
"<ele>64.8</ele>"
|
||||||
|
""
|
||||||
|
Fixtures.threepoints
|
||||||
|
in
|
||||||
|
case Track.parse xml of
|
||||||
|
Ok (p::pts) -> Expect.equal p (Point 51.600643 -0.01856 Nothing (Just (Time.millisToPosix 1729669252256)))
|
||||||
|
Ok _ -> Expect.fail "empty list"
|
||||||
|
(Err f) -> Expect.fail f
|
||||||
|
|
||||||
, test "multiple trksegs are coalesced" <|
|
, test "multiple trksegs are coalesced" <|
|
||||||
\_ ->
|
\_ ->
|
||||||
let
|
let
|
||||||
|
Loading…
Reference in New Issue
Block a user