diff --git a/freezing/web/templates/explore/indiv_elev_dist.html b/freezing/web/templates/explore/indiv_elev_dist.html index 407c683..d57f8b0 100644 --- a/freezing/web/templates/explore/indiv_elev_dist.html +++ b/freezing/web/templates/explore/indiv_elev_dist.html @@ -46,12 +46,12 @@ } }, point: { - r: ({index}) => jsonData.speeds[index], + r: ({index}) => jsonData.speeds[index] * jsonData.speeds[index] / 12, }, tooltip: { contents: function ([{index}]) { return "
" + jsonData.labels[index] + " | |
---|---|
" + jsonData.athletes[index] + " " + jsonData.teams[index] + " | |
distance | " + Math.round(jsonData.distances[index]).toLocaleString() + " mi |
elevation | " + Math.round(jsonData.elevations[index]).toLocaleString() + " feet |
speed | " + +jsonData.speeds[index]?.toFixed(1) + "mph |