function createCircularOutlinePath(svg, center, radius, startAngle, endAngle){
const path = svg.append('path');
path.attr('stroke', '#446688');
path.attr('stroke-width', borderWidth);
path.attr('fill', 'none');
path.attr('stroke-linecap', 'round');
path.attr('d', describeArc(center, radius, startAngle, endAngle));
return path;
}