Re: [Twisted-Python] Handling of NMEA messages

2010-12-01 Thread Laurens Van Houtven
Hi I'm the guy that wrote twisted-positioning. The NMEA parser should be feature-complete, but you might have some difficulty doing the glue code. I should really get around to turning that into an actual deliverable... lvh ___ Twisted-Python mailing

Re: [Twisted-Python] Handling of NMEA messages

2010-12-01 Thread James Y Knight
On Dec 1, 2010, at 9:33 AM, Albert Brandl wrote: >> You may also want to look at >> https://code.launchpad.net/~lvh/twisted/positioning and see if it >> influences your plans at all. It would be nice if we eventually >> merged that code. :) > > It's kind of hard to understand what this repos

Re: [Twisted-Python] Handling of NMEA messages

2010-12-01 Thread Albert Brandl
On Wed, Dec 01, 2010 at 01:43:40PM -, exar...@twistedmatrix.com wrote: > Perhaps the NMEA and GPS parts of NMEAReceiver can be separated from > each other, so that your weather extractor can use just the former and > ignore the latter. That is not necessary, since I will also need GPS data.

Re: [Twisted-Python] Handling of NMEA messages

2010-12-01 Thread exarkun
On 29 Nov, 12:01 pm, albert.bra...@weiermayer.com wrote: >Hi! > >We are working on a project that has to extract weather information >from >an NMEA stream. There is a NMEAReceiver class, but it only extracts GPS >information - as expected, since the class is defined in t.p.gps.nmea. > >We intend t

[Twisted-Python] Handling of NMEA messages

2010-12-01 Thread Albert Brandl
Hi! We are working on a project that has to extract weather information from an NMEA stream. There is a NMEAReceiver class, but it only extracts GPS information - as expected, since the class is defined in t.p.gps.nmea. We intend to add the NMEA-0183 messages necessary for my purposes. The ques