{
const svg = d3.create('svg')
.attr('width', size.width)
.attr('height', size.height);
svg.selectAll("path")
.data(processed)
.join("path")
.attr("d", path)
.attr("fill", d =>color(d.properties.interest))
.attr("stroke", "none");
svg.selectAll("path_regions")
.data(regiones.features)
.join("path")
.attr("d", path_regiones)
.attr("fill", 'red')
.attr("fill-opacity",0.2)
.attr("stroke", "white");
return svg.node();
}