Link to the repository: https://github.com/NemoTravel/nemo.travel.geodata
The repository contains background information about:
Data are grouped by categories into separate files.
The extension of the files is .json
, the format of the data is JSON
, the encoding is UTF-8
"BA":{"name":{"en":"British Airways PLC"},"country":"UK","logo":{"file":"name1234.png","width":"231","height":"50"}},
Parameter description:
Field | Type | Description |
---|---|---|
name | Object | Airline names in different languages |
name.en | String | Name in English |
country | String | Country code of the airline registration (can be unavailable) |
logo | Object | Information about the airline logo (can be unavailable) |
logo.file | String | Image file name from the images folder |
logo.width | Number | Image width in pixels |
logo.height | Number | Image height in pixels |
"LHR":{"cityName":{"en":"London"},"airportName":{"en":"Heathrow"},"area":"LON","country":"UK","lat":51.47115000,"lng":-0.45649000,"timezone":"Europe/London"},
Parameter description:
Field | Type | Description |
---|---|---|
cityName | Object | City names in different languages |
cityName.en | String | City name in English |
airportName | Object | Airport names in different languages (can be unavailable) |
airportName.en | String | Airport name in English |
area | String | Metropolitan area code (if available) |
country | String | Country code (can be unavailable) |
lat | Number | Latitude of the airport location (can be unavailable) |
lng | Number | Longitude of the airport location (can be unavailable) |
timezone | String | Time zone of the airport (can be unavailable) |
"BER":{"name":{"en":"Berlin"},"country":"DE"},
Parameter description:
Field | Type | Description |
---|---|---|
name | Object | Names in different languages |
name.en | String | Name in English |
country | String | Country code |
"AT":{"name":{"en":"Austria"},"continent":"EU"},
Parameter description:
Field | Type | Description |
---|---|---|
name | Object | Names in different languages |
name.en | String | Name in English |
continent | String | Continent code |
"747":{"name":{"en":"Boeing 747"}},
Parameter description:
Field | Type | Description |
---|---|---|
name | Object | Names in different languages |
name.en | String | Name in English |