function render(svg) {
let svgSelection = d3.select(svg)
let cali = path(california[0])
svgSelection.select("#californiaClip")
.select("path")
.attr('d', cali)
.attr('stroke', 'black')
.attr('fill', 'none');
svgSelection.select("path.state")
.attr("fill", "none")
.attr("stroke", "#111")
.attr("stroke-width", 6)
.attr("stroke-linejoin", "round")
.attr("d", cali);
svgSelection.select("g.voronoi")
.attr("stroke", "none")
.attr("pointer-events", "all")
.selectAll("path")
.data(d3.geoVoronoi().polygons(points).features)
.join("path")
.attr("d", d3.geoPath(projection))
.attr("fill", d => colorPM1(d.properties.site[2]))
.attr("stroke", "black")
.attr("clip-path", "url(#californiaClip)");
return svgSelection;
}