Last active
May 15, 2018 21:53
-
-
Save terriblememory/bc6b331fa59583150eb19a94e809daf6 to your computer and use it in GitHub Desktop.
List of FAA raster chart names and short codes
This file contains hidden or 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
/// <summary> | |
/// In general the three letter code is just the first three letters of | |
/// the name. Where this would result in a duplicate (e.g. New Orleans, | |
/// New York) or otherwise be unclear some reasonable mnemonic is chosen. | |
/// </summary> | |
private Dictionary<string, string> cities = new Dictionary<string, string> | |
{ | |
{ "ALB", "Albuquerque" }, | |
{ "ANC", "Anchorage" }, | |
{ "ATL", "Atlanta" }, | |
{ "BET", "Bethel" }, | |
{ "BIL", "Billings" }, | |
{ "BRO", "Brownsville" }, | |
{ "CPL", "Cape Lisburne" }, | |
{ "CHA", "Charlotte" }, | |
{ "CHE", "Cheyenne" }, | |
{ "CHI", "Chicago" }, | |
{ "CIN", "Cincinnati" }, | |
{ "CDB", "Cold Bay" }, | |
{ "DAL", "Dallas-Ft Worth" }, | |
{ "DAW", "Dawson" }, | |
{ "DEN", "Denver" }, | |
{ "DET", "Detroit" }, | |
{ "DUT", "Dutch Harbor" }, | |
{ "ELP", "El Paso" }, | |
{ "FAI", "Fairbanks" }, | |
{ "GTF", "Great Falls" }, | |
{ "GRB", "Green Bay" }, | |
{ "HAL", "Halifax" }, | |
{ "HAW", "Hawaiian Islands" }, | |
{ "HOU", "Houston" }, | |
{ "JAC", "Jacksonville" }, | |
{ "JUN", "Juneau" }, | |
{ "KAN", "Kansas City" }, | |
{ "KET", "Ketchikan" }, | |
{ "KLA", "Klamath Falls" }, | |
{ "KOD", "Kodiak" }, | |
{ "LKH", "Lake Huron" }, | |
{ "LSV", "Las Vegas" }, | |
{ "LSA", "Los Angeles" }, | |
{ "MCG", "McGrath" }, | |
{ "MEM", "Memphis" }, | |
{ "MIA", "Miami" }, | |
{ "MON", "Montreal" }, | |
{ "NOR", "New Orleans" }, | |
{ "NYK", "New York" }, | |
{ "NOM", "Nome" }, | |
{ "OMA", "Omaha" }, | |
{ "PHX", "Phoenix" }, | |
{ "PTB", "Point Barrow" }, | |
{ "SLC", "Salt Lake City" }, | |
{ "SNA", "San Antonio" }, | |
{ "SNF", "San Francisco" }, | |
{ "SEA", "Seattle" }, | |
{ "SEW", "Seward" }, | |
{ "STL", "St Louis" }, | |
{ "TWC", "Twin Cities" }, | |
{ "WDC", "Washington" }, | |
{ "WAI", "Western Aleutian Islands" }, | |
{ "WHI", "Whitehorse" }, | |
{ "WIC", "Wichita" }, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment