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

6 lines
131 B
JavaScript

import {HALF_PI} from '../constants/values';
export default function(x, L) {
return 2 * Math.atan(x * Math.exp(L)) - HALF_PI;
}