function distorsion(point, projection) {
const [c, n, e, c1, n1] = [
point,
[point[0], point[1] + epsilon],
[point[0] + epsilon / cos(point[1] * radians), point[1]]
].map(projection);
const area =
((e[1] - c[1]) * (n[0] - c[0]) - (e[0] - c[0]) * (n[1] - c[1])) /
epsilon ** 2;
const s1ps2 = Math.hypot(
e[0] - c[0] + (n[1] - c[1]),
e[1] - c[1] - (n[0] - c[0])
),
s1ms2 = Math.hypot(
e[0] - c[0] - (n[1] - c[1]),
e[1] - c[1] + (n[0] - c[0])
),
angle = (s1ps2 - s1ms2) / (s1ps2 + s1ms2),
orientation = Math.atan2(n[1] - c[1], n[0] - c[0]);
return {
area: log(abs(area)),
angle: abs(log(abs(angle))),
orientation: orientation
};
}