UNPKG

all-airports

Version:

Serves as an independent data scraping module, complete with ontology and full scraping ability for the airports of the world

67 lines (66 loc) 1.61 kB
import { AirportDatahubSourceObject } from '../models/airport-datahub-source-object'; export declare function createLookupTable(): void; export declare const airportDataList: ({ "iata": string; "lon": string; "iso": string; "status": number; "name": string; "continent": string; "type": string; "lat": string; "size": string; } | { "iata": string; "iso": string; "status": number; "name": string; "continent": string; "type": string; "size": null; "lon"?: undefined; "lat"?: undefined; } | { "iata": string; "iso": string; "status": number; "name": string; "continent": string; "type": string; "size": string; "lon"?: undefined; "lat"?: undefined; } | { "iata": string; "lon": string; "iso": string; "status": number; "name": null; "continent": string; "type": string; "lat": string; "size": string; } | { "iata": string; "iso": string; "status": number; "name": null; "continent": string; "type": string; "size": null; "lon"?: undefined; "lat"?: undefined; } | { "iata": string; "iso": string; "status": number; "name": null; "continent": string; "type": string; "size": string; "lon"?: undefined; "lat"?: undefined; })[]; export declare const airportDatahubList: AirportDatahubSourceObject[]; export declare function dataCodeToIsoCode(dataCode: string): string; export declare function isoCodeToDataCode(iso: string): string;