extended-nmea
Version:
A TypeScript library for parsing NMEA0183-like sentences with support for custom and proprietary sentences.
18 lines (17 loc) • 670 B
TypeScript
import { TalkerSentence } from "../../types/sentences/TalkerSentence";
import { GeoCoordinate } from "../../types";
import { RawNmeaSentence } from "../../types/sentences/RawNmeaSentence";
export declare class RMA extends TalkerSentence {
static readonly ID: string;
constructor(data: RawNmeaSentence);
get warning(): boolean;
get latitude(): GeoCoordinate;
get longitude(): GeoCoordinate;
get timeDifferenceA(): number;
get timeDifferenceB(): number;
get speedOverGround(): number;
get trackMadeGood(): number;
get magneticVariation(): number;
get valid(): boolean;
get invalidReason(): null | string;
}