UNPKG

earth-distance-js

Version:

A collection of earth-distance calulations module, for high accuracy and high speed implementation

10 lines (8 loc) 150 B
/** * Constants: * Mean Radius of Earth. * PI/360. */ const R = 6378.137; const PI_360 = Math.PI / 360; module.exports = { R, PI_360 };