pirep = {
const mysvg = svg`<svg
width=960
height=600
viewBox="0,0,960,600"
style="max-width:100%;height:auto;position:absolute;top:0;left:0">`
d3.timeFormat("%e %b %Y %H:%M:%S GMT (" + hours + " hours)")(new Date(t0));
d3.select(mysvg).append("text")
.attr("x", 960 / 2)
.attr("dx", "5rem")
.attr("y", "2rem")
.attr("font-family", "sans-serif")
.attr("font-size", "2rem")
.attr("text-anchor", "middle")
.style("user-select", "none")
.text(d3.timeFormat("%e %b %Y %H:%M:%S GMT (" + hours + " hours)")(t0));
d3.select(mysvg).selectAll("path")
.data(pireps)
.join("path")
.classed('pirep', true)
.sort((a,b) => (a[3] > b[3]) ? 1 : -1)
.attr("x", (d, i) => i * 16)
.attr("d", d => path({"type": "Point", "coordinates": d}))
.attr('fill', d => colors[d[3]])
.on('mouseover', function(d) { mutable z = d[4]; d3.select(this).attr('stroke', 'black') })
.on('mouseout', function() { mutable z = ""; d3.select(this).attr('stroke', null) })
return mysvg;
}