f1vis/js/diagrams.js

528 lines
21 KiB
JavaScript
Raw Normal View History

"use strict";
2017-12-11 01:26:27 +01:00
// https://bl.ocks.org/mbostock/3884955
function createLineGraph(containerId, raceData){
// Rough input validation
2017-12-29 17:11:02 +01:00
if(raceData === undefined || raceData.raceInfo === undefined) {
console.error(["Sorry, that raceData is empty. :-(", raceData]);
return; // early return to avoid errors
} else {
2017-12-29 17:13:17 +01:00
console.log(["raceData", raceData]);
}
var enhancedLapData = processor.getEnhancedLapDataPerDriver(raceData);
2017-12-22 13:17:10 +01:00
2017-12-30 01:18:26 +01:00
attachRaceStatistics(enhancedLapData, raceData);
// Configuration
var graphHeight = 720;
var smallGraphHeight = 200;
2017-12-30 19:12:05 +01:00
var svgWidth = 1300;
2017-12-17 23:00:33 +01:00
var linePointSize = 5;
2017-12-30 13:09:45 +01:00
var rectSize = 16;
2017-12-17 23:00:33 +01:00
var amountClickedLines = 0;
2017-12-29 16:42:41 +01:00
//ElemTypes of this graph
var elemTypes = {
line: "line",
linepoint: "linepoint",
pitstoppoint: "pitstoppoint",
endpoint: "endpoint"
};
2017-12-30 18:48:54 +01:00
// -----------------------------------------------------------------------
2017-12-11 01:26:27 +01:00
// set the dimensions and margins of the graph
var marginGraph = {top: 30.0, right: 50, bottom: 10, left: 50.0},
marginSmallGraph = {top: 10, right: marginGraph.right, bottom: 50, left: marginGraph.left},
graphPosWidth = {posX: marginGraph.left, posY: marginGraph.top, width: svgWidth - (marginGraph.left + marginGraph.right), height : graphHeight, totalHeight: marginGraph.top + graphHeight + marginGraph.bottom},
smallGraphPosWidth = {posX: marginSmallGraph.left, posY: graphPosWidth.totalHeight + graphPosWidth.posY + marginSmallGraph.top, width: svgWidth - (marginSmallGraph.left + marginSmallGraph.right), height : smallGraphHeight , totalHeight: marginSmallGraph.top + smallGraphHeight + marginSmallGraph.bottom},
svgHeight = smallGraphPosWidth.totalHeight + graphPosWidth.totalHeight;
2017-12-11 01:26:27 +01:00
// set the ranges
var x = d3.scaleLinear().range([0, graphPosWidth.width]),
x2 = d3.scaleLinear().range([0, smallGraphPosWidth.width]),
y = d3.scaleLinear().range([graphPosWidth.height, 0]),
y2 = d3.scaleLinear().range([smallGraphPosWidth.height, 0]);
2017-12-30 18:48:54 +01:00
var xAxis = d3.axisBottom(x),
yAxis = d3.axisLeft(y);
2017-12-30 23:57:15 +01:00
var xAxisGridlines = d3.axisBottom(x)
.ticks(raceData.lapTimes.size) // One gridline for each lap
.tickSize(-graphPosWidth.height)
.tickFormat("");
2017-12-30 18:48:54 +01:00
var brush = d3.brushX()
.extent([[0, 0], [smallGraphPosWidth.width, smallGraphPosWidth.height]])
2017-12-30 18:48:54 +01:00
.on("brush end", brushed);
var zoom = d3.zoom()
.scaleExtent([1, 5])
.translateExtent([[0, 0], [graphPosWidth.width, graphPosWidth.height]])
.extent([[0, 0], [graphPosWidth.width, graphPosWidth.height]])
2017-12-30 18:48:54 +01:00
.on("zoom", zoomed);
// -----------------------------------------------------------------------
2017-12-11 01:26:27 +01:00
// defines how the passed in Data, at "svg.append" shall be interpreted
var lineDataDefinition = d3.line()
.x(function(d) { return x(d.lap); })
.y(function(d) { return y(d.position); });
var lineDataDefinitionSmall = d3.line()
.x(function(d) { return x2(d.lap); })
.y(function(d) { return y2(d.position); });
2017-12-11 01:26:27 +01:00
// append the svg obgect to the body of the page
// appends a 'group' element to 'svg'
// moves the 'group' element to the top left margin
var svg = d3.select(containerId).append("svg")
.attr("width", svgWidth)
.attr("height", svgHeight);
2017-12-30 18:48:54 +01:00
//----------------------------------------------------------------------
svg.append("defs").append("clipPath")
.attr("id", "clip")
.append("rect")
.attr("width", graphPosWidth.width)
.attr("height", graphPosWidth.height);
2017-12-30 18:48:54 +01:00
var focus = svg.append("g")
.attr("class", "focus")
.attr("transform", "translate(" + graphPosWidth.posX + "," + graphPosWidth.posY + ")");
2017-12-30 18:48:54 +01:00
var context = svg.append("g")
.attr("class", "context")
.attr("height", smallGraphPosWidth.height)
.attr("transform", "translate(" + smallGraphPosWidth.posX + "," + smallGraphPosWidth.posY + ")");
2017-12-30 18:48:54 +01:00
// -----------------------------------------------------------------------
2017-12-11 01:26:27 +01:00
// Scale the range of the data
x.domain([0, raceData.lapTimes.size]);
y.domain([raceData.drivers.length, 1]);
2017-12-30 18:48:54 +01:00
x2.domain(x.domain());
y2.domain(y.domain());
2017-12-11 01:26:27 +01:00
var enhancedLapData = processor.getEnhancedLapDataPerDriver(raceData);
2017-12-29 20:46:13 +01:00
//console.log(["enhancedLapData", enhancedLapData]);
2017-12-11 01:26:27 +01:00
// Adds all lines
enhancedLapData.forEach((driverLapData, driverIndex) => {
2017-12-17 23:19:00 +01:00
//console.log(driverLapData);
2017-12-30 18:48:54 +01:00
focus.append("path")
.data([driverLapData.laps])
.attr("class", "line pathLines")
.attr("data-line", driverLapData.driver.driverId) // custom data to specify the line
2017-12-17 23:45:51 +01:00
.attr("data-opacitychange", 1)
2017-12-17 23:19:00 +01:00
.attr("data-highlighted", 0)
2017-12-29 16:42:41 +01:00
.attr("data-elemtype", elemTypes.line)
.attr("stroke", getColorValue(driverIndex, enhancedLapData.length) )
.attr("d", lineDataDefinition);
2017-12-30 20:13:36 +01:00
context.append("path")
.data([driverLapData.laps])
.attr("class", "line-context")
2017-12-30 20:13:36 +01:00
.attr("data-line", driverLapData.driver.driverId) // custom data to specify the line
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
.attr("data-elemtype", elemTypes.line)
.attr("stroke", getColorValue(driverIndex, enhancedLapData.length) )
.attr("d", lineDataDefinitionSmall);
2017-12-30 20:13:36 +01:00
2017-12-29 20:46:13 +01:00
driverLapData.laps.forEach((singleLap, singleLapIndex)=> {
//console.log(["driverLaps.forEach", singleLap, singleLapIndex]);
if(singleLap.pitStop){
//Appends a circle for each datapoint
2017-12-30 18:48:54 +01:00
focus.selectAll(".pitstoppoint")
2017-12-29 20:46:13 +01:00
.data([singleLap])
.enter().append("circle") // Uses the enter().append() method
.attr("class", "pitstopdot") // Assign a class for styling
2017-12-29 20:46:13 +01:00
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
.attr("data-elemtype", elemTypes.pitstoppoint)
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
.attr("cx", function(d, i) {return x(d.lap) })
.attr("cy", function(d, i) { return y(d.position) })
.attr("r", linePointSize * 1.2)
.on("click", handleClickOnPoint)
.on("dblclick", handleDoubleClickOnPoint)
2017-12-29 20:46:13 +01:00
.on("mouseover", handleMouseOverLinePoint)
.on("mouseout", handleMouseOutLinePoint);
2017-12-30 20:13:36 +01:00
context.selectAll(".pitstoppoint-context")
.data([singleLap])
.enter().append("circle") // Uses the enter().append() method
.attr("class", "pitstopdot") // Assign a class for styling
2017-12-30 20:13:36 +01:00
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
.attr("data-elemtype", elemTypes.pitstoppoint)
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
.attr("cx", function(d, i) {return x2(d.lap) })
.attr("cy", function(d, i) { return y2(d.position) })
.attr("r", linePointSize * 0.5)
.attr("d", lineDataDefinitionSmall);
// Remove data from driverLapData, since we don't need a generic datapoint for this
//driverLapData.laps[singleLapIndex] = {};
2017-12-29 20:46:13 +01:00
}
});
//Appends a circle for each datapoint
2017-12-30 18:48:54 +01:00
focus.selectAll(".linepoint")
.data(driverLapData.laps)
.enter().append("circle") // Uses the enter().append() method
.attr("class", "linedot") // Assign a class for styling
2017-12-29 16:28:34 +01:00
.attr("id", function(d, i) { return "circle-linepoint-" + d.lap + "-" + d.driverId; })
2017-12-17 23:19:00 +01:00
.attr("data-line", driverLapData.driver.driverId)
2017-12-17 23:45:51 +01:00
.attr("data-opacitychange", 0)
2017-12-17 23:19:00 +01:00
.attr("data-highlighted", 0)
2017-12-29 16:42:41 +01:00
.attr("data-elemtype", elemTypes.linepoint)
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
.attr("cx", function(d, i) {return x(d.lap) })
.attr("cy", function(d, i) { return y(d.position) })
.attr("r", linePointSize)
2017-12-29 16:28:34 +01:00
.style("opacity", 0);
//Appends a circle for each datapoint
2017-12-30 18:48:54 +01:00
focus.selectAll(".invisiblelinepoint")
2017-12-29 16:28:34 +01:00
.data(driverLapData.laps)
.enter().append("circle") // Uses the enter().append() method
.attr("class", "linedot") // Assign a class for styling
2017-12-29 16:28:34 +01:00
.attr("circle-id", function(d, i) { return "circle-linepoint-" + d.lap + "-" + d.driverId; })
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 0)
.attr("data-highlighted", 0)
2017-12-29 17:11:02 +01:00
.attr("data-elemtype", elemTypes.linepoint)
2017-12-29 16:28:34 +01:00
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
.attr("cx", function(d, i) {return x(d.lap) })
.attr("cy", function(d, i) { return y(d.position) })
.attr("r", linePointSize*2.4)
2017-12-17 23:19:00 +01:00
.on("click", handleClickOnPoint)
.on("dblclick", handleDoubleClickOnPoint)
.on("mouseover", handleMouseOverLinePoint)
.on("mouseout", handleMouseOutLinePoint)
.style("opacity", 0);
// in case the driver ended the race too early, get the status why he quit
/*TODO: Mouseover for Rectangle*/
var resultOfDriver = raceData.results.filter((result) => { return result.driverId == driverLapData.driver.driverId; });
if(resultOfDriver.length > 0 && getValidEndingStatusIds().indexOf(resultOfDriver[0].statusId) < 0){
var triangle = d3.symbol()
.type(d3.symbolTriangle)
.size(25);
//get Data for last round
2017-12-30 18:48:54 +01:00
focus.selectAll(".endpoint")
.data([driverLapData.laps[driverLapData.laps.length - 1]])
.enter().append("rect") // Uses the enter().append() method
.attr("class", "endpointdot") // Assign a class for styling
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
2017-12-29 16:42:41 +01:00
.attr("data-elemtype", elemTypes.endpoint)
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
2017-12-30 13:14:40 +01:00
.attr("x", function(d, i) { return x(d.lap) - rectSize * 1/2; })
.attr("y", function(d, i) { return y(d.position) - rectSize * 1/2; })
.attr("height", rectSize)
2017-12-29 16:42:41 +01:00
.attr("width", rectSize)
.on("click", handleClickOnPoint)
.on("dblclick", handleDoubleClickOnPoint)
2017-12-29 16:42:41 +01:00
.on("mouseover", handleMouseOverLinePoint)
.on("mouseout", handleMouseOutLinePoint);
2017-12-30 20:13:36 +01:00
context.selectAll(".endpoint")
.data([driverLapData.laps[driverLapData.laps.length - 1]])
.enter().append("rect") // Uses the enter().append() method
//.attr("class", "endpoint") // Assign a class for styling
2017-12-30 20:35:39 +01:00
.attr("class", "zoomable")
2017-12-30 20:13:36 +01:00
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
.attr("data-elemtype", elemTypes.endpoint)
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
.attr("x", function(d, i) { return x2(d.lap) - rectSize * 1/2; })
.attr("y", function(d, i) { return y2(d.position) - rectSize * 1/2; })
.attr("height", rectSize * 0.4)
.attr("width", rectSize * 0.4)
.attr("d", lineDataDefinition);
2017-12-30 20:13:36 +01:00
/* tried with Cross, didn't work, don't know why
svg.selectAll(".endpoint")
.data([driverLapData.laps[driverLapData.laps.length - 1]])
.enter().append("symbolCircle") // Uses the enter().append() method
.attr("size", 300)
.attr("class", "endpoint") // Assign a class for styling
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
.attr("transform", function(d) { return "translate(" + x(d.lap) + "," + y(d.position) + ")"; });
*/
}
2017-12-11 01:26:27 +01:00
});
// Add the X Axis
focus.append("g")
2017-12-30 23:57:15 +01:00
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + graphPosWidth.height + ")")
.call(xAxis);
2017-12-11 01:26:27 +01:00
// Add the Y Axis on both sides
2017-12-30 18:48:54 +01:00
focus.append("g")
2017-12-19 21:35:47 +01:00
.call(
d3.axisLeft(y)
.ticks(raceData.drivers.length)
.tickFormat(function(d) {
return getDriverCodeFromPosAndLap(raceData, 0, d) + " " + d;
})
);
2017-12-30 13:26:15 +01:00
// Add gridlines on x axis to better figure out laps
focus.append("g")
2017-12-30 23:58:33 +01:00
.attr("class", "xAxisGridlines")
.attr("transform", "translate(0," + graphPosWidth.height + ")")
2017-12-30 13:26:15 +01:00
.style("opacity", 0.06)
2017-12-30 23:57:15 +01:00
.call(xAxisGridlines);
2017-12-30 23:57:15 +01:00
//Add driver information on the right side of the graph.
2017-12-30 18:48:54 +01:00
focus.append("g")
2017-12-19 21:35:47 +01:00
.call(
d3.axisRight(y)
.ticks(raceData.drivers.length)
.tickFormat(function(d) {
var driverCode = "";
if(getDriverCodeFromPosAndLap(raceData, raceData.lapTimes.size, d)){
driverCode = getDriverCodeFromPosAndLap(raceData, raceData.lapTimes.size, d);
}else{
driverCode = getDriverCodeFromPosAndLap(raceData, raceData.lapTimes.size - 1, d);
}
return d + " " + driverCode ;
2017-12-19 21:35:47 +01:00
})
)
.attr("transform", "translate( " + (graphPosWidth.width) + ", 0 )");
2017-12-13 00:12:11 +01:00
2017-12-30 18:48:54 +01:00
//----------------------------
context.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + smallGraphPosWidth.height + ")")
2017-12-30 18:48:54 +01:00
.call(d3.axisBottom(x2));
context.append("g")
.attr("class", "brush")
.call(brush)
.call(brush.move, x.range());
svg.append("rect")
.attr("class", "zoom")
.attr("width", graphPosWidth.width)
.attr("height", graphPosWidth.height)
.attr("transform", "translate(" + graphPosWidth.posX + "," + graphPosWidth.posY + ")")
2017-12-30 18:48:54 +01:00
.call(zoom);
//---------------------------------------------------------------------------
2017-12-17 23:19:00 +01:00
function handleClickOnPoint(d,i){
//select elements that are highlightable but are not highlighted
2017-12-17 23:45:51 +01:00
d3.selectAll("[data-opacitychange='" + 1 +"'][data-highlighted='" + 0 +"']")
.style("opacity", 0.10);
2017-12-17 23:19:00 +01:00
// if clicked on already highlighted line, remove highlight
if(this.getAttribute("data-highlighted") == 1){
2017-12-17 23:45:51 +01:00
d3.selectAll("[data-line='" + d.driverId +"'][data-opacitychange='" + 1 +"']")
.style("opacity", 0.10);
2017-12-17 23:45:51 +01:00
d3.selectAll("[data-line='" + d.driverId +"']")
.attr("data-highlighted", 0);
2017-12-17 23:19:00 +01:00
}else{
//select elements that belong to line and are highlightable
2017-12-17 23:45:51 +01:00
d3.selectAll("[data-line='" + d.driverId +"'][data-opacitychange='" + 1 +"']")
2017-12-17 23:19:00 +01:00
.style("opacity", 1);
2017-12-17 23:45:51 +01:00
d3.selectAll("[data-line='" + d.driverId +"']")
.attr("data-highlighted", 1);
2017-12-17 23:19:00 +01:00
}
// if no element highlighted, then everything normal again
2017-12-17 23:45:51 +01:00
var highlightedElements = d3.selectAll("[data-opacitychange='" + 1 +"'][data-highlighted='" + 1 +"']");
2017-12-17 23:19:00 +01:00
if(highlightedElements.size() == 0){
//select elements that are highlightable but are not highlighted
2017-12-17 23:45:51 +01:00
d3.selectAll("[data-opacitychange='" + 1 +"'][data-highlighted='" + 0 +"']")
2017-12-17 23:19:00 +01:00
.style("opacity", 1);
}
}
function handleDoubleClickOnPoint(d,i){
var lapNr = d.lap;
console.log(["doubleClick", d.lap]);
}
function handleMouseOverLinePoint(d, i) {
2017-12-29 17:11:02 +01:00
var elemType = d3.select(this).attr("data-elemtype");
2017-12-29 16:42:41 +01:00
//depending on Pitstop and lap different Texts
var textArr = [];
// Add interactivity
// Use D3 to select element, change color and size
2017-12-29 17:11:02 +01:00
if(elemType === elemTypes.linepoint){
var circleId = "circle-linepoint-" + d.lap + "-" + d.driverId;
var circle = d3.select("#" + circleId);
2017-12-29 16:28:34 +01:00
circle
.style("opacity", 1);
2017-12-29 16:42:41 +01:00
textArr = getLapTextArray(raceData,d);
2017-12-29 17:11:02 +01:00
}else if(elemType === elemTypes.pitstoppoint){
d3.select(this)
.attr("r", linePointSize * 2);
textArr = getPitStopTextArray(raceData,d);
2017-12-29 17:11:02 +01:00
}else if(elemType === elemTypes.endpoint){
2017-12-30 13:14:40 +01:00
var newRectSize = rectSize * 1.5;
2017-12-29 16:42:41 +01:00
d3.select(this)
2017-12-30 13:14:40 +01:00
.attr("height", newRectSize)
.attr("width", newRectSize)
.attr("x", function(d, i) { return x(d.lap) - newRectSize * 1/2; })
.attr("y", function(d, i) { return y(d.position) - newRectSize * 1/2; });
2017-12-29 16:42:41 +01:00
textArr = getEndPointTextArray(raceData,d);
}
2017-12-29 23:23:37 +01:00
var tooltipGroup = svg.append("g")
.attr("id", "t" + d.lap + "-" + d.position + "-" + i); // Unique id so it can be removed later
tooltipGroup.append("rect")
.attr("style", "fill:rgb(225,225,225);stroke:black;stroke-width:2;")
.attr("width", "150")
.attr("height", (textArr.length + 1) + "em")
2017-12-29 23:23:37 +01:00
.attr("x", function() { return x(d.lap) + 10; })
.attr("y", function() { return y(d.position) + 10; });
//Necessary to add Text for each Line
textArr.forEach((text, textIndex) =>{
// Specify where to put label of text
2017-12-29 23:23:37 +01:00
tooltipGroup.append("text")
.attr("dy", (textIndex + 1) + "em")
.attr("x", function() { return x(d.lap) + 15; })
.attr("y", function() { return y(d.position) + 15; })
.text(function() {
return text; // Value of the text
});
});
}
function handleMouseOutLinePoint(d, i) {
2017-12-29 16:42:41 +01:00
var dataType = d3.select(this).attr("data-elemtype");
//depending on Pitstop and lap different Texts
var textArr = [];
// Use D3 to select element, change color back to normal
2017-12-29 16:42:41 +01:00
if(dataType === elemTypes.linepoint){
var circleId = "circle-linepoint-" + d.lap + "-" + d.driverId;
var circle = d3.select("#" + circleId);
2017-12-29 16:28:34 +01:00
circle
.attr("r", linePointSize)
.style("opacity", 0);
2017-12-29 16:42:41 +01:00
textArr = getLapTextArray(raceData,d);
}else if(dataType === elemTypes.pitstoppoint){
d3.select(this)
.attr("r", linePointSize);
textArr = getPitStopTextArray(raceData,d);
2017-12-29 16:42:41 +01:00
}else if(dataType === elemTypes.endpoint){
d3.select(this)
.attr("height", rectSize)
2017-12-30 13:14:40 +01:00
.attr("width", rectSize)
.attr("x", function(d, i) {return x(d.lap) - rectSize * 1/2 })
.attr("y", function(d, i) { return y(d.position) - rectSize * 1/2 });
2017-12-29 16:42:41 +01:00
textArr = getEndPointTextArray(raceData,d);
}
textArr.forEach((text, textIndex)=> {
// Select text by id and then remove
2017-12-29 23:23:37 +01:00
d3.select("#t" + d.lap + "-" + d.position + "-" + i).remove(); // Remove text location
});
}
function getLapTextArray(raceData, d){
2017-12-29 16:42:41 +01:00
var driverText = getDriverCodeById(raceData,d.driverId);
var lapText = "Lap: " + d.lap;
var posText = "Pos: " + d.position;
2017-12-29 17:12:01 +01:00
var returnArr = [driverText, lapText, posText];
if(d.time){
var timeText = "Time: " + d.time;
returnArr.push(timeText);
}
return returnArr;
}
function getPitStopTextArray(raceData, d){
var lapTextArr = getLapTextArray(raceData,d);
lapTextArr.push("Stop Nr: " + d.pitStop.stop);
lapTextArr.push("Duration: " + d.pitStop.duration);
return lapTextArr;
}
2017-12-13 00:12:11 +01:00
2017-12-29 16:42:41 +01:00
function getEndPointTextArray(raceData, d){
var status = "";
var endTextArr = getLapTextArray(raceData,d);
var allStatus = queries.getStatus();
for(var key in allStatus){
if(key === undefined) continue;
if(allStatus[key].statusId === d.finished.statusId){
status = allStatus[key].status;
}
}
endTextArr.push("Reason: " + status);
return endTextArr;
}
2017-12-19 21:35:47 +01:00
function getDriverCodeFromPosAndLap(raceData, lapNr, pos){
var driverCode = "";
if(lapNr == 0){
var qualifying = raceData.qualifying[pos - 1];
if(qualifying === undefined) return "XXX"; // TODO: Do a real fix
driverCode = getDriverCodeById(raceData, qualifying.driverId);
2017-12-19 21:35:47 +01:00
}else if(lapNr == raceData.lapTimes.size){
var resultPos = raceData.results[pos -1].position;
var resultLaps = raceData.results[pos -1].laps;
//making sure the Driver finished and drove all laps
if(resultPos && resultLaps == raceData.lapTimes.size){
driverCode = getDriverCodeById(raceData,raceData.results[pos -1].driverId);
}
}else{
if(raceData.lapTimes.get(lapNr)[pos-1]){
driverCode = getDriverCodeById(raceData, raceData.lapTimes.get(lapNr)[pos-1].driverId);
}
2017-12-19 21:35:47 +01:00
}
return driverCode;
}
2017-12-30 18:48:54 +01:00
function brushed() {
if (d3.event.sourceEvent && d3.event.sourceEvent.type === "zoom") return; // ignore brush-by-zoom
var s = d3.event.selection || x2.range();
x.domain(s.map(x2.invert, x2));
2017-12-30 23:53:56 +01:00
updateElements();
// Update the "preview" rectangle
2017-12-30 18:48:54 +01:00
svg.select(".zoom").call(zoom.transform, d3.zoomIdentity
.scale(graphPosWidth.width / (s[1] - s[0]))
.translate(-s[0], 0));
2017-12-30 18:48:54 +01:00
}
function zoomed() {
if (d3.event.sourceEvent && d3.event.sourceEvent.type === "brush") return; // ignore zoom-by-brush
var t = d3.event.transform;
2017-12-30 23:52:55 +01:00
x.domain(t.rescaleX(x2).domain());
updateElements();
//call the brush function
2017-12-30 23:41:37 +01:00
context.select(".brush").call(brush.move, x.range().map(t.invertX, t));
}
function updateElements(){
2017-12-30 23:58:33 +01:00
// Update the data!
focus.selectAll(".pathLines").attr("d", lineDataDefinition);
2017-12-30 23:52:25 +01:00
focus.selectAll(".pitstopdot").attr("cx", function(d, i) {return x(d.lap) });
focus.selectAll(".endpointdot").attr("x", function(d, i) { return x(d.lap) - rectSize * 1/2; });
2017-12-30 23:58:33 +01:00
// Update xAxis
2017-12-30 23:52:25 +01:00
focus.select(".axis--x").call(xAxis);
2017-12-30 23:58:33 +01:00
// Update gridlines
focus.select(".xAxisGridlines").call(xAxisGridlines);
2017-12-30 18:48:54 +01:00
}
}