All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jeff Laughlin (RV Melville)" <jlaughlin@ucsd.edu>
To: Linux Hams Mailing list <linux-hams@vger.kernel.org>
Subject: Ham::APRS::Parser v0.03 released
Date: Sat, 04 Nov 2006 15:54:32 -0800	[thread overview]
Message-ID: <454D2838.6040307@ucsd.edu> (raw)

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'
            };


                 reply	other threads:[~2006-11-04 23:54 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=454D2838.6040307@ucsd.edu \
    --to=jlaughlin@ucsd.edu \
    --cc=linux-hams@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.