@squawk
    Preparing search index...

    Interface IlsSystem

    An Instrument Landing System installation at a runway end. Combines localizer, glide slope, and DME component data into a single structured object.

    interface IlsSystem {
        category?: IlsCategory;
        dmeChannel?: string;
        glideSlopeAngleDeg?: number;
        glideSlopeType?: string;
        identifier?: string;
        localizerFrequencyMhz?: number;
        localizerMagneticCourseDeg?: number;
        systemType: IlsSystemType;
    }
    Index

    Properties

    category?: IlsCategory

    ILS approach category.

    dmeChannel?: string

    DME channel designation (e.g. "032X", "038X").

    glideSlopeAngleDeg?: number

    Glide slope angle in degrees (typically around 3.0).

    glideSlopeType?: string

    Glide slope class/type code (e.g. "GS" for standard glide slope, "GD" for glide slope with DME).

    identifier?: string

    ILS facility identifier (e.g. "I-ANB", "I-JFK").

    localizerFrequencyMhz?: number

    Localizer frequency in MHz (e.g. 110.9).

    localizerMagneticCourseDeg?: number

    Localizer front course bearing in magnetic degrees.

    systemType: IlsSystemType

    System type describing the installed component combination.