tethys-feature-service/node_modules/proj4/lib/common/atanh.js
2023-10-02 15:04:02 +02:00

3 lines
72 B
JavaScript

export default function(x) {
return Math.log((x - 1) / (x + 1)) / 2;
}