An open API service indexing awesome lists of open source software.

https://github.com/tmcw/coords

parse and generate decimal and sexagesimal latitude longitude coordinates
https://github.com/tmcw/coords

Last synced: 9 months ago
JSON representation

parse and generate decimal and sexagesimal latitude longitude coordinates

Awesome Lists containing this project

README

          

Parse more forms of latitude, longitude, including the
[sexagesimal](http://en.wikipedia.org/wiki/Sexagesimal) form.

```javascript
coords.parse('66° 30′ 0″ N');
// 66.5

coords.parse('66° 30′ 0″ S');
// -66.5

coords.parse('66.5');
// 66.5
```