linux-hams.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Ham::APRS::Parser v0.03 released
@ 2006-11-04 23:54 Jeff Laughlin (RV Melville)
  0 siblings, 0 replies; only message in thread
From: Jeff Laughlin (RV Melville) @ 2006-11-04 23:54 UTC (permalink / raw)
  To: Linux Hams Mailing list

Get it from http://sourceforge.net/projects/ham-aprs-parser/

Release notes:
* Fixed a bug in the MIC-E decoder that would sometimes cause small 
errors of up to 1 minute in longitude, affecting approximately 1 in 10 
packets.
* Fixed an error in the readme.txt command line example
* Moved Ham/aprs to Ham/APRS

NAME
    Ham::APRS::Parser - Perl module for parsing APRS packets into a
    consistent and easy to work with format

SYNOPSIS
            use Ham::APRS::Parser;

            my $aprsPacket = 
parseAPRSPacket("EA1EKE-8>TR3UTW,EC1H-12,EA1A-3*,qAo,EA1URO-10:`|@+ 
,>/>"9f}");

            while( my ($k, $v) = each %$aprsPacket ) {
                    print "key: $k, value: $v\n";
            }

DESCRIPTION
    Insert plaintext aprs packets from APRS-IS, get back a reference to a
    hash containing the APRS data in a consistent and easy to process
    format.

    The above code will yield the following hash:

            %$aprsPacket = {
                    'AMBIGUITY' => 0,
                    'COMMENT' => '"9f',
                    'COURSE' => 234,
                    'FROM' => 'EA1EKE-8',
                    'LAT' => '42.5911666666667',
                    'LON' => '-6.6025',
                    'MICE_CURRENTNESS' => 'CURRENT',
                    'MICE_MSG' => 'En Route',
                    'PATH' => 'EC1H-12,EA1A-3*,qAo,EA1URO-10',
                    'SPEED' => '75.932',
                    'TO' => 'TR3UTW'
            };


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-11-04 23:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-04 23:54 Ham::APRS::Parser v0.03 released Jeff Laughlin (RV Melville)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).