forked from mwgg/Airports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
Airports | ||
======== | ||
|
||
A JSON database of 28k+ airports with ICAO/IATA codes, names, cities, two-letter country identifiers, elevation, latitude & longitude, and a timezone identifier | ||
A JSON database of 28802 entries with basic information about nearly every airport and landing strip in the world. ICAO codes used as primary value. Each entry contains IATA code, airport name, city, two letter ISO country code, elevation above sea level in feet, coordinates in decimal degrees and timezone. | ||
|
||
```json | ||
"KOSH": { | ||
"iata": "OSH", | ||
"name": "Wittman Regional Airport", | ||
"city": "Oshkosh", | ||
"country": "US", | ||
"elevation": "808", | ||
"lat": "43.9844017029", | ||
"lon": "-88.5569992065", | ||
"tz": "America\/Chicago" | ||
}, | ||
``` |