UNPKG

earth-distance-js

Version:

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

13 lines (11 loc) 338 B
'use strict'; const haversine = require('./src/haversine'); const sphericalCosines = require('./src/sphericalCosines'); const equirectangular = require('./src/equirectangular'); const getBoundingBox = require('./src/getBoundingBox'); module.exports = { haversine, sphericalCosines, equirectangular, getBoundingBox };