mirror of
https://github.com/proj4js/proj4js.git
synced 2026-01-18 16:13:22 +00:00
4 lines
110 B
JavaScript
4 lines
110 B
JavaScript
module.exports = function(a, e, sinphi) {
|
|
var temp = e * sinphi;
|
|
return a / Math.sqrt(1 - temp * temp);
|
|
}; |