ads-b
Version:
Library for decoding ADS-B messages emitted from Aircraft
17 lines (16 loc) • 638 B
TypeScript
/**
* MIT License
* Copyright (c) 2019 Matt Laver
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/mattlaver/ads-b/blob/master/LICENSE
*/
import { IAircraftIdentification } from '../messages/IAircraftIdentification';
import { IMessageDecoder } from './IMessgeDecoder';
export declare class AircraftIdentificationDecoder implements IMessageDecoder<IAircraftIdentification> {
private characterSet;
isValid(typeCode: number): boolean;
decode(message: string): IAircraftIdentification;
private decodeAircraftCallsign;
private chunkFour;
}