This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Node.js GPS NMEA parser for LS20031 and Beaglebone | |
// | |
// Parses GSV/GGA strings and logs to a file. | |
// GPS module outputs lat ddmm.mmmm and lon dddmm.mmmm. | |
// Hardcoded for North-West hemispheres. latPole S and lonPole W are (-) | |
// Author: Frank Phillips <[email protected]> | |
// Uses serialport and nmea modules. Edit the require paths as necessary. | |
var http = require('http'); |