@squawk
    Preparing search index...

    Interface Runway

    A runway at an airport facility, identified by its composite designator (e.g. "04L/22R"). Contains physical dimensions, surface info, and per-end details.

    interface Runway {
        condition?: SurfaceCondition;
        ends: RunwayEnd[];
        id: string;
        lengthFt?: number;
        lighting?: RunwayLighting;
        pcn?: string;
        surfaceType?: string;
        treatment?: SurfaceTreatment;
        weightLimitDdtKlb?: number;
        weightLimitDualTandemKlb?: number;
        weightLimitDualWheelKlb?: number;
        weightLimitSingleWheelKlb?: number;
        widthFt?: number;
    }
    Index

    Properties

    condition?: SurfaceCondition

    Surface condition rating.

    ends: RunwayEnd[]

    Details for each end of the runway (typically two).

    id: string

    Runway designator (e.g. "04L/22R", "09/27", "H1").

    lengthFt?: number

    Runway length in feet.

    lighting?: RunwayLighting

    Edge lighting intensity.

    pcn?: string

    Pavement Classification Number value.

    surfaceType?: string

    Surface type code (e.g. "CONC", "ASPH", "TURF", "GRVL").

    treatment?: SurfaceTreatment

    Surface treatment applied.

    weightLimitDdtKlb?: number

    Maximum double-dual-tandem-wheel gross weight in thousands of pounds.

    weightLimitDualTandemKlb?: number

    Maximum dual-tandem-wheel gross weight in thousands of pounds.

    weightLimitDualWheelKlb?: number

    Maximum dual-wheel gross weight in thousands of pounds.

    weightLimitSingleWheelKlb?: number

    Maximum single-wheel gross weight in thousands of pounds.

    widthFt?: number

    Runway width in feet.