@squawk
    Preparing search index...

    Interface Airport

    Airport (or other aviation facility) reference data with identifiers, location, physical characteristics, services, runways, and frequencies.

    interface Airport {
        activationDate?: string;
        airframeRepair?: string;
        artccId?: string;
        beaconColor?: string;
        bottledOxygen?: string;
        bulkOxygen?: string;
        city: string;
        country: string;
        county?: string;
        elevationFt?: number;
        faaId: string;
        facilityType: FacilityType;
        frequencies: AirportFrequency[];
        fuelTypes?: string;
        hasLandingFee?: boolean;
        icao?: string;
        lat: number;
        lightingSchedule?: string;
        lon: number;
        magneticVariationDeg?: number;
        magneticVariationDirection?: string;
        magneticVariationYear?: number;
        name: string;
        notamId?: string;
        otherServices?: string;
        ownershipType: OwnershipType;
        powerplantRepair?: string;
        runways: Runway[];
        sectionChart?: string;
        state?: string;
        status: FacilityStatus;
        towerType?: string;
        trafficPatternAltitudeFt?: number;
        useType: FacilityUseType;
    }
    Index

    Properties

    activationDate?: string

    Activation or opening date (e.g. "1939/01").

    airframeRepair?: string

    Airframe repair service level (e.g. "MAJOR", "MINOR", "NONE").

    artccId?: string

    Responsible ARTCC identifier (e.g. "ZNY", "ZLA").

    beaconColor?: string

    Airport beacon lens color (e.g. "WG" for white-green, "WY" for white-yellow).

    bottledOxygen?: string

    Available oxygen types - bottled (e.g. "HIGH", "LOW", "NONE").

    bulkOxygen?: string

    Available oxygen types - bulk (e.g. "HIGH", "LOW", "NONE").

    city: string

    City where the facility is located.

    country: string

    Two-letter country code (e.g. "US").

    county?: string

    County name.

    elevationFt?: number

    Field elevation in feet MSL.

    faaId: string

    FAA location identifier (e.g. "JFK", "LAX", "3N6").

    facilityType: FacilityType

    Type of aviation facility.

    frequencies: AirportFrequency[]

    Communication frequencies for this facility.

    fuelTypes?: string

    Available fuel types (e.g. "100LL,A").

    hasLandingFee?: boolean

    Whether landing fees are charged.

    icao?: string

    ICAO airport code when assigned (e.g. "KJFK").

    lat: number

    Latitude in decimal degrees.

    lightingSchedule?: string

    Lighting schedule description.

    lon: number

    Longitude in decimal degrees.

    magneticVariationDeg?: number

    Magnetic variation in degrees.

    magneticVariationDirection?: string

    Magnetic variation direction ("E" or "W").

    magneticVariationYear?: number

    Year the magnetic variation was last determined.

    name: string

    Official facility name.

    notamId?: string

    NOTAM facility identifier.

    otherServices?: string

    Other available services (e.g. "AFRT,CARGO").

    ownershipType: OwnershipType

    Facility ownership classification.

    powerplantRepair?: string

    Powerplant repair service level (e.g. "MAJOR", "MINOR", "NONE").

    runways: Runway[]

    Runways at this facility.

    sectionChart?: string

    Sectional chart name (e.g. "NEW YORK", "LOS ANGELES").

    state?: string

    Two-letter state code (e.g. "NY", "CA"). Absent for non-US facilities.

    Operational status.

    towerType?: string

    Type of control tower (e.g. "ATCT", "NON-ATCT", "TRSA").

    trafficPatternAltitudeFt?: number

    Traffic pattern altitude in feet MSL.

    Facility use classification.