function RootAzimuthal() {
AzimuthalRaw;
const acos = Math.acos, exp = Math.exp, log = Math.log, sin = Math.sin;
const b = B * Math.PI / 180;
const s = 1;
const Rb = 1;
const factor = Math.sqrt(s), s_1 = s ? 1 / s : 0;
var p = d3.geoAzimuthalRaw(function(r) {
var z = acos(r);
return z ? Math.pow(s * z, 1 / POWER) / factor / sin(z) : 1;
});
p.invert = d3.geoAzimuthalInvert(function(a) {
if (s == 0) return a;
return (Math.pow(a * factor / Rb, POWER)) * s_1;
});
return d3.geoRootAzimuthal = p;
}