mirror of
https://github.com/proj4js/proj4js.git
synced 2026-01-18 16:13:22 +00:00
6 lines
134 B
JavaScript
6 lines
134 B
JavaScript
import { HALF_PI } from '../constants/values';
|
|
|
|
export default function (x, L) {
|
|
return 2 * Math.atan(x * Math.exp(L)) - HALF_PI;
|
|
}
|