{
const context = DOM.context2d(width, height);
coords.forEach((point, i) => {
context.beginPath(),
context.arc(point[0] * width, point[1] * height, 4, 0, 2 * Math.PI),
(context.fillStyle = `rgba(${ rate_data[i].Filename.substr (0,4)=="FBgn" ? 255 : 0},${0},${ rate_data[i].Filename.substr (0,4)=="FBgn" ? 0 : 128},0.2)`),
context.fill();
});
return context.canvas;
}