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

6 lines
131 B
JavaScript
Raw Normal View History

2023-10-02 13:04:02 +00:00
import {HALF_PI} from '../constants/values';
export default function(x, L) {
return 2 * Math.atan(x * Math.exp(L)) - HALF_PI;
}