@squawk
    Preparing search index...

    Interface AirspaceQuery

    A query describing a geographic position and altitude to resolve against loaded airspace data.

    interface AirspaceQuery {
        altitudeFt: number;
        lat: number;
        lon: number;
        types?: ReadonlySet<AirspaceType>;
    }
    Index

    Properties

    altitudeFt: number

    Altitude in feet MSL to compare against airspace vertical bounds.

    lat: number

    Latitude in decimal degrees (WGS84).

    lon: number

    Longitude in decimal degrees (WGS84).

    types?: ReadonlySet<AirspaceType>

    Optional set of airspace types to include in the results. When provided, only features whose type is in this set are considered. Features of other types are skipped before any geometry or altitude checks, improving query performance when only specific airspace classes are needed.

    When omitted, all airspace types are included.