@squawk
    Preparing search index...

    Interface Procedure

    A published instrument procedure in the US National Airspace System. Procedures are named, published paths - SIDs (Standard Instrument Departures) and STARs (Standard Terminal Arrival Routes) - consisting of a sequence of fixes with optional transitions for entry/exit.

    interface Procedure {
        airports: string[];
        commonRoutes: ProcedureCommonRoute[];
        computerCode: string;
        name: string;
        transitions: ProcedureTransition[];
        type: ProcedureType;
    }
    Index

    Properties

    airports: string[]

    All adapted airports served by this procedure.

    commonRoutes: ProcedureCommonRoute[]

    Common routes (trunk paths). A procedure may have multiple common routes for different runway or airport configurations.

    computerCode: string

    FAA computer code for the procedure (e.g. "AALLE4", "ACCRA5").

    name: string

    Human-readable procedure name (e.g. "AALLE FOUR", "ACCRA FIVE").

    transitions: ProcedureTransition[]

    Named transitions. For STARs these are enroute entry transitions; for SIDs these are enroute exit transitions.

    Whether this is a SID or STAR.