@squawk
    Preparing search index...

    Interface Airway

    A named airway in the US National Airspace System. An airway is a published route defined as an ordered sequence of waypoints (navaids, fixes, and other reference points) with associated altitude restrictions and navigation data.

    Waypoints are ordered west-to-east / south-to-north per FAA convention.

    interface Airway {
        designation: string;
        region: AirwayRegion;
        type: AirwayType;
        waypoints: AirwayWaypoint[];
    }
    Index

    Properties

    designation: string

    Airway designation (e.g. "V16", "J60", "Q1", "T238", "ATA315").

    region: AirwayRegion

    Regional classification of the airway.

    Classification of the airway by route structure.

    waypoints: AirwayWaypoint[]

    Ordered sequence of waypoints defining the airway route.