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

4 lines
120 B
JavaScript

export default function(x) {
var s = (x >= 0 ? 1 : -1);
return s * (Math.log(Math.abs(x) + Math.sqrt(x * x + 1)));
}