@squawk
    Preparing search index...

    Variable usBundledAirspaceConst

    usBundledAirspace: AirspaceDataset = ...

    Pre-processed GeoJSON snapshot of US airspace geometry derived from the FAA NASR 28-day subscription cycle.

    Covers Class B, C, D, and E controlled airspace (E2 through E7 subtypes), and Special Use Airspace (MOAs, restricted, prohibited, warning, alert, and national security areas).

    Each feature's geometry is a GeoJSON Polygon representing one airspace boundary. Each feature's properties object contains:

    • type - AirspaceType (CLASS_B, CLASS_C, CLASS_D, MOA, RESTRICTED, etc.)
    • name - human-readable name
    • identifier - NASR designator or airport identifier
    • floor / ceiling - AltitudeBound objects with valueFt and reference
    • state - two-letter US state abbreviation or null
    • controllingFacility - controlling ARTCC/facility or null
    • scheduleDescription - operating schedule text or null

    Pass this directly to createAirspaceResolver() from @squawk/airspace for zero-config airspace queries:

    import { usBundledAirspace } from '@squawk/airspace-data';
    import { createAirspaceResolver } from '@squawk/airspace';

    const resolver = createAirspaceResolver({ data: usBundledAirspace });