@jbroll/nmea-simple
Version:
NMEA 0183 sentence parser and encoder
18 lines (17 loc) • 777 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
require("should");
var index_1 = require("../index");
describe("HDG", function () {
it("parser", function () {
var packet = index_1.parseNmeaSentence("$HCHDG,98.3,0.0,E,12.6,W*57");
packet.should.have.property("sentenceId", "HDG");
packet.should.have.property("sentenceName", "Heading - deviation and variation");
packet.should.have.property("talkerId", "HC");
packet.should.have.property("heading", 98.3);
packet.should.have.property("deviation", 0);
packet.should.have.property("deviationDirection", "E");
packet.should.have.property("variation", 12.6);
packet.should.have.property("variationDirection", "W");
});
});