mwgg / Airports

A JSON database of 28k+ airports with ICAO/IATA codes, names, cities, two-letter country identifiers, elevation, latitude & longitude, and a timezone identifier
MIT License
502 stars 180 forks source link

IAD (Washington Dulles) is not in 'Washington, Virginia' it is in 'Dulles, Virginia' #63

Closed grempe closed 2 years ago

grempe commented 2 years ago

The city entry for IAD is incorrect. IAD is near Dulles, Virginia not Washington. It straddles Loudoun and Fairfax counties.

See sidebar on Wlkipedia.

https://en.wikipedia.org/wiki/Dulles_International_Airport

    "KIAD": {
        "icao": "KIAD",
        "iata": "IAD",
        "name": "Washington Dulles International Airport",
        "city": "Washington",
        "state": "Virginia",
        "country": "US",
        "elevation": 312,
        "lat": 38.94449997,
        "lon": -77.45580292,
        "tz": "America\/New_York"
    },

should be

    "KIAD": {
        "icao": "KIAD",
        "iata": "IAD",
        "name": "Washington Dulles International Airport",
        "city": "Dulles",
        "state": "Virginia",
        "country": "US",
        "elevation": 312,
        "lat": 38.94449997,
        "lon": -77.45580292,
        "tz": "America\/New_York"
    },
grempe commented 2 years ago

Thanks for the quick fix!