@squawk
    Preparing search index...

    Interface Navaid

    A navigational aid (navaid) facility such as a VOR, VORTAC, NDB, or TACAN. Provides radio-based position and course guidance for aircraft navigation.

    interface Navaid {
        city?: string;
        country: string;
        dmeLat?: number;
        dmeLon?: number;
        dmeServiceVolume?: string;
        elevationFt?: number;
        frequencyKhz?: number;
        frequencyMhz?: number;
        highArtccId?: string;
        identifier: string;
        lat: number;
        lon: number;
        lowArtccId?: string;
        magneticVariationDeg?: number;
        magneticVariationDirection?: string;
        magneticVariationYear?: number;
        markerBearingDeg?: number;
        markerIdentifier?: string;
        markerShape?: string;
        name: string;
        navaidClass?: string;
        ndbClass?: string;
        notamId?: string;
        operatingHours?: string;
        powerOutputWatts?: number;
        publicUse?: boolean;
        simultaneousVoice?: boolean;
        state?: string;
        status: NavaidStatus;
        tacanChannel?: string;
        type: NavaidType;
    }
    Index

    Properties

    city?: string

    Associated city name.

    country: string

    Two-letter country code (e.g. "US").

    dmeLat?: number

    DME/TACAN latitude in decimal degrees, if different from the navaid position.

    dmeLon?: number

    DME/TACAN longitude in decimal degrees, if different from the navaid position.

    dmeServiceVolume?: string

    DME service volume class code (e.g. "DH", "DL").

    elevationFt?: number

    Field elevation in feet MSL.

    frequencyKhz?: number

    NDB/NDB-DME/MARINE NDB frequency in kHz (190-535).

    frequencyMhz?: number

    VOR/VORTAC/VOR-DME/TACAN/DME/VOT frequency in MHz (108.0-117.95).

    highArtccId?: string

    High-altitude ARTCC identifier (e.g. "ZNY", "ZBW").

    identifier: string

    Navaid identifier (e.g. "BOS", "JFK", "ABR").

    lat: number

    Latitude in decimal degrees, positive north.

    lon: number

    Longitude in decimal degrees, positive east.

    lowArtccId?: string

    Low-altitude ARTCC identifier (e.g. "ZNY", "ZBW").

    magneticVariationDeg?: number

    Magnetic variation in degrees (absolute value).

    magneticVariationDirection?: string

    Magnetic variation direction ("E" or "W").

    magneticVariationYear?: number

    Year the magnetic variation was last determined.

    markerBearingDeg?: number

    Fan marker bearing in degrees (for FAN_MARKER type only).

    markerIdentifier?: string

    Fan marker identifier (for FAN_MARKER type only).

    markerShape?: string

    Fan marker shape (for FAN_MARKER type only).

    name: string

    Official facility name (e.g. "BOSTON", "KENNEDY", "ABERDEEN").

    navaidClass?: string

    Navaid service volume class code (e.g. "VL", "VH", "H", "L", "T").

    ndbClass?: string

    NDB classification code (e.g. "HH", "H", "MH", "MHW", "HW", "LOM", "LMM").

    notamId?: string

    NOTAM facility identifier.

    operatingHours?: string

    Scheduled operating hours (e.g. "24", "SS-SR").

    powerOutputWatts?: number

    Transmitter power output in watts.

    publicUse?: boolean

    Whether the navaid is available for public use.

    simultaneousVoice?: boolean

    Whether simultaneous voice transmission is available on the frequency.

    state?: string

    Two-letter state code (e.g. "NY", "CA"). Absent for non-US navaids.

    status: NavaidStatus

    Operational status of the navaid.

    tacanChannel?: string

    TACAN/DME channel designation (e.g. "84X", "77X").

    Type of navigational aid.