1.0.0 • Published 5 years ago

flarmnet v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

flarmnet

TravisCI Build Status Latest NPM release

Flarmnet Encode/Decoder

Install

npm install flarmnet

Usage

const FlarmNet = require('flarmnet');

let flarmNet = FlarmNet.decode(fs.readFileSync('data.fln', 'utf8'));

expect(flarmNet).toEqual({
  version: 28592,
  records: [
    {
      airfield: 'EDKA',
      callsign: 'SG',
      frequency: '123.450',
      id: 'DD1234',
      pilot: 'John Doe',
      plane_type: 'LS6a',
      registration: 'D-0816',
    },
    // ...
  ],
});

License

This project is released under the MIT License.