all-airports
Version:
Serves as an independent data scraping module, complete with ontology and full scraping ability for the airports of the world
76 lines (75 loc) • 2.23 kB
TypeScript
declare class Constants {
BASE: {
COUNTRY_BLACKLIST: string[];
DATA_REQUEST_TIMEOUT: number;
};
ONTOLOGY: {
DT_CONDITION: string;
DT_GEC_CODE: string;
DT_HIGHEST_POINT: string;
DT_HIGHEST_POINT_DESCRIPTION: string;
DT_IATA_CODE: string;
DT_ICAO_CODE: string;
DT_ISO_CODE: string;
DT_IS_COMPOSITE: string;
DT_LENGTH: string;
DT_MATERIAL: string;
DT_NAME: string;
DT_NUM_OF_LAND_SITE_1: string;
DT_NUM_OF_LAND_SITE_2: string;
DT_NUM_OF_LAND_SITE_3: string;
DT_NUM_OF_LAND_SITE_4: string;
DT_NUM_OF_LAND_SITE_5: string;
DT_NUM_OF_LAND_SITE_6: string;
DT_NUM_OF_LAND_SITE_7: string;
DT_REGION_ISO_CODE: string;
DT_RELATIVE_SIZE: string;
DT_STATUS: string;
DT_TYPE: string;
DT_UNIT: string;
DT_WIDTH: string;
DT_WIKI_URI: string;
HAS_AIRPORT: string;
HAS_COUNTRY: string;
HAS_ELEVATION: string;
HAS_HELO_LAND_ZONE: string;
HAS_LOCATION: string;
HAS_MUNICIPALITY: string;
HAS_RUNWAY: string;
HAS_SURFACE_MATERIAL: string;
INST_AIRLINE: string;
INST_AIRPORT: string;
INST_COUNTRY: string;
INST_ELEVATION: string;
INST_GEO_LOCATION: string;
INST_HELO_LAND_ZONE: string;
INST_MUNICIPALITY: string;
INST_RUNWAY: string;
INST_SURFACE_MATERIAL: string;
MAIN_INSTANCE_PATH: string;
MAIN_ONT_PATH: string;
ONT_AIRLINE: string;
ONT_AIRPORT: string;
ONT_COUNTRY: string;
ONT_ELEVATION: string;
ONT_GEO_LOCATION: string;
ONT_HELO_LAND_ZONE: string;
ONT_MUNICIPALITY: string;
ONT_RUNWAY: string;
ONT_SURFACE_MATERIAL: string;
};
RDFS: {
label: string;
};
WGS84_POS: {
ALT: string;
LAT: string;
LAT_LONG: string;
LOCATION: string;
LONG: string;
POINT: string;
SPATIAL_THING: string;
};
}
export declare const consts: Constants;
export {};