-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathva_list.py
More file actions
97 lines (87 loc) · 4.9 KB
/
va_list.py
File metadata and controls
97 lines (87 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# List of counties/cities as well states and other multipliers for VA QSO Party
counties = {}
counties["abbrev"] = []
counties["abbrev"] = ['ACC', 'ALB', 'ALX', 'ALL', 'AME']
counties["abbrev"].extend(['AMH', 'APP', 'ARL', 'AUG', 'BAT'])
counties["abbrev"].extend(['BED', 'BLA', 'BOT', 'BRX', 'BRU'])
counties["abbrev"].extend(['BCH', 'BHM', 'BVX', 'CAM', 'CLN'])
counties["abbrev"].extend(['CRL', 'CCY', 'CHA', 'CHX', 'CPX'])
counties["abbrev"].extend(['CHE', 'CLA', 'COX', 'CVX', 'CRA'])
counties["abbrev"].extend(['CUL', 'CUM', 'DAX', 'DIC', 'DIN'])
counties["abbrev"].extend(['EMX', 'ESS', 'FFX', 'FXX', 'FCX'])
counties["abbrev"].extend(['FAU', 'FLO', 'FLU', 'FRA', 'FRX'])
counties["abbrev"].extend(['FRE', 'FBX', 'GAX', 'GIL', 'GLO'])
counties["abbrev"].extend(['GOO', 'GRA', 'GRN', 'GVL', 'HAL'])
counties["abbrev"].extend(['HAX', 'HAN', 'HCO', 'HBX', 'HRY'])
counties["abbrev"].extend(['HIG', 'HOX', 'IOW', 'JAM', 'KQN'])
counties["abbrev"].extend(['KGE', 'KWM', 'LAN', 'LEE', 'LEX'])
counties["abbrev"].extend(['LDN', 'LSA', 'LUN', 'LYX', 'MAD'])
counties["abbrev"].extend(['MAT', 'MAX', 'MPX', 'MVX', 'MEC'])
counties["abbrev"].extend(['MID', 'MON', 'NEL', 'NEW', 'NNX'])
counties["abbrev"].extend(['NFX', 'NHA', 'NUM', 'NRX', 'NOT'])
counties["abbrev"].extend(['ORG', 'PAG', 'PAT', 'PBX', 'PIT'])
counties["abbrev"].extend(['PQX', 'POX', 'POW', 'PRE', 'PRG'])
counties["abbrev"].extend(['PRW', 'PUL', 'RAX', 'RAP', 'RIC'])
counties["abbrev"].extend(['RIX', 'ROA', 'ROX', 'RBR', 'RHM'])
counties["abbrev"].extend(['RUS', 'SAX', 'SCO', 'SHE', 'SMY'])
counties["abbrev"].extend(['SHA', 'SPO', 'STA', 'STX', 'SUX'])
counties["abbrev"].extend(['SUR', 'SUS', 'TAZ', 'VBX', 'WAR'])
counties["abbrev"].extend(['WAS', 'WAX', 'WES', 'WMX', 'WIX'])
counties["abbrev"].extend(['WIS', 'WYT', 'YOR'])
counties["name"] = ['Accomack', 'Albemarle', 'Alexandria',
'Alleghany', 'Amelia', 'Amherst',
'Appomattox', 'Arlington', 'Augusta',
'Bath', 'Bedford', 'Bland',
'Botetourt', 'Bristol', 'Brunswick',
'Buchanan', 'Buckingham', 'Buena Vista',
'Campbell', 'Caroline', 'Carroll',
'Charles City', 'Charlotte', 'Charlottesville',
'Chesapeake', 'Chesterfield', 'Clarke',
'Colonial Heights', 'Covington', 'Craig',
'Culpepper', 'Cumberland', 'Danville',
'Dickenson', 'Dinwiddie', 'Emporia',
'Essex', 'Fairfax', 'Fairfax',
'Falls Church', 'Fauquier', 'Floyd',
'Fluvanna', 'Franklin', 'Franklin',
'Frederick', 'Fredericksburg', 'Galax',
'Giles', 'Gloucester', 'Goochland',
'Grayson', 'Greene', 'Greensville',
'Halifax', 'Hampton', 'Hanover',
'Henrico', 'Harrisonburg', 'Henry',
'Highland', 'Hopewell', 'Isle of Wight',
'James City', 'King Queen', 'King George',
'King William', 'Lancaster', 'Lee',
'Lexington', 'Loudoun', 'Louisa',
'Lunenburg', 'Lynchburg', 'Madison',
'Mathews', 'Manassas', 'Manassas Park',
'Martinsville', 'Mecklenburg', 'Middlesex',
'Montgomery', 'Nelson', 'New Kent',
'Newport News', 'Norfolk', 'Northampton',
'Northumberland', 'Norton', 'Nottoway',
'Orange', 'Page', 'Patrick',
'Petersburg', 'Pittsylvania', 'Poquoson',
'Portsmouth', 'Powhatan', 'Prince Edward',
'Prince George', 'Prince William', 'Pulaski',
'Radford', 'Rappahannock', 'Richmond',
'Richmond', 'Roanoke', 'Roanoke',
'Rockbridge', 'Rockingham', 'Russell',
'Salem', 'Scott', 'Shenandoah',
'Smyth', 'Southampton', 'Spotsylvania',
'Stafford', 'Staunton', 'Suffolk',
'Surry', 'Sussex', 'Tazewell',
'Virginia Beach', 'Warren', 'Washington',
'Waynesboro', 'Westmoreland', 'Williamsburg',
'Winchester', 'Wise', 'Wythe', 'York']
# Initialize the states list
states = {}
states['abbrev'] = ["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DC",
"DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA",
"KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN",
"MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM",
"NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI",
"SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA",
"WV", "WI", "WY"]
# Initialize the province list
province = {}
province['abbrev'] = ["AB", "BC", "MB", "NB", "NL", "NS", "NT",
"NU", "ON", "PE", "QC", "SK", "YT"]