@squawk
    Preparing search index...

    Interface ProcedureWaypoint

    A single waypoint along a procedure route. Waypoints are ordered in the sequence they are flown.

    interface ProcedureWaypoint {
        category: ProcedureWaypointCategory;
        fixIdentifier: string;
        icaoRegionCode?: string;
        lat: number;
        lon: number;
        typeCode: ProcedureWaypointTypeCode;
    }
    Index

    Properties

    High-level category of this waypoint (FIX, NAVAID, or AIRPORT).

    fixIdentifier: string

    Fix or navaid identifier (e.g. "AALLE", "DEN", "BOS").

    icaoRegionCode?: string

    ICAO region code (e.g. "K2", "K5", "PA").

    lat: number

    Latitude in decimal degrees, positive north.

    lon: number

    Longitude in decimal degrees, positive east.

    Raw FAA waypoint type code from STARDP.txt (e.g. "P", "R", "NW", "AA").