{
var w = 1000,
h = 500;
var svg = d3
.create("svg")
.attr("width", w)
.attr("height", h);
svg
.append("g")
.selectAll("lines")
.data(d3.range(100))
.join("path")
.attr("d", d =>
lw.describeArc(
d * p1 + w / 2,
d + h / 2 - 80,
p2 + d,
now / 1000 - d * p3,
now / 800 - d * p3
)
)
.attr('fill-opacity', '0')
.attr("class", "path")
.attr("stroke", "#777");
return svg.node();
}