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

    Runway options.

    interface Options {
        backtrack?: boolean;
        depart?: boolean;
        initialHeading?: number;
        intersection?: boolean;
        land?: boolean;
        noSID?: boolean;
    }
    Index

    Properties

    backtrack?: boolean

    Whether landings need to backtrack on the runway after landing.

    false
    
    depart?: boolean

    Whether the runway is open for departures.

    false
    
    initialHeading?: number

    If set, planes flying via SidFix (but not Departure) will initially turn to this heading before proceeding to the SidFix. This can be useful for parallel takeoffs that need to diverge.

    intersection?: boolean

    Whether to enable intersection departures (takeoffs begin 30% down the runway).

    false
    
    land?: boolean

    Whether the runway is open for landings.

    false
    
    noSID?: boolean

    Whether planes should depart on the initialHeading without clearance for the SID. This means that you will need to clear departures for the SID manually.

    false