59 lines
3.0 KiB
Python
59 lines
3.0 KiB
Python
FLORIDA_CITIES = [
|
|
# Treasure Coast
|
|
"Stuart", "Palm City", "Hobe Sound", "Jensen Beach", "Port Salerno",
|
|
"Indiantown", "Port St. Lucie", "Fort Pierce", "Tradition", "St. Lucie West",
|
|
"Vero Beach", "Sebastian", "Fellsmere", "Roseland", "Indian River Shores",
|
|
"Orchid", "Gifford", "Wabasso",
|
|
# Space Coast / Brevard
|
|
"Melbourne", "Palm Bay", "Titusville", "Cocoa", "Cocoa Beach",
|
|
"Rockledge", "Merritt Island", "Cape Canaveral", "Satellite Beach",
|
|
"Indian Harbour Beach", "Indialantic", "Melbourne Beach", "Grant",
|
|
"Valkaria", "Malabar", "Palm Shores", "Micco", "West Melbourne",
|
|
# Volusia
|
|
"Daytona Beach", "Daytona Beach Shores", "Ormond Beach", "Holly Hill",
|
|
"South Daytona", "Port Orange", "Ponce Inlet", "New Smyrna Beach",
|
|
"Edgewater", "Oak Hill", "Deltona", "DeLand", "Orange City",
|
|
"DeBary", "Lake Helen", "Pierson", "Flagler Beach",
|
|
# Flagler
|
|
"Palm Coast", "Bunnell", "Flagler Beach", "Beverly Beach", "Marineland",
|
|
# St. Johns
|
|
"St. Augustine", "St. Augustine Beach", "Ponte Vedra Beach",
|
|
"Ponte Vedra", "Palm Valley", "Nocatee", "World Golf Village",
|
|
"Hastings", "Crescent Beach", "Vilano Beach",
|
|
# Duval / Jacksonville
|
|
"Jacksonville", "Jacksonville Beach", "Atlantic Beach", "Neptune Beach",
|
|
"Fernandina Beach", "Yulee", "Callahan", "Baldwin", "Mandarin",
|
|
"Southside", "Westside", "Arlington", "Baymeadows", "Ponte Vedra",
|
|
"Orange Park", "Fleming Island",
|
|
# Nassau
|
|
"Fernandina Beach", "Yulee", "Hilliard", "Callahan",
|
|
# Palm Beach / South (just in case they expand)
|
|
"West Palm Beach", "Boca Raton", "Delray Beach", "Lake Worth",
|
|
"Boynton Beach", "Riviera Beach", "Palm Beach Gardens",
|
|
"Jupiter", "Tequesta", "North Palm Beach",
|
|
# Broward
|
|
"Fort Lauderdale", "Hollywood", "Pompano Beach", "Deerfield Beach",
|
|
"Hallandale Beach", "Coral Springs", "Margate", "Coconut Creek",
|
|
"Tamarac", "Plantation", "Davie", "Miramar", "Pembroke Pines",
|
|
"Lauderdale-by-the-Sea", "Dania Beach",
|
|
# Miami-Dade
|
|
"Miami", "Miami Beach", "Coral Gables", "Hialeah", "Homestead",
|
|
"Aventura", "Sunny Isles Beach", "North Miami", "North Miami Beach",
|
|
"Doral", "Kendall", "Cutler Bay", "Palmetto Bay",
|
|
# Gulf Coast
|
|
"Naples", "Marco Island", "Bonita Springs", "Estero", "Fort Myers",
|
|
"Fort Myers Beach", "Cape Coral", "Punta Gorda", "Port Charlotte",
|
|
"Englewood", "Venice", "Sarasota", "Bradenton", "Anna Maria",
|
|
"Holmes Beach", "Palmetto", "St. Petersburg", "Clearwater",
|
|
"Dunedin", "Tarpon Springs", "New Port Richey", "Port Richey",
|
|
"Hudson", "Spring Hill", "Brooksville",
|
|
# Central
|
|
"Orlando", "Kissimmee", "Sanford", "Altamonte Springs", "Casselberry",
|
|
"Winter Park", "Maitland", "Apopka", "Ocoee", "Winter Garden",
|
|
"Clermont", "Leesburg", "The Villages", "Ocala", "Gainesville",
|
|
"Tallahassee", "Pensacola", "Panama City", "Destin", "Fort Walton Beach",
|
|
]
|
|
|
|
# Remove duplicates and sort
|
|
FLORIDA_CITIES = sorted(list(set(FLORIDA_CITIES)))
|