@drivetech/dmm-parser
v1.0.0
Published
Parser for latitude and longitude in DMM format
Downloads
17
Readme
@drivetech/dmm-parser
Parser for latitude and longitude in DMM format.
Example: '3321.6735,S'
-> -33.361225
Installation
$ npm i @drivetech/dmm-parser
Use
const dmm = require('@drivetech/dmm-parser');
dmm.degToDec('3321.6735,S'); // -33.361225
dmm.degToDec('07030.7640,W'); // -70.51273333333333
dmm.latToDmm(-33.361225, 4); // '3321.6735,S'
dmm.lngToDmm(-70.51273333333333, 4); // '07030.7640,W'