@mmit/latlong
Advanced tools
Weekly downloads
Readme
This library supports both, the "Haversine" and the "Vincenty" algorithm.
"Haversine" is a bit faster but "Vincenty" is far more accurate!
Catmull-Rom algorithm is used for smoothing out the path.
const distance = new Distance();
// km = 423
const km = distance.as(LengthUnit.Kilometer,
new LatLng(52.518611,13.408056),new LatLng(51.519475,7.46694444));
// meter = 422591.551
const meter = distance.distance(
new LatLng(52.518611,13.408056),
new LatLng(51.519475,7.46694444)
);
const distance = new Distance();
const distanceInMeter = Math.round(EARTH_RADIUS * Math.PI / 4));
const p1 = new LatLng(0.0, 0.0);
const p2 = distance.offset(p1, distanceInMeter, 180);
// LatLng(latitude:-45.219848, longitude:0.0)
console.log(p2.round());
// 45° 13' 11.45" S, 0° 0' 0.00" O
console.log(p2.toSexagesimal());
// zigzag is a list of coordinates
const path = new Path.from(zigzag);
// Result is below
const steps = path.equalize(8,smoothPath: true);
For more - check out my tests
FAQs
Lightweight library for common latitude and longitude calculation
The npm package @mmit/latlong receives a total of 483 weekly downloads. As such, @mmit/latlong popularity was classified as not popular.
We found that @mmit/latlong demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.