npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nmea-0183

v0.0.7

Published

an NMEA-0183 parser/encoder library, cloned from David Howard

Downloads

157

Readme

node-nmea

An extensible parser and encoder for NMEA-0183 sentences for use with node.js.

If you are not familiar with NMEA-0183, look it up on Wikipedia.

NMEA-0183 is an ASCII output format supported by most GPS units and is used to output the geographical position (latitude/longitude etc) and a lot of other information about the GPS unit. If you have a GPS attached to your server or a GPS feed from some other source, and want to parse its output, this module will help you do that. If you have some geographic coordinates and you want to output NMEA-0183 data to another program (e.g. a map program) this library has functions to encode the data properly.

A couple of good references for NMEA-0183 sentence formats are Peter Bennett NMEA FAQ , GPS-NMEA sentence information, and for a detailed description of NMEA-0183 sentences and their formats. Or, just google NMEA-0183.

Features

  • runs under node.js

  • parses individual NMEA-0183 sentences

    (it doesn't read the serial or USB input. you have to get the sentences from somewhere yourself)

    has built-in support for several of the most common NMEA sentences

    GPGGA,GPRMC

    lets you add sentence parsers for those not built-in (there are literally dozens of standard and proprietary sentence types)

  • takes geographic location input and encodes it into valid NMEA-0183 sentences

API

the NMEA object

nmea = require('nmea');

The NMEA object contains the user API functions that are used to decode and encode NMEA sentences, as well as lower level functions that are used to build additional decoder and encoder extensions.

###Primary Functions

function nmea.parse(String)
    returns {object with parsed data in native format}
    this is the function to call to parse an NMEA-0183 string into its constituent data. See example/parse.js
    each sentence is parsed into its own set of data.
    see example/parse.js
    
function nmea.encode('sentence id',{nmea data object}) 
    returns String representing the data in a valid NMEA-0183 sentence. 
    this is the function to use when you have native data you wish to encode into an NMEA-0183 string.
    the caller must supply the NMEA sentence id (5 character string e.g. 'GPGGA') along with the required data, which can be different for each nmea string.
    Any field for which the data is not provided will be an empty string in the output  sentence string. this is allowed in the NMEA format.
    see example/encode.js

###Individual Sentence Parsers The sentence parsers are built in to the module or added as extensions. They do not need to be called directly by the application. They are documented here to show the data they return. Ideally you should inspect the output to get an up to date object definition in case the code has been updated bu the documentation hasn't.

function nmea.GgaParser(GPGGA sentence string) 
returns {gga data}
see example/gga.js

function nmea.RmcParser(GPRMC sentence string) 
returns {rmc data}
see example/rmc.js

###Individual Sentence Encoders The sentence encoders are built-in to the module or added as extenstions. They do not need to be called directly by a client application. They are documented here to show the data they require.

function nmea.GgaEncoder{gga data}) 
returns encoded string
sentence id 'GPGGA''
see example/gga.js     


function nmea.RmcEncoder({rmc data})
returns encoded string
sentence id 'GPRMC'
see example/rmc.js

###error handling
function error(String) outputs null. this function is an error handler that is called by the library when an error is detected. returns null it receieves a string describing the error as input. the default handler outputs the error string generated by the library.

function setErrorHandler(function (String)) 
returns null
Sets the 'error' callback function for error handling. receives a string and does whatever. 

helper functions

  • toHexString= function() returns
  • padLeft= function() returns
  • verifyChecksum= function() returns
  • computeChecksum= function() returns
  • setLatitudePrecision= function() returns
  • getLatitudePrecision= function() returns
  • setLongitudePrecision= function() returns
  • getLongitudePrecision= function() returns
  • addParser= function() returns
  • addEncoder= function() returns
  • encodeLatitude= function() returns
  • encodeLongitude= function() returns
  • encodeAltitude= function() returns
  • encodeMagVar= function() returns
  • encodeDegrees= function() returns
  • encodeDate= function() returns
  • encodeTime= function() returns
  • encodeKnots= function() returns
  • encodeValue= function() returns
  • encodeFixed= function() returns
  • parseAltitude= function() returns
  • parseDegrees= function() returns
  • parseFloatX= function() returns
  • parseLatitude= function() returns
  • parseLongitude= function() returns
  • parseIntX= function() returns
  • parseDateTime= function() returns

Parser

TBD

Examples

TBD