tethys-feature-service/node_modules/proj4/lib/common/fL.js
Thomas Fuhrmann 87d22a4516 First commit
2023-10-02 15:04:02 +02:00

5 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;
}