Compare commits

...

2 Commits

Author SHA1 Message Date
21fc9d6874 add titles and colour to line graphs 2024-11-13 22:05:08 +00:00
cdfc56d7fe fix scaling for time graphs 2024-11-13 20:38:47 +00:00

View File

@ -13,6 +13,8 @@ import Point exposing(Point, Pos ,decoder)
import Svg exposing (Svg, svg, rect, circle, g, polyline) import Svg exposing (Svg, svg, rect, circle, g, polyline)
import Svg.Attributes as S exposing import Svg.Attributes as S exposing
( viewBox ( viewBox
, preserveAspectRatio
, transform
, x, y , x, y
, r, rx, ry , r, rx, ry
, cx, cy , cx, cy
@ -220,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
@ -232,33 +235,46 @@ measureView fn allPoints =
(String.fromFloat (p.time - startTime)) ++ "," ++ (String.fromFloat (p.time - startTime)) ++ "," ++
(String.fromFloat c) ++ ", " (String.fromFloat c) ++ ", "
Nothing -> "" Nothing -> ""
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
[ H.style "width" (px portalWidth) [ width portalWidth
, viewBox ("0 0 " ++ (String.fromFloat (Point.duration allPoints)) ++ " 150") , height 200
, preserveAspectRatio "none"
] ]
[ g [ g
[ fill "none" [ stroke colour
, stroke "red" , strokeWidth "2"
, strokeWidth "3" , transform ( "scale(" ++ (String.fromFloat (portalWidth / maxX)) ++
", " ++ (String.fromFloat (200 / maxY)) ++")" ++
"translate(0, " ++ (String.fromFloat maxY) ++") scale(1, -1)")
] ]
[ [
polyline polyline
[ fill "none" [ fill "none"
, style "vector-effect" "non-scaling-stroke"
, 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
@ -301,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 =