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

    Class Area

    An area with an altitude restriction.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    Accessors

    Methods

    Constructors

    • Parameters

      • name: string

        The name of the area, displayed beneath the altitude restriction. If this name matches a SecondaryAirport#code, aircraft departing from or arriving at that airport are exempt from the altitude restriction. If no name is specified, traffic to or from the PrimaryAirport is exempt from the altitude restriction.

      • altitude: number

        The minimum allowed altitude in feet.

      • label: Fix

        Position of the label.

      • vertices: Iterable<Fix>

        Vertices that define the area.

      • Optionalinvisible: number

        Number of lines from the end of the area to make invisible. Set to Infinity to make the entire area invisible. Omit to make the entire area visible.

      Returns Area

    • Parameters

      • altitude: number

        The minimum allowed altitude in feet.

      • label: Fix

        Position of the label.

      • vertices: Iterable<Fix>

        Vertices that define the area.

      • Optionalinvisible: number

        Number of lines from the end of the area to make invisible. Set to Infinity to make the entire area invisible. Omit to make the entire area visible.

      Returns Area

    • Parameters

      • airport: SecondaryAirport

        The airport whose traffic should be exempt from the altitude restriction.

      • altitude: number

        The minimum allowed altitude in feet.

      • label: Fix

        Position of the label.

      • vertices: Iterable<Fix>

        Vertices that define the area.

      • Optionalinvisible: number

        Number of lines from the end of the area to make invisible. Set to Infinity to make the entire area invisible. Omit to make the entire area visible.

      Returns Area

    Properties

    altitude: number

    The minimum allowed altitude in feet.

    invisible?: number

    Number of lines from the end of the area to make invisible. Set to Infinity to make the entire area invisible. Omit to make the entire area visible.

    label: Fix

    Position of the label.

    name?: string

    The name of the area, displayed beneath the altitude restriction. If this name matches a SecondaryAirport#code, aircraft departing from or arriving at that airport are exempt from the altitude restriction. If no name is specified, traffic to or from the PrimaryAirport is exempt from the altitude restriction.

    Accessors

    • get vertices(): readonly Fix[]

      The vertices that define this shape.

      Returns readonly Fix[]

    Methods