tethys-feature-service/node_modules/proj4/lib/common/acosh.js

3 lines
102 B
JavaScript
Raw Normal View History

2023-10-02 13:04:02 +00:00
export default function(x) {
return 2 * Math.log(Math.sqrt((x + 1) / 2) + Math.sqrt((x - 1) / 2));
}