amtrak_stations 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4badea972a87b376700d238c1d7312eea894ffd4
4
+ data.tar.gz: 32f980c50622a44c37f6ee21cb299008805ea29a
5
+ SHA512:
6
+ metadata.gz: 1ea63683812e6ffe9f6c2190aada0ec0e5b719976dbc479a397c2778421efa9c95fc2802a16ea04b73a2dd2ad7e1c15aeaa25be91d1f8ce5773281be73118d82
7
+ data.tar.gz: 1f189934a8f3e9d05a66a347fd80c89d674e0ba5cd6e63ce8fb09de01e2e9b61359d40de69c0c1d59b2a5a982284a32d2dade67f8c37820f1aa8db6cc529ba64
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/CHANGELOG.md ADDED
File without changes
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Andrew Girling
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # Amtrak Stations
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/amtrak_stations.svg)](http://badge.fury.io/rb/amtrak_stations)
4
+
5
+ Provides geographical and timezone data on Amtrak stations.
6
+
7
+ Date is from the [Federal Railroad Administration](http://osav-usdot.opendata.arcgis.com/datasets/3e9daf681b154fb19372044f4d52941a_0), with time zone information added.
8
+
9
+ ## Usage
10
+
11
+ Install the gem by adding it to your Gemfile:
12
+
13
+ ```ruby
14
+ gem 'amtrak_stations', '~> 1.0.0'
15
+ ```
16
+
17
+ You can then look up a station by its station code (e.g. `BFX` for Buffalo (Exchange Street), New York using `Amtrak.find_by_station_code`, which returns an object with a bunch of accessors like `name` and `city`:
18
+
19
+ ```ruby
20
+ AmtrakStations.find_by_station_code("BFX")
21
+ => #<AmtrakStations::Station:0x00000000035c7990 @city="Buffalo-Depew", @latitude="42.907017000270038", @longitude="-78.726584000234652", @name="Buffalo (Depew), New York", @state="NY", @station_code="BUF", @timezone="-5">
22
+ ```
23
+
24
+ A couple of other methods provide access to aggregate data.
25
+
26
+ You can call `AmtrakStations.station_codes` for a list of valid IATA codes, perfect for Rails validations:
27
+
28
+ ```ruby
29
+ validates :destination_station, inclusion: { in: AmtrakStations.station_codes, message: "is not a valid station" }
30
+ ```
31
+
32
+ Or `Amtrak.all` will provide `Amtrak::Station` objects representing all the stations the gem knows about.
33
+
34
+ ## Development
35
+
36
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
37
+
38
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/agirling/amtrak_stations. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
43
+
44
+ ## Acknowledgements
45
+
46
+ The data in this gem is made possible by the Office of the Assistant Secretary for Research and Technology/Bureau of Transportation Statistics (BTS) National Transportation Atlas Database (NTAD)
47
+
48
+ This gem is heavily modeled after [Tim Rogers](https://github.com/timrogers)'s [Airports](https://github.com/timrogers/airports) gem. Thank you for your inspiration.
49
+
50
+ ## License
51
+
52
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require "csv"
4
+ require "json"
5
+ require "timezone"
6
+ require 'open-uri'
7
+
8
+ RSpec::Core::RakeTask.new(:spec)
9
+
10
+ task :update, [:google_api_key] do |t, args|
11
+ if args[:google_api_key].nil?
12
+ puts "Please provide your Google API key with access to the Time Zones API\nbundle exec rake update[api_key]"
13
+ next
14
+ else
15
+ Timezone::Lookup.config(:google) do |c|
16
+ c.api_key = args[:google_api_key]
17
+ end
18
+ end
19
+
20
+ cleaned_data = CSV.foreach('data/stations.csv', headers: true).each_with_object({}) do |row, accumulator|
21
+ station_code = row[3]
22
+
23
+ begin
24
+ lookup = Timezone.lookup(row[1], row[0])
25
+ rescue Timezone::Error::InvalidZone
26
+ next
27
+ end
28
+ timezone = lookup.utc_offset / 60 / 60
29
+ timezone -= 1 if lookup.dst?(Time.now)
30
+
31
+ accumulator[station_code] = {
32
+ name: row[4],
33
+ city: row[5],
34
+ state: row[6],
35
+ station_code: station_code,
36
+ latitude: row[1],
37
+ longitude: row[0],
38
+ timezone: timezone,
39
+ }
40
+
41
+ puts accumulator[station_code]
42
+ end
43
+
44
+ cleaned_data = cleaned_data.reject { |code, _| code.nil? || code == "" }
45
+
46
+ File.open("data/stations.json", "w").puts JSON.generate(cleaned_data)
47
+ end
48
+
49
+ task default: :spec
@@ -0,0 +1,30 @@
1
+ lib = File.expand_path("lib", __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "amtrak_stations/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "amtrak_stations"
7
+ spec.version = AmtrakStations::VERSION
8
+ spec.authors = ["Andrew Girling"]
9
+ spec.email = ["agirling@bavservices.com"]
10
+
11
+ spec.summary = "Provides geographical and timezone data on Amtrak stations"
12
+ spec.description = "Provides geographical and timezone data on Amtrak stations"
13
+ spec.homepage = "https://github.com/agirling/amtrak_stations"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.required_ruby_version = ">= 2.2"
24
+
25
+ spec.add_development_dependency "pry", "~> 0.11.3"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rspec", "~> 3.8.0"
28
+ spec.add_development_dependency "rspec-its", "~> 1.2.0"
29
+ spec.add_development_dependency "timezone", "~> 1.0"
30
+ end
data/bin/console ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'amtrak'
5
+ require 'pry'
6
+
7
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
data/data/stations.csv ADDED
@@ -0,0 +1,530 @@
1
+ X,Y,OBJECTID,STNCODE,STNNAME,CITY2,STATE,STFIPS
2
+ -73.994458999966241,40.750326999893062,1,NYP,"New York (Penn Station), New York",New York,NY,36
3
+ -77.006422000431741,38.896993000169722,2,WAS,"Washington, District of Columbia",Washington,DC,11
4
+ -75.181040999746472,39.955615000012479,3,PHL,"Philadelphia (30th St), Pennsylvania",Philadelphia,PA,42
5
+ -87.639443000304311,41.878684000034553,4,CHI,"Chicago (Union Station), Illinois",Chicago,IL,17
6
+ -71.055303999629416,42.352311000127628,5,BOS,"Boston (South Station), Massachusetts",Boston,MA,25
7
+ -118.236778000023975,34.056176999862451,6,LAX,"Los Angeles, California",Los Angeles,CA,06
8
+ -121.500703999961758,38.584004000067509,7,SAC,"Sacramento, California",Sacramento,CA,06
9
+ -76.615687999673725,39.307302000180279,8,BAL,"Baltimore (Penn Station), Maryland",Baltimore,MD,24
10
+ -73.741147000431795,42.641028999686831,9,ALB,"Albany/Rensselaer, New York",Albany-Rensselaer,NY,36
11
+ -71.413477999670803,41.829490000162025,10,PVD,"Providence, Rhode Island",Providence,RI,44
12
+ -117.16957600014581,32.716168999747453,11,SAN,"San Diego (Downtown), California",San Diego,CA,06
13
+ -75.551095000231442,39.737262999896686,12,WIL,"Wilmington, Delaware",Wilmington,DE,10
14
+ -76.69429999958173,39.192361999865589,13,BWI,"BWI Rail Station at Thurgood Marshall Airport, Mar",BWI Marshall Airport,MD,24
15
+ -74.164749999906263,40.734705999951537,14,NWK,"Newark (Penn Station), New Jersey",Newark,NJ,34
16
+ -122.33016100018709,47.59844500024569,15,SEA,"Seattle (Amtrak), Washington",Seattle,WA,53
17
+ -72.926669999558925,41.29771399982176,16,NHV,"New Haven, Connecticut",New Haven,CT,09
18
+ -71.075828000266839,42.347317000212108,17,BBY,"Boston (Back Bay), Massachusetts",Boston,MA,25
19
+ -87.917104000006503,43.034517999847424,18,MKE,"Milwaukee, Wisconsin",Milwaukee,WI,55
20
+ -122.676806000312524,45.528724000303654,19,PDX,"Portland, Oregon",Portland,OR,41
21
+ -122.29161500011628,37.840473999969568,20,EMY,"Emeryville, California",Emeryville,CA,06
22
+ -76.30771400019087,40.054180999905739,21,LNC,"Lancaster, Pennsylvania",Lancaster,PA,42
23
+ -76.878256000045553,40.262050000145599,22,HAR,"Harrisburg, Pennsylvania",Harrisburg,PA,42
24
+ -119.008209999829617,35.372139999840869,23,BFD,"Bakersfield, California",Bakersfield,CA,06
25
+ -71.147894000055672,42.210241999959671,24,RTE,"Westwood, Route 128 Station, Massachusetts",Route 128,MA,25
26
+ -74.754439999673721,40.219011000023187,25,TRE,"Trenton, New Jersey",Trenton,NJ,34
27
+ -71.061121999652443,42.366234999885485,26,BON,"Boston (North Station), Massachusetts",Boston,MA,25
28
+ -73.542159999663554,41.047130000267344,27,STM,"Stamford, Connecticut",Stamford,CT,09
29
+ -117.27113499955766,32.992937000028498,28,SOL,"Solana Beach, California",Solana Beach,CA,06
30
+ -121.737707000173046,38.54356200016062,29,DAV,"Davis, California",Davis,CA,06
31
+ -74.329582999673335,40.568055999726532,30,MET,"Metropark (Iselin), New Jersey",Metropark,NJ,34
32
+ -119.782925999565478,36.738456999989566,31,FNO,"Fresno, California",Fresno,CA,06
33
+ -122.138784000093167,38.018920999930103,32,MTZ,"Martinez, California",Martinez,CA,06
34
+ -117.733694999904941,33.656771000130938,33,IRV,"Irvine, California",Irvine,CA,06
35
+ -77.496943000041796,37.617692999859578,34,RVR,"Richmond (Staples Mill Rd), Virginia",Richmond,VA,51
36
+ -122.271667000137356,37.793865999927526,35,OKJ,"Oakland, California",Oakland - Jack London Square,CA,06
37
+ -119.692784999741519,34.413718000271956,36,SBA,"Santa Barbara, California",Santa Barbara,CA,06
38
+ -90.203838000368833,38.624460999736243,37,STL,"St. Louis, Missouri",St. Louis,MO,29
39
+ -117.379429999957779,33.19251500027972,38,OSD,"Oceanside, California",Oceanside,CA,06
40
+ -117.922849000250736,33.868969000262453,39,FUL,"Fullerton, California",Fullerton,CA,06
41
+ -121.285632000176378,37.945468000125835,40,SKN,"Stockton (711-718), California",Stockton,CA,06
42
+ -122.354130000413264,37.936751999965026,41,RIC,"Richmond, California",Richmond,CA,06
43
+ -117.200073000049485,32.755266000256398,42,OLT,"San Diego (Old Town), California",San Diego - Old Town,CA,06
44
+ -117.877307999623838,33.803803000231596,43,ANA,"Anaheim, California",Anaheim,CA,06
45
+ -77.22094199984808,38.708143000170466,44,LOR,"Lorton (Auto Train), Virginia",Lorton,VA,51
46
+ -81.291273999851967,28.808544000208514,45,SFA,"Sanford (Auto Train), Florida",Sanford,FL,12
47
+ -88.984305999884668,40.509010000262776,46,BNL,"Bloomington-Normal, Illinois",Bloomington-Normal,IL,17
48
+ -121.902387999604187,37.32993300018363,47,SJC,"San Jose, California",San Jose,CA,06
49
+ -117.663813000404559,33.501317999686329,48,SNC,"San Juan Capistrano, California",San Juan Capistrano,CA,06
50
+ -73.797729000179686,42.253891000079776,49,HUD,"Hudson, New York",Hudson,NY,36
51
+ -73.951278000253211,41.921346000213333,50,RHI,"Rhinecliff, New York",Rhinecliff,NY,36
52
+ -75.48376000034429,40.042753999930625,51,PAO,"Paoli, Pennsylvania",Paoli,PA,42
53
+ -119.65181599990602,36.326077999666261,52,HNF,"Hanford, California",Hanford,CA,06
54
+ -77.062329999611833,38.806503000307075,53,ALX,"Alexandria, Virginia",Alexandria,VA,51
55
+ -90.078290999565965,29.946084999945928,54,NOL,Union Passenger Terminal,New Orleans,LA,22
56
+ -80.822811999816025,35.241403000123945,55,CLT,"Charlotte, North Carolina",Charlotte,NC,37
57
+ -76.871494000016312,38.948098000212937,56,NCR,"New Carrollton, Maryland",New Carrollton,MD,24
58
+ -122.04109899971715,38.243400999963157,57,SUI,"Suisun, California",Suisun-Fairfield,CA,06
59
+ -70.291258000192101,43.654097000153641,58,POR,"Portland, Maine",Portland,ME,23
60
+ -89.651384000069768,39.802323000024039,59,SPI,"Springfield, Illinois",Springfield,IL,17
61
+ -71.560596999976099,41.483959000033835,60,KIN,"West Kingston, Rhode Island",Kingston,RI,44
62
+ -88.241365999794439,40.115843000139506,61,CHM,"Champaign-Urbana, Illlinois",Champaign-Urbana,IL,17
63
+ -87.92435899995526,42.94058299973895,62,MKA,"Milwaukee (General Mitchell Intl Airport), Wiscons",Milwaukee Mitchell Airport,WI,55
64
+ -72.093224999596657,41.354267000114653,63,NLC,"New London, Connecticut",New London,CT,09
65
+ -78.645894000343432,35.774923000069187,64,RGH,"Raleigh, North Carolina",Raleigh,NC,37
66
+ -121.967002999625691,37.406777999930576,65,GAC,"Santa Clara (Great America), California",Santa Clara- Great American,CA,06
67
+ -94.585129000035096,39.084576000335666,66,KCY,"Kansas City, Missouri",Kansas City,MO,29
68
+ -122.300707000023806,37.867253999871707,67,BKY,"Berkeley, California",Berkeley,CA,06
69
+ -117.85660700033273,33.751629000010304,68,SNA,"Santa Ana, California",Santa Ana,CA,06
70
+ -79.992306999827406,40.444738000116701,69,PGH,"Pittsburgh, Pennsylvania",Pittsburgh,PA,42
71
+ -74.182290000189099,40.696617999874881,70,EWR,"Newark Liberty International Airport, New Jersey",Newark Liberty Airport,NJ,34
72
+ -72.681314000305207,41.768760999706053,71,HFD,"Hartford, Connecticut",Hartford,CT,09
73
+ -104.999928999911262,39.752959000102244,72,DEN,"Denver, Colorado",Denver,CO,08
74
+ -78.491684000120912,38.031484000271178,73,CVS,"Charlottesville, Virginia",Charlottesville,VA,51
75
+ -81.381515999958268,28.525926000118563,74,ORL,"Orlando, Florida",Orlando,FL,12
76
+ -75.621713000223892,40.019291000202166,75,EXT,"Exton, Pennsylvania",Exton,PA,42
77
+ -83.743153999975831,42.28769199991504,76,ARB,"Ann Arbor, Michigan",Ann Arbor,MI,26
78
+ -76.169244000102324,43.076548000320948,77,SYR,"Syracuse, New York",Syracuse,NY,36
79
+ -77.608057000041768,43.163410999765148,78,ROC,"Rochester, New York",Rochester,NY,36
80
+ -120.476804999995366,37.307183000239213,79,MCD,"Merced, California",Merced,CA,06
81
+ -122.420508999700289,47.2418939998933,80,TAC,"Tacoma, Washington",Tacoma,WA,53
82
+ -120.912913000077353,37.668950999970107,81,MOD,"Modesto, California",Modesto,CA,06
83
+ -79.78708000016006,36.069797000306473,82,GRO,"Greensboro, North Carolina",Greensboro,NC,37
84
+ -85.584017999978812,42.295255000325788,83,KAL,"Kalamazoo, Michigan",Kalamazoo,MI,26
85
+ -120.654700999688501,35.276433999961164,84,SLO,"San Luis Obispo, California",San Luis Obispo,CA,06
86
+ -78.726584000234652,42.907017000270038,85,BUF,"Buffalo (Depew), New York",Buffalo-Depew,NY,36
87
+ -76.451969999617077,37.022731000022461,86,NPN,"Newport News, Virginia",Newport News,VA,51
88
+ -82.450776999553071,27.952492000362376,87,TPA,"Tampa, Florida",Tampa,FL,12
89
+ -76.612233999864173,40.1470279998141,88,ELT,"Elizabethtown, Pennsylvania",Elizabethtown,PA,42
90
+ -97.326673000328341,32.75256300034988,89,FTW,"Fort Worth, Texas",Fort Worth,TX,48
91
+ -73.937489999705733,41.707056000001408,90,POU,"Poughkeepsie, New York",Poughkeepsie,NY,36
92
+ -89.216628000423,37.724234999753143,91,CDL,"Carbondale, Illinois",Carbondale,IL,17
93
+ -90.364105999915594,40.944678000014193,92,GBB,"Galesburg, Illinois",Galesburg,IL,17
94
+ -122.686544000300472,45.628900999843708,93,VAN,"Vancouver, Washington, United States",Vancouver,WA,53
95
+ -93.085354999900275,44.947660999802125,94,MSP,"St. Paul/Minneapolis, Minnesota",St. Paul-Minneapolis,MN,27
96
+ -72.592904999959714,42.105986999821376,95,SPG,"Springfield, Massachusetts",Springfield,MA,25
97
+ -123.092361000343089,44.055043000198395,96,EUG,"Eugene, Oregon",Eugene,OR,41
98
+ -73.784328999969759,40.911450999694146,97,NRO,"New Rochelle, New York",New Rochelle,NY,36
99
+ -78.782246000265786,35.788294000242892,98,CYN,"Cary, North Carolina",Cary,NC,37
100
+ -119.175978000445795,34.199241000272217,99,OXN,"Oxnard, California",Oxnard,CA,06
101
+ -73.18753900006422,41.178005999792305,100,BRP,"Bridgeport, Connecticut",Bridgeport,CT,09
102
+ -79.156933999669747,37.406438999779411,101,LYH,"Lynchburg, Virginia",Lynchburg,VA,51
103
+ -70.958700000425239,42.981020000149869,102,EXR,"Exeter, New Hampshire",Exeter,NH,33
104
+ -84.392476999792933,33.799445000328042,103,ATL,"Atlanta, Georgia",Atlanta,GA,13
105
+ -75.710775000322442,40.002192999970362,104,DOW,"Downingtown, Pennsylvania",Downingtown,PA,42
106
+ -87.906299999813641,42.718292000052458,105,SVT,"Sturtevant, Wisconsin",Sturtevant,WI,55
107
+ -119.843091999717601,34.437729000311862,106,GTA,"Goleta, California",Goleta,CA,06
108
+ -106.647974999696643,35.082061000187416,107,ABQ,"Albuquerque, New Mexico",Albuquerque,NM,35
109
+ -118.448206000028989,34.211294000046571,108,VNC,"Van Nuys (Amtrak), California",Van Nuys,CA,06
110
+ -78.906299000343225,35.997347000176241,109,DNC,"Durham, North Carolina",Durham,NC,37
111
+ -90.05910900021631,35.132457999757442,110,MEM,"Memphis, Tennessee",Memphis,TN,47
112
+ -122.198146999806042,37.75249899970445,111,OAC,"Coliseum/Oakland Airport, Oakland, California",Oakland - Coliseum Airport,CA,06
113
+ -81.723892999964306,30.365600999981023,112,JAX,"Jacksonville, Florida",Jacksonville,FL,12
114
+ -119.812122999810825,39.528520999773363,113,RNO,"Reno, Nevada",Reno,NV,32
115
+ -75.290398999978493,40.00827799979033,114,ARD,"Ardmore, Pennsylvania",Ardmore,PA,42
116
+ -76.730942999571511,40.192568999763289,115,MID,"Middletown, Pennsylvania",Middletown,PA,42
117
+ -90.670939999573662,40.461211999815241,116,MAC,"Macomb, Illinois",Macomb,IL,17
118
+ -83.235310999642806,42.307166999703583,117,DER,"Dearborn, Michigan",Dearborn,MI,26
119
+ -84.495961999750321,42.718730999753021,118,LNS,"East Lansing, Michigan",East Lansing,MI,26
120
+ -119.299917999647022,34.276929000064264,119,VEC,"Ventura, California",Ventura,CA,06
121
+ -80.257759000096399,25.849554000308068,120,MIA,"Miami, Florida",Miami,FL,12
122
+ -70.936013000314105,43.139328000321179,121,DHM,"Durham, New Hampshire",Durham,NH,33
123
+ -122.79405899982757,46.991272999844512,122,OLW,"Olympia/Lacey, Washington",Olympia-Lacey,WA,53
124
+ -72.376818000023022,41.300390000217412,123,OSB,"Old Saybrook, Connecticut",Old Saybrook,CT,09
125
+ -79.998001999826812,32.87486599965689,124,CHS,"Charleston, South Carolina",Charleston,SC,45
126
+ -118.599416999828279,34.253205000312867,125,CWT,"Chatsworth, California",Chatsworth,CA,06
127
+ -123.0283310003026,44.932331000234043,126,SLM,"Salem, Oregon",Salem,OR,41
128
+ -118.353766999948377,34.19307199969311,127,BUR,"Burbank (Airport), California",Burbank Bob Hope Airport,CA,06
129
+ -90.136275999802692,38.90472300018056,128,ALN,"Alton, Illinois",Alton,IL,17
130
+ -76.708564000330256,37.276414000076059,129,WBG,"Williamsburg, Virginia",Williamsburg,VA,51
131
+ -75.223433999987222,43.103892000298586,130,UCA,"Utica, New York",Utica,NY,36
132
+ -88.078765999821243,41.525240000260084,131,JOL,"Joliet, Illinois",Joliet,IL,17
133
+ -77.908029000111483,35.723134999896388,132,WLN,"Wilson, North Carolina",Wilson,NC,37
134
+ -77.457202999719527,38.298413000182137,133,FBG,"Fredericksburg, Virginia",Fredericksburg,VA,51
135
+ -80.06218400020326,26.712553999627914,134,WPB,"West Palm Beach, Florida",West Palm Beach,FL,12
136
+ -81.148263999657445,32.083412000111124,135,SAV,"Savannah, Georgia",Savannah,GA,13
137
+ -87.805562000384384,42.075038000026602,136,GLN,"Glenview, Illinois",Glenview,IL,17
138
+ -83.541720999876674,41.638345000260728,137,TOL,"Toledo, Ohio",Toledo,OH,39
139
+ -90.406761000097163,38.581066999762655,138,KWD,"Kirkwood, Missouri",Kirkwood,MO,29
140
+ -73.942886999779304,42.814605999789826,139,SDY,"Schenectady, New York",Schenectady,NY,36
141
+ -114.335575000394016,48.41347400019157,140,WFH,"Whitefish, Montana",Whitefish,MT,30
142
+ -77.797854999919764,35.938001000123357,141,RMT,"Rocky Mount, North Carolina",Rocky Mount,NC,37
143
+ -78.884788000041894,35.054993000315022,142,FAY,"Fayetteville, North Carolina",Fayetteville,NC,37
144
+ -70.878361000163309,43.197968000312748,143,DOV,"Dover, New Hampshire",Dover,NH,33
145
+ -98.478142999755846,29.419350000075557,144,SAS,"San Antonio, Texas",San Antonio,TX,48
146
+ -76.502641000353819,40.108959999686725,145,MJY,"Mount Joy, Pennsylvania",Mount Joy,PA,42
147
+ -122.511254999596744,48.720262999896789,146,BEL,"Bellingham, Washington",Bellingham,WA,53
148
+ -83.072396999850284,42.368097000164838,147,DET,"Detroit, Michigan",Detroit,MI,26
149
+ -117.415455000354584,47.65672000011692,148,SPK,"Spokane, Washington",Spokane,WA,53
150
+ -70.612191999668838,43.320836000124416,149,WEM,"Wells, Maine",Wells,ME,23
151
+ -122.099277000297704,37.665996999714075,150,HAY,"Hayward, California",Hayward,CA,06
152
+ -81.696172000002747,41.505786999689256,151,CLE,"Cleveland, Ohio",Cleveland,OH,39
153
+ -75.922122999961516,39.95917999997237,152,PAR,"Parkesburg, Pennsylvania",Parkesburg,PA,42
154
+ -90.190936000101274,32.300807999949747,153,JAN,"Jackson, Mississippi",Jackson,MS,28
155
+ -88.145497000359128,41.779513999834464,154,NPV,"Naperville, Illinois",Naperville,IL,17
156
+ -119.034113999923846,34.215933000047052,155,CML,"Camarillo, California (Trains)",Camarillo,CA,06
157
+ -107.32321800039982,39.547903000008404,156,GSC,"Glenwood Springs, Colorado",Glenwood Springs,CO,08
158
+ -79.757056000084404,34.199156999740701,157,FLO,"Florence, South Carolina",Florence,SC,45
159
+ -118.258867999560238,34.123705999859148,158,GDL,"Glendale, California",Glendale,CA,06
160
+ -73.882394000287377,41.1899030001684,159,CRT,"Croton Harmon, New York",Croton-Harmon,NY,36
161
+ -71.086374999643425,42.773297000070507,160,HHL,"Haverhill, Massachusetts",Haverhill,MA,25
162
+ -97.512748999709871,35.465490000327165,161,OKC,"Oklahoma City, Oklahoma",Oklahoma City,OK,40
163
+ -76.276194999564865,36.843508999830838,162,NFK,"Norfolk, Virginia",Norfolk,VA,51
164
+ -70.449138999959132,43.496190999811908,163,SAO,"Saco, Maine",Saco,ME,23
165
+ -118.695163000138294,34.270203999993754,164,SIM,"Simi Valley, California",Simi Valley,CA,06
166
+ -121.93657600004218,37.353219000349618,165,SCC,University Station,Santa Clara University,CA,06
167
+ -71.829780000064076,41.381081000035472,166,WLY,"Westerly, Rhode Island",Westerly,RI,44
168
+ -77.429511999895212,37.534208999879915,167,RVM,"Richmond (Main St), Virginia",Richmond,VA,51
169
+ -74.623976000094601,40.315849999937406,168,PJC,"Princeton Junction, New Jersey",Princeton Junction,NJ,34
170
+ -86.806614000285194,33.512800999773958,169,BHM,"Birmingham, Alabama",Birmingham,AL,01
171
+ -80.170000000029262,26.119255999640345,170,FTL,"Fort Lauderdale, Florida",Fort Lauderdale,FL,12
172
+ -96.807234999957146,32.776093999894272,171,DAL,"Dallas, Texas",Dallas,TX,48
173
+ -122.19785800010105,47.975400999862991,172,EVR,"Everett, Washington",Everett,WA,53
174
+ -91.368524999708171,39.957062999909517,173,QCY,"Quincy, Illinois",Quincy,IL,17
175
+ -111.908349000036409,40.761660999996238,174,SLC,"Salt Lake City, Utah",Salt Lake City,UT,49
176
+ -122.007496000158454,37.559093000245333,175,FMT,"Fremont (Trains, Capitol Buses), California",Fremont,CA,06
177
+ -119.332309000309252,35.594091999833033,176,WAC,"Wasco, California",Wasco,CA,06
178
+ -111.648871000324391,35.19737400010127,177,FLG,"Flagstaff, Arizona",Flagstaff,AZ,04
179
+ -92.169906000144721,38.578870000336451,178,JEF,"Jefferson City, Missouri",Jefferson City,MO,29
180
+ -121.816023999629962,38.017700000183638,179,ACA,"Antioch-Pittsburg, California",Antioch-Pittsburg,CA,06
181
+ -121.286285999754341,38.750016000216185,180,RSV,"Roseville, California",Roseville,CA,06
182
+ -85.187825000121265,42.318453000046624,181,BTL,"Battle Creek, Michigan",Battle Creek,MI,26
183
+ -85.672447000415772,42.955788000122155,182,GRR,"Grand Rapids, Michigan",Grand Rapids,MI,26
184
+ -121.278999999843464,37.957037999885209,183,SKT,"Stockton (ACE, 701-704), California",Stockton - ACE Station,CA,06
185
+ -78.873747999847467,42.878448999822837,184,BFX,"Buffalo (Exchange St), New York",Buffalo- Exchange St.,NY,36
186
+ -81.404234000031551,28.293834999871702,185,KIS,"Kissimmee, Florida",Kissimmee,FL,12
187
+ -76.163260000397941,39.508446999750547,186,ABE,"Aberdeen, Maryland",Aberdeen,MD,24
188
+ -88.376044999789514,39.482729999716035,187,MAT,"Mattoon, Illinois",Mattoon,IL,17
189
+ -87.668684999857163,41.562446000330851,188,HMW,"Homewood, Illinois",Homewood,IL,17
190
+ -73.810027000199653,43.082810000151838,189,SAR,"Saratoga Springs, New York",Saratoga Springs,NY,36
191
+ -89.466815000035851,41.385191000192016,190,PCT,"Princeton, Illinois",Princeton,IL,17
192
+ -86.096552999855462,42.791095999878003,191,HOM,"Holland, Michigan",Holland,MI,26
193
+ -123.102773999825402,44.630463999838646,192,ALY,"Albany, Oregon",Albany,OR,41
194
+ -121.771951999614174,42.225508999686269,193,KFS,"Klamath Falls, Oregon",Klamath Falls,OR,41
195
+ -80.006097000024681,35.957127999777867,194,HPT,"High Point, North Carolina",High Point,NC,37
196
+ -81.040489999664203,33.994297000186258,195,CLB,"Columbia, South Carolina",Columbia,SC,45
197
+ -108.569928999623912,39.06437499972219,196,GJT,"Grand Junction, Colorado",Grand Junction,CO,08
198
+ -122.913016000130384,46.142264000260347,197,KEL,"Kelso-Longview, Washington",Kelso-Longview,WA,53
199
+ -119.52297500002544,34.396779999866794,198,CPN,"Carpinteria, California",Carpinteria,CA,06
200
+ -97.756939999922764,30.269449000379616,199,AUS,"Austin, Texas",Austin,TX,48
201
+ -86.160423000062366,39.761984000278382,200,IND,"Indianapolis, Indiana",Indianapolis,IN,18
202
+ -122.38414100007013,47.811081000019996,201,EDM,"Edmonds, Washington",Edmonds,WA,53
203
+ -119.55704999958725,36.09851600013625,202,COC,"Corcoran, California",Corcoran,CA,06
204
+ -77.428793999844814,37.241626999681131,203,PTB,"Petersburg, Virginia",Petersburg,VA,51
205
+ -122.240253999816531,47.461081000140574,204,TUK,"Tukwila, Washington",Tukwila,WA,53
206
+ -95.928650000124293,41.249828000279265,205,OMA,"Omaha, Nebraska",Omaha,NE,31
207
+ -101.298556999699969,48.236083000170446,206,MOT,"Minot, North Dakota",Minot,ND,38
208
+ -83.651727999663819,43.015424999873829,207,FLN,"Flint, Michigan",Flint,MI,26
209
+ -120.798008999808872,37.527229000319508,208,TRK,"Turlock-Denair, California",Turlock-Denair,CA,06
210
+ -79.031864999616062,43.113547999717156,209,NFL,"Niagara Falls, New York, United States",Niagara Falls,NY,36
211
+ -94.728321999629415,32.494031999657494,210,LVW,"Longview, Texas",Longview,TX,48
212
+ -81.352009000091556,28.597105999697717,211,WPK,"Winter Park, Florida",Winter Park,FL,12
213
+ -77.481304000190164,37.759595999753905,212,ASD,"Ashland, Virginia",Ashland,VA,51
214
+ -103.620925999573458,48.142999999993748,213,WTN,"Williston, North Dakota",Williston,ND,38
215
+ -120.074979999887645,37.022471000205414,214,MDR,"Madera, California",Madera,CA,06
216
+ -110.96677000023081,32.22297700035903,215,TUS,"Tucson, Arizona",Tucson,AZ,04
217
+ -69.965494000181124,43.911245000099655,216,BRK,Visitor's Center,Brunswick,ME,23
218
+ -94.377971999624222,38.912623000177796,217,LEE,"Lees Summit, Missouri",Lees Summit,MO,29
219
+ -83.147010000150701,42.48843900028033,218,ROY,"Royal Oak, Michigan",Royal Oak,MI,26
220
+ -91.247297999801575,43.833154999982909,219,LSE,"LaCrosse, Wisconsin",La Crosse,WI,55
221
+ -88.547109999856431,39.117058999888719,220,EFG,"Effingham, Illinois",Effingham,IL,17
222
+ -122.953061999876084,46.717469999912538,221,CTL,"Centralia, Washington",Centralia,WA,53
223
+ -80.16788400041122,26.011640999899392,222,HOL,"Hollywood, Florida",Hollywood,FL,12
224
+ -71.963093000278576,41.350933999727665,223,MYS,"Mystic, Connecticut",Mystic,CT,09
225
+ -73.902262999725266,40.935585999715144,224,YNY,"Yonkers, New York",Yonkers,NY,36
226
+ -80.122146999965764,26.3170690001715,225,DFB,"Deerfield Beach, Florida",Deerfield Beach,FL,12
227
+ -91.432558000121702,38.707283000292009,226,HEM,"Hermann, Missouri",Hermann,MO,29
228
+ -79.434530999797857,36.094224999649462,227,BNC,"Burlington, North Carolina",Burlington,NC,37
229
+ -89.11792000039803,41.549584000120007,228,MDT,"Mendota, Illinois",Mendota,IL,17
230
+ -83.191026000089991,42.542555000326665,229,TRM,"Troy, MI",Troy,MI,26
231
+ -119.087728999933887,46.237012000058776,230,PSC,"Pasco, Washington",Pasco,WA,53
232
+ -84.399669999817391,42.248113000006178,231,JXN,"Jackson, Michigan",Jackson,MI,26
233
+ -81.352476999896695,29.01784900019355,232,DLD,"Deland, Florida",DeLand,FL,12
234
+ -78.92199599992118,40.329689000249274,233,JST,"Johnstown, Pennsylvania",Johnstown,PA,42
235
+ -78.401620000289853,40.514474999940404,234,ALT,"Altoona, Pennsylvania",Altoona,PA,42
236
+ -81.734877999907127,28.002145999622673,235,WTH,"Winter Haven, Florida",Winter Haven,FL,12
237
+ -80.466323000295731,35.667496000083602,236,SAL,"Salisbury, North Carolina",Salisbury,NC,37
238
+ -77.47257700015561,38.750084000073265,237,MSS,"Manassas, Virginia",Manassas,VA,51
239
+ -96.785372000201605,46.880981999891809,238,FAR,"Fargo, North Dakota",Fargo,ND,38
240
+ -71.143822999579726,42.517357999961973,239,WOB,"Woburn, Massachusetts",Woburn,MA,25
241
+ -121.656745000295274,36.679144999717316,240,SNS,"Salinas, California",Salinas,CA,06
242
+ -86.287344999968369,41.678359999684858,241,SOB,"South Bend, Indiana",South Bend,IN,18
243
+ -85.971847999849857,41.680748000169835,242,EKH,"Elkhart, Indiana",Elkhart,IN,18
244
+ -89.136117999558522,38.52753100024244,243,CEN,"Centralia, Illinois",Centralia,IL,17
245
+ -89.363699000149396,40.147855000193672,244,LCN,"Lincoln, Illinois",Lincoln,IL,17
246
+ -86.745781999961238,41.796656000038311,245,NBU,"New Buffalo, MI",New Buffalo,MI,26
247
+ -85.024297999860323,41.431816000097989,246,WTI,"Waterloo, Indiana",Waterloo,IN,18
248
+ -82.443805000359859,42.960419000209818,247,PTH,"Port Huron, Michigan",Port Huron,MI,26
249
+ -87.865429999712319,41.119258999663678,248,KKI,"Kankakee, Illinois",Kankakee,IL,17
250
+ -95.367525999692063,29.767245000191611,249,HOS,"Houston, Texas",Houston,TX,48
251
+ -120.629266000122641,35.121259999911793,250,GVB,"Grover Beach, California",Grover Beach,CA,06
252
+ -73.110277000043283,44.492465999952401,251,ESX,"Essex Junction, Vermont",Essex Junction-Burlington,VT,50
253
+ -91.640072999834544,44.044403999753527,252,WIN,"Winona, Minnesota",Winona,MN,27
254
+ -117.224891999672209,32.902683999784678,253,SRB,"Sorrento Valley, CA",Sorrento Valley,CA,06
255
+ -77.293026999903475,38.521882000026601,254,QAN,"Quantico, Virginia",Quantico,VA,51
256
+ -80.624927999960974,35.496172000130727,255,KAN,"Kannapolis, North Carolina",Kannapolis,NC,37
257
+ -122.334738000103002,48.418470000234464,256,MVW,"Mount Vernon, Washington",Mount Vernon,WA,53
258
+ -86.89590099961633,40.419346999964169,257,LAF,"Lafayette, Indiana",Lafayette,IN,18
259
+ -92.286784999565967,34.750297999676263,258,LRK,"Little Rock, Arkansas",Little Rock,AR,05
260
+ -72.800678000313752,41.539385000211773,259,MDN,"Meriden, Connecticut",Meriden,CT,09
261
+ -118.878059000244946,34.284759999847964,260,MPK,"Moorpark, California",Moorpark,CA,06
262
+ -72.626378999646988,42.318857999967868,261,NHT,"Northampton, MA",Northampton,MA,25
263
+ -89.927544000272164,41.24576500014777,262,KEE,"Kewanee, Illinois",Kewanee,IL,17
264
+ -72.626100999812635,41.913956000123306,263,WNL,"Windsor Locks, Connecticut",Windsor Locks,CT,09
265
+ -86.252372000431123,41.837411999703825,264,NLS,"Niles, Michigan",Niles,MI,26
266
+ -104.437885999587195,36.901072000339461,265,RAT,"Raton, New Mexico",Raton,NM,35
267
+ -81.434202000030737,27.496631999745169,266,SBG,"Sebring, Florida",Sebring,FL,12
268
+ -121.237298999713843,38.791006000010533,267,RLN,"Rocklin, California",Rocklin,CA,06
269
+ -80.082444000351714,42.120847000223769,268,ERI,"Erie, Pennsylvania",Erie,PA,42
270
+ -72.765273999882965,41.635595000112026,269,BER,"Berlin, Connecticut",Berlin,CT,09
271
+ -72.556497000146592,42.850849000324367,270,BRA,"Brattleboro, Vermont",Brattleboro,VT,50
272
+ -93.764894000311969,41.037116000219562,271,OSC,"Osceola, Iowa",Osceola,IA,19
273
+ -91.012717000428381,38.561465999674688,272,WAH,"Washington, Missouri",Washington,MO,29
274
+ -121.083187000298949,38.90363799995432,273,ARN,"Auburn, California",Auburn,CA,06
275
+ -70.37622500042356,43.514326000107864,274,ORB,"Old Orchard Beach, Maine (Seasonal)",Old Orchard Beach,ME,23
276
+ -108.740547999626997,35.529176000032379,275,GLP,"Gallup, New Mexico",Gallup,NM,35
277
+ -97.345791999928821,31.095883000236626,276,TPL,"Temple, Texas",Temple,TX,48
278
+ -75.820929000422666,39.985688000163648,277,COT,"Coatesville, Pennsylvania",Coatesville,PA,42
279
+ -117.619732999992848,33.419644999750275,278,SNP,"San Clemente Pier, California",San Clemente Pier,CA,06
280
+ -88.636601000300374,40.87965199975897,279,PON,"Pontiac, Illinois",Pontiac,IL,17
281
+ -77.99342099959209,38.472360000221734,280,CLP,"Culpeper, Virginia",Culpeper,VA,51
282
+ -120.306551999690186,47.421556000104104,281,WEN,"Wenatchee, Washington",Wenatchee,WA,53
283
+ -90.176453999792869,33.517158999653745,282,GWD,"Greenwood, Mississippi",Greenwood,MS,28
284
+ -122.595924999727288,45.366145999865587,283,ORC,"Oregon City, Oregon",Oregon City,OR,41
285
+ -96.713169999970347,40.815870999838133,284,LNK,"Lincoln, Nebraska",Lincoln,NE,31
286
+ -120.185386999707859,39.32761600003245,285,TRU,"Truckee, California",Truckee,CA,06
287
+ -106.495644000164035,31.757346000010379,286,ELP,"El Paso, Texas",El Paso,TX,48
288
+ -81.951873999689923,28.045603000337614,287,LKL,"Lakeland, Florida",Lakeland,FL,12
289
+ -89.777450999658029,43.62650899990664,288,WDL,"Wisconsin Dells, Wisconsin",Wisconsin Dells,WI,55
290
+ -72.981538000269992,43.605755999829881,289,RUD,"Rutland, Vermont",Rutland,VT,50
291
+ -89.012609000352498,43.34061100023775,290,CBS,"Columbus, Wisconsin",Columbus,WI,55
292
+ -97.110834999913692,47.917522000166393,291,GFK,"Grand Forks, North Dakota",Grand Forks,ND,38
293
+ -79.063291000355647,43.108736000001102,292,NFS,VIA Rail Canada Station,Niagara Falls,ND,38
294
+ -93.740899999971447,38.762750000314739,293,WAR,"Warrensburg, Missouri",Warrensburg,MO,29
295
+ -113.219522999844358,48.442333000062831,294,GPK,"East Glacier Park, Montana",East Glacier Park,MT,30
296
+ -97.344885999557434,38.046976000313798,295,NEW,"Newton, Kansas",Newton,KS,20
297
+ -72.317272000012025,43.647785000245143,296,WRJ,"White River Jct., Vermont",White River Junction,VT,50
298
+ -79.546892999577622,40.304986000158927,297,GNB,"Greensburg, Pennsylvania",Greensburg,PA,42
299
+ -91.550772000259727,40.971178999906982,298,MTP,"Mt. Pleasant, Iowa",Mount Pleasant,IA,19
300
+ -73.44628399965724,44.696728000267541,299,PLB,"Plattsburgh, New York",Plattsburgh,NY,36
301
+ -80.091153999769517,26.454020999605159,300,DLB,"Delray Beach, Florida",Delray Beach,FL,12
302
+ -121.845861000107874,39.723259000085733,301,CIC,"Chico, California",Chico,CA,06
303
+ -78.280098999757072,35.532785999938064,302,SSM,"Selma, North Carolina",Selma-Smithfield,NC,37
304
+ -75.753513000344682,39.669685999790893,303,NRK,"Newark, Delaware",Newark,DE,10
305
+ -83.292325000109145,42.63277099991641,304,PNT,"Pontiac, Michigan",Pontiac,MI,26
306
+ -90.505331000029855,43.986006999750444,305,TOH,"Tomah, Wisconsin",Tomah,WI,55
307
+ -117.369988000245868,33.975669999685884,306,RIV,"Riverside, California",Riverside-Downtown,CA,06
308
+ -86.484484000008848,42.109079999837682,307,SJM,"St. Joseph, Michigan",St. Joseph-Benton Harbor,MI,26
309
+ -83.982319999660831,42.909495000281588,308,DRD,"Durand, Michigan",Durand,MI,26
310
+ -81.640470999613569,29.649733999972486,309,PAK,"Palatka, Florida",Palatka,FL,12
311
+ -120.57340999992276,34.962926999678103,310,GUA,"Guadalupe, California",Guadalupe,CA,06
312
+ -79.829025999613762,33.663882000286428,311,KTR,"Kingstree, South Carolina",Kingstree,SC,45
313
+ -90.462168999685076,30.507179999961544,312,HMD,"Hammond, Louisiana",Hammond,LA,22
314
+ -92.414929000210819,41.018815000118494,313,OTM,"Ottumwa, Iowa",Ottumwa,IA,19
315
+ -87.871544999836303,41.815633999724682,314,LAG,"La Grange, Illinois",LaGrange Road,IL,17
316
+ -120.687859999731486,35.622683000096217,315,PRB,"Paso Robles, California",Paso Robles,CA,06
317
+ -82.413485999833085,34.858255999875503,316,GRV,"Greenville, South Carolina",Greenville,SC,45
318
+ -84.537061000180501,39.10992700012757,317,CIN,"Cincinnati, Ohio",Cincinnati,OH,39
319
+ -117.31065899996986,34.104112000347939,318,SNB,"San Bernardino (Amtrak Station), California",San Bernardino,CA,06
320
+ -109.678352000130985,48.554464999922516,319,HAV,"Havre, Montana",Havre,MT,30
321
+ -97.44301299979935,35.219962999951179,320,NOR,"Norman, Oklahoma",Norman,OK,40
322
+ -92.493383999759999,40.02921999970669,321,LAP,"La Plata, Missouri",La Plata,MO,29
323
+ -78.758000000030194,39.650627999745979,322,CUM,"Cumberland, Maryland",Cumberland,MD,24
324
+ -94.149092999923127,45.567748000221023,323,SCD,"St. Cloud, Minnesota",St. Cloud,MN,27
325
+ -70.102358000289541,43.855034999776656,324,FRE,"Freeport, ME",Freeport,ME,23
326
+ -105.879968000286553,35.480972999659059,325,LMY,"Lamy, New Mexico",Lamy,NM,35
327
+ -122.393370000245014,40.583594999849595,326,RDD,"Redding (Amtrak Station), California",Redding,CA,06
328
+ -112.047137000142271,33.056284000111106,327,MRC,"Maricopa, Arizona",Maricopa,AZ,04
329
+ -87.809741999741945,41.794911999900407,328,SMT,"Summit, Illinois",Summit,IL,17
330
+ -77.961013999934679,39.458660999759807,329,MRB,"Martinsburg, West Virginia",Martinsburg,WV,54
331
+ -111.856648999802971,48.506747999978941,330,SBY,"Shelby, Montana",Shelby,MT,30
332
+ -80.846900999692792,32.688286000049764,331,YEM,"Yemassee, South Carolina",Yemassee,SC,45
333
+ -82.439734999708833,38.415819999880014,332,HUN,"Huntington, West Virginia",Huntington,WV,54
334
+ -87.560227999973634,33.19316500022402,333,TCL,"Tuscaloosa, Alabama",Tuscaloosa,AL,01
335
+ -121.781594000240929,43.216783999958906,334,CMO,"Chemult, Oregon",Chemult,OR,41
336
+ -74.219499999718224,42.953718999821,335,AMS,"Amsterdam, New York",Amsterdam,NY,36
337
+ -95.664915999988409,39.051414999812565,336,TOP,"Topeka, Kansas",Topeka,KS,20
338
+ -88.696568000260854,32.364165999816592,337,MEI,"Meridian, Mississippi",Meridian,MS,28
339
+ -89.889276000035693,39.279294999917084,338,CRV,"Carlinville, Illinois",Carlinville,IL,17
340
+ -81.882172999939513,31.605588999629536,339,JSP,"Jesup, Georgia",Jesup,GA,13
341
+ -73.580550000098768,43.269602999868972,340,FED,"Fort Edward-Glens Falls, New York",Fort Edward-Glens Falls,NY,36
342
+ -77.247851999872793,38.658914999759261,341,WDB,"Woodbridge, Virginia",Woodbridge,VA,51
343
+ -114.052816000368978,35.188278999928677,342,KNG,"Kingman, Arizona",Kingman,AZ,04
344
+ -93.228705999678311,38.711604000007974,343,SED,"Sedalia, Missouri",Sedalia,MO,29
345
+ -81.638493999912683,38.346367999788562,344,CHW,"Charleston, West Virginia",Charleston,WV,54
346
+ -82.717865999764314,41.440670999776458,345,SKY,"Sandusky, Ohio",Sandusky,OH,39
347
+ -89.286463000067712,31.326920999930714,346,HBG,"Hattiesburg, Mississippi",Hattiesburg,MS,28
348
+ -77.580047000375217,40.588309000083861,347,LEW,"Lewistown, Pennsylvania",Lewistown,PA,42
349
+ -83.306153999766167,43.049519999979474,348,LPE,"Lapeer, Michigan",Lapeer,MI,26
350
+ -88.430706999737936,41.08985399984202,349,DWT,"Dwight, Illinois",Dwight,IL,17
351
+ -72.825220999751949,41.456969000156967,350,WFD,"Wallingford, Connecticut",Wallingford,CT,09
352
+ -91.101951000056062,40.805787999767851,351,BRL,"Burlington, Iowa",Burlington,IA,19
353
+ -75.449960000243806,43.1994250003006,352,ROM,"Rome, New York",Rome,NY,36
354
+ -72.642252999675264,41.85201299987289,353,WND,"Windsor, Connecticut",Windsor,CT,09
355
+ -105.817387999692272,39.947566000083079,354,WIP,"Winter Park/Fraser, Colorado",Fraser-Winter Park,CO,08
356
+ -89.240253999619171,38.012327999877158,355,DQN,"Du Quoin, Illinois",Du Quoin,IL,17
357
+ -121.271887000184947,38.133200999956912,356,LOD,"Lodi, California",Lodi,CA,06
358
+ -95.230538999560011,38.971166000263111,357,LRC,"Lawrence, Kansas",Lawrence,KS,20
359
+ -92.537065999788467,44.566213999846056,358,RDW,"Red Wing, Minnesota",Red Wing,MN,27
360
+ -112.190106000328896,35.251949999942966,359,WMJ,"Williams Junction, Arizona",Williams Junction,AZ,04
361
+ -114.60463499956002,34.839963999977776,360,NDL,"Needles, California",Needles,CA,06
362
+ -94.366995000077324,32.551548999693019,361,MHL,"Marshall, Texas",Marshall,TX,48
363
+ -94.429711000215732,39.086917000241847,362,IDP,"Independence, Missouri",Independence,MO,29
364
+ -120.605000999620458,34.682704000194818,363,LPS,"Lompoc-Surf, California",Lompoc-Surf,CA,06
365
+ -120.643965000166034,47.606493000156654,364,LWA,"Leavenworth, WA",Leavenworth,WA,53
366
+ -74.446265000349399,40.496521999883591,365,NBK,"New Brunswick, New Jersey",New Brunswick,NJ,34
367
+ -73.253800000248802,42.451557999994826,366,PIT,"Pittsfield, Massachusetts",Pittsfield,MA,25
368
+ -89.467626999797574,43.547078999905921,367,POG,"Portage, Wisconsin",Portage,WI,55
369
+ -72.606393999858128,44.255748999716516,368,MPR,"Montpelier, Vermont",Montpelier-Berlin,VT,50
370
+ -79.37230099990623,34.417647000275259,369,DIL,"Dillon, South Carolina",Dillon,SC,45
371
+ -117.293204000075832,33.047109000035121,370,ENC,"Encinitas, CA",Encinitas,CA,06
372
+ -115.750530000435333,40.836482999960225,371,ELK,"Elko, Nevada",Elko,NV,32
373
+ -116.545583000312604,48.276234000153693,372,SPT,"Sandpoint, Idaho",Sandpoint,ID,16
374
+ -100.8732560001839,37.964365000286534,373,GCK,"Garden City, Kansas",Garden City,KS,20
375
+ -77.731078000249468,39.324452000160399,374,HFY,"Harpers Ferry, West Virginia",Harpers Ferry,WV,54
376
+ -80.892232000257366,37.675036999928494,375,HIN,"Hinton, West Virginia",Hinton,WV,54
377
+ -117.350729999829923,33.160989000124331,376,CBV,"Carlsbad Village, CA",Carlsbad Village,CA,06
378
+ -97.125509999667614,34.172464999671,377,ADM,"Ardmore, Oklahoma",Ardmore,OK,40
379
+ -79.383967999914447,36.584089999878628,378,DAN,"Danville, Virginia",Danville,VA,51
380
+ -79.390303000146432,35.175068999822152,379,SOP,"Southern Pines, North Carolina",Southern Pines,NC,37
381
+ -117.31874300029709,33.109247999782596,380,POI,"Carlsbad Poinsettia, CA",Carlsbad Poinsettia,CA,06
382
+ -103.543575999688997,37.988249000330534,381,LAJ,"La Junta, Colorado",La Junta,CO,08
383
+ -97.941048999649155,29.876571000347269,382,SMC,"San Marcos, Texas",San Marcos,TX,48
384
+ -92.014519000287493,30.226547999863914,383,LFT,"Lafayette, Louisiana",Lafayette,LA,22
385
+ -117.292956000378723,34.537200000078187,384,VRV,"Victorville, California",Victorville,CA,06
386
+ -91.336983000414264,40.622590999747217,385,FMD,"Fort Madison, Iowa",Fort Madison,IA,19
387
+ -88.538272000392112,41.662383999887105,386,PLO,"Plano, Illinois",Plano,IL,17
388
+ -97.140895999799255,33.625158999818943,387,GLE,"Gainesville, Texas",Gainesville,TX,48
389
+ -120.952912999792318,39.098873999702761,388,COX,"Colfax, California",Colfax,CA,06
390
+ -113.979163999793215,48.496217999989064,389,WGL,"West Glacier, Montana",West Glacier,MT,30
391
+ -79.071775999642554,38.147639000018302,390,STA,"Staunton, Virginia",Staunton,VA,51
392
+ -77.298789999674938,38.797270999959935,391,BCV,"Burke Centre, VA",Burke Centre,VA,51
393
+ -94.043082000268853,33.420066999842618,392,TXA,"Texarkana, Arkansas",Texarkana,AR,05
394
+ -71.794811999651387,42.261477999749403,393,WOR,"Worcester, Massachusetts",Worcester,MA,25
395
+ -94.795331000001624,46.354601000174689,394,SPL,"Staples, Minnesota",Staples,MN,27
396
+ -95.489099999928314,32.662048999785199,395,MIN,"Mineola, Texas",Mineola,TX,48
397
+ -81.951873999689923,28.045603000337614,396,LAK,"Lakeland, Florida",Lakeland,FL,12
398
+ -78.011780000207651,40.483664999683285,397,HGD,"Huntingdon, Pennsylvania",Huntingdon,PA,42
399
+ -82.09668499985824,41.370033000285474,398,ELY,"Elyria, Ohio",Elyria,OH,39
400
+ -89.782564999874353,30.278372000109297,399,SDL,"Slidell, Louisiana",Slidell,LA,22
401
+ -122.270586999688689,41.21112699994022,400,DUN,"Dunsmuir (Amtrak Station), California",Dunsmuir,CA,06
402
+ -87.506510999856332,41.691154999820391,401,HMI,"Hammond-Whiting, Indiana",Hammond-Whiting,IN,18
403
+ -72.600764999980967,42.585457999990666,402,GFD,"Greenfield, MA",Greenfield,MA,25
404
+ -84.551798999683641,41.480318999738991,403,BYN,"Bryan, Ohio",Bryan,OH,39
405
+ -104.507981000421239,37.172688000034753,404,TRI,"Trinidad, Colorado",Trinidad,CO,08
406
+ -86.899187000094699,40.044705000134883,405,CRF,"Crawfordsville (Amtrak), Indiana",Crawfordsville,IN,18
407
+ -90.451334000428389,31.244466999805091,406,MCB,"McComb, Mississippi",McComb,MS,28
408
+ -105.642735999746407,48.091671999949817,407,WPT,"Wolf Point, Montana",Wolf Point,MT,30
409
+ -88.159125999999603,40.310904999916708,408,RTL,"Rantoul, Illinois",Rantoul,IL,17
410
+ -73.451772999792311,44.187288000270385,409,WSP,"Westport, New York",Westport,NY,36
411
+ -77.145994999636827,39.084547000170126,410,RKV,"Rockville, Maryland",Rockville,MD,24
412
+ -111.664001000363015,40.225956999843113,411,PRO,"Provo, Utah",Provo,UT,49
413
+ -97.407763000252672,30.567666999809603,412,TAY,"Taylor, Texas",Taylor,TX,48
414
+ -72.751805999900952,44.335010999957881,413,WAB,"Waterbury, Vermont",Waterbury-Stowe,VT,50
415
+ -80.304003999631661,37.786443000107447,414,WSS,"White Sulphur Springs, West Virginia",White Sulphur Springs,WV,54
416
+ -97.404756000331858,31.443352000318527,415,MCG,"McGregor, Texas",McGregor,TX,48
417
+ -81.092903999750121,40.921274999693978,416,ALC,"Alliance, Ohio",Alliance,OH,39
418
+ -117.649568999747544,34.061671999704551,417,ONA,"Ontario, California",Ontario,CA,06
419
+ -102.389378999824842,48.319812999709782,418,STN,"Stanley, North Dakota",Stanley,ND,38
420
+ -98.387534000126749,40.584276000058026,419,HAS,"Hastings, Nebraska",Hastings,NE,31
421
+ -83.819693999748409,34.288896999799597,420,GNS,"Gainesville, Georgia",Gainesville,GA,13
422
+ -79.5928130003212,40.020281999719401,421,COV,"Connellsville, Pennsylvania",Connellsville,PA,42
423
+ -122.349935000088749,48.242638000045304,422,STW,"Stanwood, WA",Stanwood,WA,53
424
+ -115.548889999748653,48.394841999716085,423,LIB,"Libby, Montana",Libby,MT,30
425
+ -103.66151299981756,30.357302000043013,424,ALP,"Alpine, Texas",Alpine,TX,48
426
+ -95.845997999702504,46.819692000224109,425,DLK,"Detroit Lakes, Minnesota",Detroit Lakes,MN,27
427
+ -100.016960999903858,37.752305999979207,426,DDG,"Dodge City, Kansas",Dodge City,KS,20
428
+ -85.832145000050104,33.649112000136924,427,ATN,"Anniston, Alabama",Anniston,AL,01
429
+ -105.212778999773363,35.593432000019114,428,LSV,"Las Vegas, New Mexico",Las Vegas,NM,35
430
+ -90.39334099979574,36.753995000230439,429,PBF,"Poplar Bluff, Missouri",Poplar Bluff,MO,29
431
+ -106.636188000037819,48.194853999995878,430,GGW,"Glasgow, Montana",Glasgow,MT,30
432
+ -79.699218000160755,34.883663000081391,431,HAM,"Hamlet, North Carolina",Hamlet,NC,37
433
+ -97.931522000446748,38.055712000020932,432,HUT,"Hutchinson, Kansas",Hutchinson,KS,20
434
+ -105.935503000096077,40.084187999980678,433,GRA,"Granby, Colorado",Granby,CO,08
435
+ -79.385082999624885,40.317405000334119,434,LAB,"Latrobe, Pennsylvania",Latrobe,PA,42
436
+ -114.61557099999736,32.723139000037378,435,YUM,"Yuma, Arizona",Yuma,AZ,04
437
+ -110.694981000080006,35.021666000313687,436,WLO,"Winslow, Arizona",Winslow,AZ,04
438
+ -72.444597000324165,43.136540000146177,437,BLF,"Bellows Falls, Vermont",Bellows Falls,VT,50
439
+ -73.171336999972894,43.613381999697538,438,CNV,"Castleton, VT",Castleton,VT,50
440
+ -97.218459999943988,34.741734999634104,439,PVL,"Pauls Valley, Oklahoma",Pauls Valley,OK,40
441
+ -90.441070000010683,31.582961000111748,440,BRH,"Brookhaven, Mississippi",Brookhaven,MS,28
442
+ -98.861372000319847,48.11046800006384,441,DVL,"Devils Lake, North Dakota",Devils Lake,ND,38
443
+ -80.830811999579353,27.251867000214002,442,OKE,"Okeechobee, Florida",Okeechobee,FL,12
444
+ -99.997556000073132,48.369845999713263,443,RUG,"Rugby, North Dakota",Rugby,ND,38
445
+ -86.109040999846243,41.98094100007323,444,DOA,"Dowagiac, Michigan",Dowagiac,MI,26
446
+ -117.732210000298679,40.969044000031573,445,WNN,"Winnemucca, Nevada",Winnemucca,NV,32
447
+ -86.11164600008415,42.314519000308692,446,BAM,"Bangor, Michigan",Bangor,MI,26
448
+ -94.361617000270329,41.05691999985801,447,CRN,"Creston, Iowa",Creston,IA,19
449
+ -97.382332999811339,32.349742999670596,448,CBR,"Cleburne, Texas",Cleburne,TX,48
450
+ -107.872242000280465,48.36047700013912,449,MAL,"Malta, Montana",Malta,MT,30
451
+ -90.415230000388874,32.848477000328401,450,YAZ,"Yazoo City, Mississippi",Yazoo City,MS,28
452
+ -81.936916999903687,34.953735999737994,451,SPB,"Spartanburg, South Carolina",Spartanburg,SC,45
453
+ -88.888772000185114,36.525704000237553,452,FTN,"Fulton, Kentucky",Fulton,KY,21
454
+ -121.468729999949403,45.71502000017724,453,BNG,"Bingen-White Salmon, Washington",Bingen-White Salmon,WA,53
455
+ -89.262263999687789,36.112710999652485,454,NBN,"Newbern-Dyersburg, Tennessee",Newbern-Dyersburg,TN,47
456
+ -89.127932999847246,31.692167999933233,455,LAU,"Laurel, Mississippi",Laurel,MS,28
457
+ -86.905385000059326,41.721102999844419,456,MCI,"Michigan City, Indiana",Michigan City,IN,18
458
+ -103.802818000297776,40.247169000020037,457,FMG,"Fort Morgan, Colorado",Fort Morgan,CO,08
459
+ -93.217037000020284,30.238126000173057,458,LCH,"Lake Charles, Louisiana",Lake Charles,LA,22
460
+ -119.549266999558895,47.320948000192466,459,EPH,"Ephrata, Washington",Ephrata,WA,53
461
+ -81.143634999862996,33.326183999718836,460,DNK,"Denmark, South Carolina",Denmark,SC,45
462
+ -80.625189999901778,34.248156999877445,461,CAM,"Camden, South Carolina",Camden,SC,45
463
+ -73.086190999641275,44.812360000051513,462,SAB,"St. Albans, Vermont",St. Albans,VT,50
464
+ -90.956765999793944,36.067660000359034,463,WNR,"Walnut Ridge, Arkansas",Walnut Ridge,AR,05
465
+ -94.127367000434958,30.07645799994626,464,BMT,"Beaumont, Texas",Beaumont,TX,48
466
+ -117.025435000347358,34.904820000316349,465,BAR,"Barstow (Amtrak), California",Barstow,CA,06
467
+ -82.832501000419285,34.691114999895326,466,CSN,"Clemson, South Carolina",Clemson,SC,45
468
+ -87.518075999757315,41.515413000159143,467,DYE,"Dyer, Indiana",Dyer,IN,18
469
+ -78.240469999762865,40.667704999678108,468,TYR,"Tyrone, Pennsylvania",Tyrone,PA,42
470
+ -100.625791999911414,40.19763400007816,469,MCK,"McCook, Nebraska",McCook,NE,31
471
+ -116.547913000190903,33.897491000337986,470,PSN,"Palm Springs (Train), California",Palm Springs,CA,06
472
+ -113.610942000142501,48.275543000139109,471,ESM,"Essex, Montana",Essex,MT,30
473
+ -74.952187000159725,40.0716629997955,472,CWH,"Cornwells Heights, Pennsylvania",Cornwells Heights,PA,42
474
+ -81.060693999736202,37.856594000258795,473,PRC,"Prince, West Virginia (Beckley)",Prince,WV,54
475
+ -110.165228000135798,38.992039000116456,474,GRI,"Green River, Utah",Green River,UT,49
476
+ -112.331584000163176,48.638363999974274,475,CUT,"Cut Bank, Montana",Cut Bank,MT,30
477
+ -87.998055000013636,40.75254699972411,476,GLM,"Gilman, Illinois",Gilman,IL,17
478
+ -83.331542000374696,34.578456000299248,477,TCA,"Toccoa, Georgia",Toccoa,GA,13
479
+ -72.377644000028454,43.368330000143473,478,CLA,"Claremont, New Hampshire",Claremont,NH,33
480
+ -89.680259999924715,30.524605999867884,479,PIC,"Picayune, Mississippi",Picayune,MS,28
481
+ -79.82736299973223,37.814521000146108,480,CLF,"Clifton Forge, Virginia",Clifton Forge,VA,51
482
+ -73.458753000279756,44.042296999804364,481,POH,"Port Henry, New York",Port Henry,NY,36
483
+ -82.639602999835759,38.480874999711858,482,AKY,"Ashland, Kentucky",Ashland,KY,21
484
+ -83.771074000129005,38.652147999833161,483,MAY,"Maysville, Kentucky",Maysville,KY,21
485
+ -73.389680999992962,43.853788000256074,484,FTC,"Ticonderoga, New York",Ticonderoga,NY,36
486
+ -99.371240999859239,40.435926000283779,485,HLD,"Holdrege, Nebraska",Holdrege,NE,31
487
+ -110.853893999716803,39.684036000269046,486,HER,"Helper, Utah",Helper,UT,49
488
+ -110.29690400040802,31.968758000312796,487,BEN,"Benson, Arizona",Benson,AZ,04
489
+ -87.155120999585478,40.943280999961893,488,REN,"Rensselaer, Indiana",Rensselaer,IN,18
490
+ -72.665458999645182,43.922398000195024,489,RPH,"Randolph, Vermont",Randolph,VT,50
491
+ -100.902661999768284,29.36220200037646,490,DRT,"Del Rio, Texas",Del Rio,TX,48
492
+ -71.420033000010832,42.275993000300168,491,FRA,"Framingham, Massachusetts",Framingham,MA,25
493
+ -102.618573999893442,38.089623000254825,492,LMR,"Lamar, Colorado",Lamar,CO,08
494
+ -91.823809000190337,30.008415000317783,493,NIB,"New Iberia, Louisiana",New Iberia,LA,22
495
+ -73.403206999701283,43.554693999946295,494,WHL,"Whitehall, New York",Whitehall,NY,36
496
+ -92.81401799966109,34.365483999915803,495,MVN,"Malvern, Arkansas",Malvern,AR,05
497
+ -117.750620999894466,34.059224000100521,496,POS,"Pomona (Sunset Ltd), California",Pomona,CA,06
498
+ -97.357416000279329,35.012033000310474,497,PUR,"Purcell, Oklahoma",Purcell,OK,40
499
+ -93.592246999656069,33.668912999634905,498,HOP,"Hope, AR",Hope,AR,05
500
+ -84.755813999556167,42.247196000219219,499,ALI,"Albion, Michigan",Albion,MI,26
501
+ -113.013151000329358,48.534067000215131,500,BRO,"Browning, Montana",Browning,MT,30
502
+ -90.394346999726224,31.86132000029226,501,HAZ,"Hazlehurst, Mississippi",Hazlehurst,MS,28
503
+ -90.815246000126876,29.746677999830094,502,SCH,"Schriever, Louisiana",Schriever,LA,22
504
+ -107.754346000159771,32.271769999627715,503,DEM,"Deming, New Mexico",Deming,NM,35
505
+ -81.16236600002425,35.269185999653637,504,GAS,"Gastonia, North Carolina",Gastonia,NC,37
506
+ -120.966142000298021,45.657669000037295,505,WIH,"Wishram, Washington",Wishram,WA,53
507
+ -73.371092999946839,44.99486999976957,506,RSP,"Rouses Point, New York",Rouses Point,NY,36
508
+ -75.155114000086002,39.996779999925202,507,PHN,"Philadelphia (North), Pennsylvania",North Philadelphia,PA,42
509
+ -72.602309000036797,42.204156000246691,508,HLK,"Holyoke, Massachusetts",Holyoke,MA,25
510
+ -93.05328399980354,34.113918999937454,509,ARK,"Arkadelphia, Arkansas",Arkadelphia,AR,05
511
+ -72.384958000426749,43.479907999899503,510,WNM,"Windsor, Vermont",Windsor-Mt. Ascutney,VT,50
512
+ -82.96375099982086,38.721281000063016,511,SPM,"South Shore-South Portsmouth, Kentucky",South Portsmouth,KY,21
513
+ -81.32403000038714,38.180743000140879,512,MNG,"Montgomery, West Virginia",Montgomery,WV,54
514
+ -85.133379999907831,39.64596899984025,513,COI,"Connersville, Indiana",Connersville,IN,18
515
+ -108.707025000434243,32.350069999931371,514,LDB,"Lordsburg, New Mexico",Lordsburg,NM,35
516
+ -73.403535999589252,44.524078999963422,515,PRK,"Port Kent, New York",Port Kent,NY,36
517
+ -80.644855999848431,37.72427700022098,516,ALD,"Alderson, West Virginia",Alderson,WV,54
518
+ -81.078753999702727,37.956986000271655,517,THN,"Thurmond, West Virginia",Thurmond,WV,54
519
+ -102.39874600009199,30.13995100017528,518,SND,"Sanderson, Texas",Sanderson,TX,48
520
+ ,,519,ACD,"Arcadia, Missouri",Arcadia,MO,29
521
+ -87.492746999598324,31.024229000223691,520,ATR,"Artmore, Alabama",Artmore,AL,01
522
+ -89.333337999789833,30.314199999702797,521,BAS,"Bay St. Louis, Mississippi",Bay St. Louis,MS,28
523
+ -88.885375000276966,30.408387000372887,522,BIX,"Biloxi, Mississippi",Biloxi,MS,28
524
+ -85.539884999863645,30.794250000209679,523,CIP,"Chipley, Florida",Chipley,FL,12
525
+ -86.558549999963063,30.764235000295599,524,CSV,"Crestview, Florida",Crestview,FL,12
526
+ -104.688499999895612,40.423999999862275,525,GRE,"Greeley, Colorado",Greeley,CO,08
527
+ -83.413218000104905,30.459877999641311,526,MDO,"Madison, Florida",Madison,FL,12
528
+ -88.047508000209476,30.7081079996338,527,MOE,"Mobile, Alabama",Mobile,AL,01
529
+ -87.20503800028682,30.417749000384422,528,PNS,"Pensacola, Florida",Pensacola,FL,12
530
+ -84.289348000385985,30.432611000232292,529,TLH,"Tallahassee, Florida",Tallahassee,FL,12