eatc-airspace - v0.0.1
    Preparing search index...

    Class Approach

    An approach waypoint route. This can be used for STARs, transitions, RNP approaches, etc.

    Hierarchy (View Summary)

    Index

    Constructors

    • Parameters

      • name: string

        The name or identifier of this approach, e.g. ‘OTMET1H’.

      • pronunciation: string

        The phonetic pronunciation of the approach name, e.g. ‘Otmet one hotel’.

      • runways: Runway[]

        The runways that need to be active for landings for this approach to be available.

      • beacon: Beacon

        The beacon at the start of the approach.

      • inboundBearing: number

        The inbound bearing for this approach.

      • route: (Fix | ApproachFix)[]

        The sequence of fixes (waypoints) that define the approach route.

      • Optionaltermination: Termination

        How to end the approach.

      Returns Approach

    • Parameters

      • name: string

        The name or identifier of this approach, e.g. ‘OTMET1H’.

      • pronunciation: string

        The phonetic pronunciation of the approach name, e.g. ‘Otmet one hotel’.

      • runways: Runway[]

        The runways that need to be active for landings for this approach to be available.

      • beacon: Beacon

        The beacon at the start of the approach.

      • route: (Fix | ApproachFix)[]

        The sequence of fixes (waypoints) that define the approach route.

      • Optionaltermination: Termination

        How to end the approach.

      Returns Approach

    Properties

    beacon: Beacon

    The beacon at the start of the approach. Aircraft directed to this beacon will have an ‘APP’ option available to enable following the approach. If you have Airspace#automaticApproach enabled and this beacon is used as an entry point, then aircraft will automatically follow the approach. If this beacon is not added to Airspace#beacons, then it will only be visible when this approach is available.

    The beacon will appear as a triangle when the approach is available.

    fixes: any[] = []

    The fixes of this route.

    inboundBearing?: number

    The inbound bearing for this approach. If there are multiple approaches on the specified Beacon, then an approach route is selected based on the closest inbound bearing to the beacon.

    name: string

    The name or identifier of this approach, e.g. ‘OTMET1H’. Note that the game will display a maximum of seven characters.

    pronunciation: string

    The phonetic pronunciation of the approach name, e.g. ‘Otmet one hotel’.

    route: (Fix | ApproachFix)[]

    The sequence of fixes (waypoints) that define the approach route.

    runways: Runway[]

    The runways that need to be active for landings for this approach to be available.

    termination: Termination

    How to end the approach.

    Approach.End