1.0.0 • Published 2 years ago

iso6709-to-dms v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

iso6709-to-dms

NPM downloads NPM version Node version

Convert ISO 6709 positions into decimal degree positions.

Don't use this for mission critical stuff, it does not implement the full standard. Useful enough for VATSIM.

Install

Node.JS

npm install iso6709-to-dms --save
var iso2dec = require('iso2dec');

Usage

var point = iso2dec('+123456.7-0985432.1+15.9')

Return

{
latitude: latitude,
longitude: longitude,
altitude: altitude
};

Note: altitude is not returned when not present in the source point.