add titles and colour to line graphs

This commit is contained in:
Daniel Barlow 2024-11-13 22:05:08 +00:00
parent cdfc56d7fe
commit 21fc9d6874

View File

@ -222,9 +222,10 @@ tileImg zoom tilenumber = img [ width 256,
height 256, height 256,
src (tileUrl tilenumber zoom) ] [] src (tileUrl tilenumber zoom) ] []
type alias Colour = String
measureView : (Point -> Maybe Float) -> List Point -> Svg Msg measureView : String -> Colour -> (Point -> Maybe Float) -> List Point -> Svg Msg
measureView fn allPoints = measureView title colour fn allPoints =
let filteredPoints = Point.downsample 300 allPoints let filteredPoints = Point.downsample 300 allPoints
startTime = case allPoints of startTime = case allPoints of
(p::_) -> p.time (p::_) -> p.time
@ -234,21 +235,23 @@ measureView fn allPoints =
(String.fromFloat (p.time - startTime)) ++ "," ++ (String.fromFloat (p.time - startTime)) ++ "," ++
(String.fromFloat c) ++ ", " (String.fromFloat c) ++ ", "
Nothing -> "" Nothing -> ""
maxY = String.fromFloat (List.foldr max 0 (List.filterMap fn filteredPoints)) maxY = List.foldr max 0 (List.filterMap fn filteredPoints)
smaxY = String.fromFloat maxY
maxX = Point.duration allPoints
smaxX = String.fromFloat maxX
string = String.concat (List.map coords filteredPoints) string = String.concat (List.map coords filteredPoints)
in in
svg svg
[ width portalWidth [ width portalWidth
, height 200 , height 200
, preserveAspectRatio "none" , preserveAspectRatio "none"
, viewBox ("0 0 " ++
(String.fromFloat (Point.duration allPoints)) ++
" " ++ maxY)
] ]
[ g [ g
[ stroke "#ee4444" [ stroke colour
, strokeWidth "2" , strokeWidth "2"
, transform ("translate(0, " ++ maxY ++") scale(1, -1)") , transform ( "scale(" ++ (String.fromFloat (portalWidth / maxX)) ++
", " ++ (String.fromFloat (200 / maxY)) ++")" ++
"translate(0, " ++ (String.fromFloat maxY) ++") scale(1, -1)")
] ]
[ [
polyline polyline
@ -257,16 +260,21 @@ measureView fn allPoints =
, S.points string , S.points string
] [] ] []
] ]
, Svg.text_
[ x "97%", y "90%"
, style "fill" "#222244"
, style "text-anchor" "end"
, style "text-shadow" "2px 2px 1px #dddddd"
] [ Svg.text title ]
] ]
cadenceView : List Point -> Svg Msg cadenceView : List Point -> Svg Msg
cadenceView = cadenceView =
measureView (.cadence >> Maybe.map toFloat) measureView "cadence" "#44ee44" (.cadence >> Maybe.map toFloat)
powerView = measureView (.power >> Maybe.map toFloat) powerView = measureView "power" "#994444" (.power >> Maybe.map toFloat)
eleView = eleView = measureView "elevation" "#4444ee" (.pos >> .ele)
measureView (.pos >> .ele)
trackView : Int -> Int -> Zoom -> List Point -> Svg Msg trackView : Int -> Int -> Zoom -> List Point -> Svg Msg
@ -309,9 +317,9 @@ tiles xs ys zoom =
ifTrack track content = ifTrack track content =
case track of case track of
Present t -> content t Present t -> content t
Failure f -> Debug.log f (div [] [ text "failure", text f]) Failure f -> Debug.log f (div [] [ Html.text "failure", Html.text f])
Loading -> div [] [text "loading"] Loading -> div [] [Html.text "loading"]
Empty -> div [] [text "no points"] Empty -> div [] [Html.text "no points"]
canvas centre zoom width height track = canvas centre zoom width height track =