@squawk
    Preparing search index...

    Interface SbsFeedOptions

    Options for createSbsAircraftFeed.

    interface SbsFeedOptions {
        host: string;
        port?: number;
        positionHistoryRetention?: PositionHistoryRetention;
        reconnectDelayMs?: number;
        staleAfterMs?: number;
    }

    Hierarchy (View Summary)

    Index
    host: string

    Hostname or IP address of the dump1090-fa station.

    port?: number

    TCP port serving the SBS/BaseStation output. Defaults to 30003.

    positionHistoryRetention?: PositionHistoryRetention

    How much position history to retain per aircraft. Unbounded (subject to memory) if omitted.

    reconnectDelayMs?: number

    Delay in ms before attempting to reconnect after the connection closes or errors. Defaults to 5000.

    staleAfterMs?: number

    Milliseconds an aircraft can go without an update before aircraft:lost fires. Defaults to 60000.