Roll your own NMEA parser or use an open source GPS parser? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:08:14Zhttp://stackoverflow.com/feeds/question/587441http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/587441/roll-your-own-nmea-parser-or-use-an-open-source-gps-parser4Roll your own NMEA parser or use an open source GPS parser?Adam Davis2009-02-25T19:25:59Z2009-10-08T20:05:53Z
<p>I do a lot of location aware computing, often incorporating GPS. I have my own little simple NMEA parser that doesn't do anything special - just transforms the GPS specific sentences into usable numbers, flags, and so forth.</p>
<p>However, there is a lot of active development done on projects such as GPSD and Gypsy. If GPS were a simple matter, the projects would have finished long ago and simply gone into maintenance mode.</p>
<ul>
<li>What do they know/do that I don't know about, and therefore my code doesn't account for?</li>
</ul>
http://stackoverflow.com/questions/587441/roll-your-own-nmea-parser-or-use-an-open-source-gps-parser/587444#5874443Answer by Adam Davis for Roll your own NMEA parser or use an open source GPS parser?Adam Davis2009-02-25T19:26:24Z2009-02-27T05:34:15Z<p>From an <a href="http://esr.ibiblio.org/?p=801" rel="nofollow">excellent article</a> by the GPSD lead:</p>
<ul>
<li>NMEA standard doesn't provide a full TPV (time, position, velocity) tuple with error, geoid and magnetic variation, etc</li>
<li>Since different values are in different sentences, and there's no defined order you can't easily know which velocity goes with which position report</li>
<li>Some values are not given in full (ie, year is two digits on the more common and avilable sentences)</li>
<li>No standardized way to determine vendor, model, firmware</li>
<li>No standardized way to change settings (communications speed, sentences reported, samples per second, etc)</li>
<li>Incompatible binary protocols for advanced usage and faster reporting</li>
<li>Due to interesting race conditions for USB to serial bridges and bluetooth to serial bridges, changing the speed is a very tricky problem</li>
</ul>
<p>-Adam</p>