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

4 lines
126 B
JavaScript

export default function(eccent, sinphi, cosphi) {
var con = eccent * sinphi;
return cosphi / (Math.sqrt(1 - con * con));
}