js-aprs-fap
Version:
NodeJs library for parsing APRS packets.
29 lines (28 loc) • 985 B
TypeScript
import aprsPacket from './aprsPacket';
export default class aprsParser {
constructor();
addError(packet: aprsPacket, errorCode: string, value?: any): aprsPacket;
addWarning(packet: aprsPacket, errorCode: string, value?: string): aprsPacket;
checkAX25Call(callsign: string): string;
parseaprs(packet: string, options?: any): aprsPacket | null | undefined;
private _status_parse;
private parseTimestamp;
private messageParse;
private objectToDecimal;
private get_posresolution;
private _nmea_getlatlon;
private _get_symbol_fromdst;
private _nmea_to_decimal;
private _comments_to_decimal;
private _capabilities_parse;
private _comment_telemetry;
private _item_to_decimal;
private _normalpos_to_decimal;
private miceToDecimal;
private _compressed_to_decimal;
private _dao_parse;
private _wx_parse;
private _wx_parse_peet_packet;
private _wx_parse_peet_logging;
private _telemetry_parse;
}