map = {
const context = DOM.context2d(width, height);
const path = d3.geoPath(projection, context);
const subset = geoPe.features;
context.save();
subset.forEach(function (d, i) {
context.lineWidth = 0.25;
context.fillStyle = colors[i];
context.beginPath();
path(d);
context.fill();
context.stroke();
});
return context.canvas;
}