node-geopoint icon indicating copy to clipboard operation
node-geopoint copied to clipboard

Representation of a geographic point for node.js and the browser

Results 4 node-geopoint issues
Sort by recently updated
recently updated
newest added

Hey, I really like your module and use it alot, but often times i have to do this stuff in my code, i think it could be a part of...

Measuring the distance from `[60.512651558965445, 6.67020027525723]` to `[60.512651558965445, 6.670200191438198]` returns a `NaN` result. The expression `Math.sin(lat1) * Math.sin(lat2) + Math.cos(lat1) * Math.cos(lat2) * Math.cos(lon1 - lon2)` gives a result of...

Hi, first of all, thank you for this library. I found some interesting algorithms [here](http://www.movable-type.co.uk/scripts/latlong.html), and decided to add a method to get a GeoPoint from a distance and bearing....