ratis 3.4.3 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-gemset +1 -0
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG +40 -39
  5. data/README.md +1 -15
  6. data/lib/ratis/area.rb +1 -1
  7. data/lib/ratis/config.rb +2 -4
  8. data/lib/ratis/fleet_location.rb +2 -7
  9. data/lib/ratis/landmark.rb +1 -4
  10. data/lib/ratis/location.rb +1 -3
  11. data/lib/ratis/location_type_ahead.rb +1 -4
  12. data/lib/ratis/next_bus.rb +0 -2
  13. data/lib/ratis/next_bus2.rb +1 -3
  14. data/lib/ratis/plantrip.rb +1 -3
  15. data/lib/ratis/request.rb +5 -2
  16. data/lib/ratis/schedule_nearby.rb +1 -3
  17. data/lib/ratis/timetable.rb +1 -5
  18. data/lib/ratis/version.rb +1 -1
  19. data/lib/ratis/walkstop.rb +1 -3
  20. data/ratis.gemspec +15 -15
  21. data/spec/ratis/area_spec.rb +1 -10
  22. data/spec/ratis/closest_stop_spec.rb +0 -14
  23. data/spec/ratis/config_spec.rb +21 -30
  24. data/spec/ratis/core_ext_spec.rb +0 -11
  25. data/spec/ratis/fleet_location_spec.rb +8 -25
  26. data/spec/ratis/itinerary_spec.rb +0 -10
  27. data/spec/ratis/landmark_category_spec.rb +1 -12
  28. data/spec/ratis/landmark_spec.rb +12 -25
  29. data/spec/ratis/location_spec.rb +5 -16
  30. data/spec/ratis/location_type_ahead_item_spec.rb +11 -9
  31. data/spec/ratis/location_type_ahead_spec.rb +7 -21
  32. data/spec/ratis/next_bus2_spec.rb +67 -81
  33. data/spec/ratis/next_bus_spec.rb +20 -37
  34. data/spec/ratis/pattern_spec.rb +2 -10
  35. data/spec/ratis/plantrip_spec.rb +19 -18
  36. data/spec/ratis/point_2_point_spec.rb +3 -11
  37. data/spec/ratis/request_spec.rb +1 -20
  38. data/spec/ratis/route_pattern_spec.rb +2 -14
  39. data/spec/ratis/route_spec.rb +1 -10
  40. data/spec/ratis/route_stops_spec.rb +1 -10
  41. data/spec/ratis/routes_spec.rb +1 -9
  42. data/spec/ratis/schedule_nearby_spec.rb +1 -11
  43. data/spec/ratis/timetable_spec.rb +24 -44
  44. data/spec/ratis/walkstop_spec.rb +22 -47
  45. data/spec/spec_helper.rb +4 -3
  46. data/spec/support/vcr_cassettes/Nextbus2_running_LATE.yml +141 -1
  47. data/spec/support/vcr_cassettes/Nextbus_running_LATE.yml +2 -2
  48. data/spec/support/vcr_cassettes/Point2Point.yml +2 -2
  49. data/spec/support/vcr_cassettes/Ratis_Area/_all/only_makes_one_request.yml +19 -9
  50. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/only_makes_one_request.yml +9 -9
  51. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/parses_out_the_stop_fields_correctly.yml +9 -9
  52. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/returns_multiple_locations.yml +9 -9
  53. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/should_return_a_collection_of_Ratis_Stop_s_.yml +9 -9
  54. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/only_makes_one_request.yml +661 -563
  55. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/parses_out_the_vehicle_fields_correctly.yml +661 -584
  56. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/returns_multiple_vehicles.yml +661 -575
  57. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/should_return_a_collection_of_Ratis_Vehicle_s_.yml +661 -575
  58. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/only_makes_one_request.yml +67 -1444
  59. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/parses_out_the_landmark_fields_correctly.yml +67 -1444
  60. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/returns_multiple_landmarks.yml +67 -1444
  61. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/should_return_a_collection_of_Ratis_Landmark_s_.yml +67 -1444
  62. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/only_makes_one_request.yml +9 -9
  63. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_a_collection_of_Ratis_LandmarkCategory_s_.yml +9 -9
  64. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_all_landmark_categories.yml +9 -9
  65. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_web_categories/does_something.yml +9 -9
  66. data/spec/support/vcr_cassettes/Ratis_Location/_where/only_makes_one_request.yml +11 -11
  67. data/spec/support/vcr_cassettes/Ratis_Location/_where/parses_out_fields_correctly.yml +11 -11
  68. data/spec/support/vcr_cassettes/Ratis_Location/_where/should_return_a_collection_of_Ratis_Location_s_.yml +11 -11
  69. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/only_makes_one_request.yml +10 -10
  70. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/parses_out_fields_correctly.yml +10 -10
  71. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_LocationTypeAheadItem_s_.yml +10 -10
  72. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/only_makes_one_request.yml +29 -28
  73. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/returns_the_next_4_bus_times.yml +29 -28
  74. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_map_all_the_services_to_service_openstruct_objects.yml +29 -28
  75. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +62 -80
  76. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/only_makes_one_request.yml +18 -17
  77. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/returns_the_next_bus_times.yml +18 -17
  78. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +52 -52
  79. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_set_all_the_service_values_to_instance_vars.yml +18 -17
  80. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/runs/should_set_the_run_values_to_instance_vars.yml +125 -0
  81. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/only_makes_one_request.yml +125 -0
  82. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/requests_the_correct_SOAP_action.yml +125 -0
  83. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/stops/should_set_the_stop_values_to_instance_vars.yml +125 -0
  84. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/only_makes_one_request.yml +12 -12
  85. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_parse_the_route_info_fields.yml +12 -12
  86. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_a_collection_Pattern_RouteInfo_s_.yml +12 -12
  87. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
  88. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/creates_Ratis_Itineraries_for_each_trip_itinerary.yml +30 -30
  89. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/only_makes_one_request.yml +30 -30
  90. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/returns_a_Plantrip_object.yml +30 -30
  91. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/should_set_all_the_Plantrip_values_to_instance_vars.yml +30 -30
  92. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_groups.yml +68 -74
  93. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_trips_within_each_group.yml +68 -74
  94. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/only_makes_one_request.yml +68 -74
  95. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_off_stop_fields.yml +68 -74
  96. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_on_stop_fields.yml +68 -74
  97. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_service.yml +68 -74
  98. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_trip.yml +68 -74
  99. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_route.yml +15 -17
  100. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_routes.yml +19 -21
  101. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_raise_error_if_the_trip_is_NOT_possible_for_a_route_being_attempted_to_filter_on.yml +5 -5
  102. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/only_makes_one_request.yml +29 -29
  103. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/parses_out_service_fields.yml +29 -29
  104. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_a_routes_only_response_for_each_matched_service.yml +29 -29
  105. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_all_matching_services_that_fit_the_origin/destination_for_a_given_time_frame.yml +29 -29
  106. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/should_NOT_filter_by_passed_in_routes.yml +29 -29
  107. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/only_makes_one_request.yml +133 -70
  108. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_parse_the_stop_fields.yml +133 -70
  109. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Point_s_.yml +132 -69
  110. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Stop_s_.yml +133 -70
  111. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/only_makes_one_request.yml +50 -50
  112. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/parses_out_the_stop_fields_correctly.yml +50 -50
  113. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/should_return_a_collection_of_Ratis_RouteStops_Stop_s_.yml +50 -50
  114. data/spec/support/vcr_cassettes/Ratis_Routes/_all/only_makes_one_request.yml +346 -370
  115. data/spec/support/vcr_cassettes/Ratis_Routes/_all/returns_all_routes.yml +346 -370
  116. data/spec/support/vcr_cassettes/Ratis_Routes/_all/should_set_directions_and_short_name_to_variables.yml +346 -370
  117. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/only_makes_one_request.yml +42 -41
  118. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_non_nil_ScheduleNearby.yml +42 -41
  119. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_single_service_at_the_stop.yml +42 -41
  120. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_all_the_stops.yml +42 -41
  121. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
  122. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/ATIS_call/should_not_throw_a_500.yml +719 -0
  123. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/only_makes_one_request.yml +315 -315
  124. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_parse_the_timetable/stop/trip_fields.yml +315 -315
  125. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_return_a_collection_Timetable_Stop_s_.yml +315 -315
  126. data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/only_makes_one_request.yml +9 -9
  127. data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/should_set_all_the_walkstop_values_to_instance_vars.yml +9 -9
  128. metadata +9 -9
  129. data/.rvmrc +0 -1
  130. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_Location_s_.yml +0 -54
  131. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/runs/should_set_the_run_values_to_instance_vars.yml +0 -180
  132. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/only_makes_one_request.yml +0 -180
  133. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/requests_the_correct_SOAP_action.yml +0 -180
  134. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/stops/should_set_the_stop_values_to_instance_vars.yml +0 -180
@@ -2,20 +2,70 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Routepattern
11
- xmlns="PX_WEB"><Route>LTRL</Route><Direction>E</Direction><Date>12:00:00</Date><Servicetype>W</Servicetype><Routeid>46880</Routeid></Routepattern></env:Body></env:Envelope>
11
+ xmlns="PX_WEB"><Route>LTRL</Route><Direction>E</Direction><Date>12:00:00</Date><Servicetype>W</Servicetype><Routeid>46880</Routeid><Appid>ratis-specs</Appid></Routepattern></env:Body></env:Envelope>
12
12
  headers:
13
13
  Soapaction:
14
14
  - '"PX_WEB#Routepattern"'
15
15
  Content-Type:
16
16
  - text/xml;charset=UTF-8
17
17
  Content-Length:
18
- - '421'
18
+ - '447'
19
+ Accept-Encoding:
20
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
+ Accept:
22
+ - '*/*'
23
+ User-Agent:
24
+ - Ruby
25
+ response:
26
+ status:
27
+ code: 500
28
+ message: Internal Server Error
29
+ headers:
30
+ Date:
31
+ - Sat, 14 Jun 2014 00:44:11 GMT
32
+ Server:
33
+ - Apache/2.2.3 (CentOS)
34
+ Soapserver:
35
+ - SOAP::Lite/Perl/0.55
36
+ Content-Length:
37
+ - '725'
38
+ Connection:
39
+ - close
40
+ Content-Type:
41
+ - text/xml; charset=utf-8
42
+ body:
43
+ encoding: UTF-8
44
+ string: '<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:namesp1="http://namespaces.soaplite.com/perl"
45
+ xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
46
+ xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/1999/XMLSchema"
47
+ SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode
48
+ xsi:type="xsd:string">SOAP-ENV:1007</faultcode><faultstring xsi:type="xsd:string">error
49
+ #1007--Record not found or no more data</faultstring><detail><PX_WEB xsi:type="namesp1:PX_WEB"><code
50
+ xsi:type="xsd:int">1007</code></PX_WEB></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>'
51
+ http_version:
52
+ recorded_at: Sat, 14 Jun 2014 00:44:11 GMT
53
+ - request:
54
+ method: post
55
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
56
+ body:
57
+ encoding: UTF-8
58
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
59
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
60
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Routepattern
61
+ xmlns="PX_WEB"><Route>LTRL</Route><Direction>E</Direction><Date>12:00:00</Date><Servicetype>W</Servicetype><Routeid>144740</Routeid><Appid>ratis-specs</Appid></Routepattern></env:Body></env:Envelope>
62
+ headers:
63
+ Soapaction:
64
+ - '"PX_WEB#Routepattern"'
65
+ Content-Type:
66
+ - text/xml;charset=UTF-8
67
+ Content-Length:
68
+ - '448'
19
69
  Accept-Encoding:
20
70
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
71
  Accept:
@@ -28,13 +78,13 @@ http_interactions:
28
78
  message: OK
29
79
  headers:
30
80
  Date:
31
- - Mon, 06 Jan 2014 23:53:40 GMT
81
+ - Sat, 14 Jun 2014 01:00:24 GMT
32
82
  Server:
33
83
  - Apache/2.2.3 (CentOS)
34
84
  Soapserver:
35
85
  - SOAP::Lite/Perl/0.55
36
86
  Content-Length:
37
- - '16171'
87
+ - '18847'
38
88
  Connection:
39
89
  - close
40
90
  Content-Type:
@@ -44,34 +94,41 @@ http_interactions:
44
94
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
45
95
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
46
96
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:RoutepatternResponse
47
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.6</Version>\n\t<Stops>\n\t\t<Stop>\n\t\t\t<Description>MONTEBELLO/19TH
97
+ xmlns:namesp1=\"PX_WEB\">\t<Version>1.6</Version>\n\t<Stops>\n\t\t<Stop>\n\t\t\t<Description>MONTEBELLO/19TH
48
98
  AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.521203</Lat>\n\t\t\t<Long>-112.099746</Long>\n\t\t\t<Point>33.52120,-112.09975</Point>\n\t\t\t<Atisstopid>10869</Atisstopid>\n\t\t\t<Stopid>10001</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>19TH
49
99
  AVE/CAMELBACK RD LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.509505</Lat>\n\t\t\t<Long>-112.099361</Long>\n\t\t\t<Point>33.50950,-112.09936</Point>\n\t\t\t<Atisstopid>10870</Atisstopid>\n\t\t\t<Stopid>10002</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>7TH
50
100
  AVE/CAMELBACK RD LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.509288</Lat>\n\t\t\t<Long>-112.083949</Long>\n\t\t\t<Point>33.50929,-112.08395</Point>\n\t\t\t<Atisstopid>10871</Atisstopid>\n\t\t\t<Stopid>10003</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTRAL
51
- AVE/CAMELBACK LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.508872</Lat>\n\t\t\t<Long>-112.075829</Long>\n\t\t\t<Point>33.50887,-112.07583</Point>\n\t\t\t<Atisstopid>10872</Atisstopid>\n\t\t\t<Stopid>10004</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CAMPBELL/CENTRAL
101
+ AVE/CAMELBACK LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.508872</Lat>\n\t\t\t<Long>-112.075829</Long>\n\t\t\t<Point>33.50887,-112.07583</Point>\n\t\t\t<Atisstopid>10872</Atisstopid>\n\t\t\t<Stopid>10004</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTRAL
102
+ AVE/CAMELBACK LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.508872</Lat>\n\t\t\t<Long>-112.075829</Long>\n\t\t\t<Point>33.50887,-112.07583</Point>\n\t\t\t<Atisstopid>10872</Atisstopid>\n\t\t\t<Stopid>10004</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CAMPBELL/CENTRAL
52
103
  AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.501903</Lat>\n\t\t\t<Long>-112.073848</Long>\n\t\t\t<Point>33.50190,-112.07385</Point>\n\t\t\t<Atisstopid>10873</Atisstopid>\n\t\t\t<Stopid>10005</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>INDIAN
53
104
  SCHOOL/CENTRAL LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.496236</Lat>\n\t\t\t<Long>-112.073829</Long>\n\t\t\t<Point>33.49624,-112.07383</Point>\n\t\t\t<Atisstopid>10874</Atisstopid>\n\t\t\t<Stopid>10006</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>OSBORN
54
105
  RD/CENTRAL AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.487388</Lat>\n\t\t\t<Long>-112.073895</Long>\n\t\t\t<Point>33.48739,-112.07389</Point>\n\t\t\t<Atisstopid>10875</Atisstopid>\n\t\t\t<Stopid>10007</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>THOMAS
55
106
  RD/CENTRAL AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.481737</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.48174,-112.07383</Point>\n\t\t\t<Atisstopid>10876</Atisstopid>\n\t\t\t<Stopid>10008</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ENCANTO/CENTRAL
56
- AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.474736</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.47474,-112.07383</Point>\n\t\t\t<Atisstopid>10877</Atisstopid>\n\t\t\t<Stopid>10009</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCDOWELL/CENTRAL
57
- AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.465353</Lat>\n\t\t\t<Long>-112.073878</Long>\n\t\t\t<Point>33.46535,-112.07388</Point>\n\t\t\t<Atisstopid>10878</Atisstopid>\n\t\t\t<Stopid>10010</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT/CENTRAL
58
- AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.459821</Lat>\n\t\t\t<Long>-112.073847</Long>\n\t\t\t<Point>33.45982,-112.07385</Point>\n\t\t\t<Atisstopid>10879</Atisstopid>\n\t\t\t<Stopid>10011</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VAN
107
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.474736</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.47474,-112.07383</Point>\n\t\t\t<Atisstopid>10877</Atisstopid>\n\t\t\t<Stopid>10009</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ENCANTO/CENTRAL
108
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.474736</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.47474,-112.07383</Point>\n\t\t\t<Atisstopid>10877</Atisstopid>\n\t\t\t<Stopid>10009</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCDOWELL/CENTRAL
109
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.465353</Lat>\n\t\t\t<Long>-112.073878</Long>\n\t\t\t<Point>33.46535,-112.07388</Point>\n\t\t\t<Atisstopid>10878</Atisstopid>\n\t\t\t<Stopid>10010</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCDOWELL/CENTRAL
110
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.465353</Lat>\n\t\t\t<Long>-112.073878</Long>\n\t\t\t<Point>33.46535,-112.07388</Point>\n\t\t\t<Atisstopid>10878</Atisstopid>\n\t\t\t<Stopid>10010</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT/CENTRAL
111
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.459821</Lat>\n\t\t\t<Long>-112.073847</Long>\n\t\t\t<Point>33.45982,-112.07385</Point>\n\t\t\t<Atisstopid>10879</Atisstopid>\n\t\t\t<Stopid>10011</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT/CENTRAL
112
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.459821</Lat>\n\t\t\t<Long>-112.073847</Long>\n\t\t\t<Point>33.45982,-112.07385</Point>\n\t\t\t<Atisstopid>10879</Atisstopid>\n\t\t\t<Stopid>10011</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VAN
59
113
  BUREN/1ST AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.452252</Lat>\n\t\t\t<Long>-112.075081</Long>\n\t\t\t<Point>33.45225,-112.07508</Point>\n\t\t\t<Atisstopid>10880</Atisstopid>\n\t\t\t<Stopid>10012</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>JEFFERSON
60
114
  STREET/1ST AVE LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448188</Lat>\n\t\t\t<Long>-112.075198</Long>\n\t\t\t<Point>33.44819,-112.07520</Point>\n\t\t\t<Atisstopid>10891</Atisstopid>\n\t\t\t<Stopid>10013</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>3RD
61
- STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.446270</Lat>\n\t\t\t<Long>-112.069777</Long>\n\t\t\t<Point>33.44627,-112.06978</Point>\n\t\t\t<Atisstopid>10892</Atisstopid>\n\t\t\t<Stopid>10014</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>12TH
115
+ STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.446270</Lat>\n\t\t\t<Long>-112.069777</Long>\n\t\t\t<Point>33.44627,-112.06978</Point>\n\t\t\t<Atisstopid>10892</Atisstopid>\n\t\t\t<Stopid>10014</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>3RD
116
+ STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.446270</Lat>\n\t\t\t<Long>-112.069777</Long>\n\t\t\t<Point>33.44627,-112.06978</Point>\n\t\t\t<Atisstopid>10892</Atisstopid>\n\t\t\t<Stopid>10014</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>12TH
62
117
  STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.447237</Lat>\n\t\t\t<Long>-112.056297</Long>\n\t\t\t<Point>33.44724,-112.05630</Point>\n\t\t\t<Atisstopid>10893</Atisstopid>\n\t\t\t<Stopid>10015</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>24TH
63
118
  STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.447221</Lat>\n\t\t\t<Long>-112.029994</Long>\n\t\t\t<Point>33.44722,-112.02999</Point>\n\t\t\t<Atisstopid>10881</Atisstopid>\n\t\t\t<Stopid>10016</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>38TH
64
119
  STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448106</Lat>\n\t\t\t<Long>-112.000498</Long>\n\t\t\t<Point>33.44811,-112.00050</Point>\n\t\t\t<Atisstopid>10882</Atisstopid>\n\t\t\t<Stopid>10017</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>44TH
65
- STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448120</Lat>\n\t\t\t<Long>-111.988580</Long>\n\t\t\t<Point>33.44812,-111.98858</Point>\n\t\t\t<Atisstopid>10883</Atisstopid>\n\t\t\t<Stopid>10018</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRIEST
66
- DR/WASHINGTON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.442420</Lat>\n\t\t\t<Long>-111.956463</Long>\n\t\t\t<Point>33.44242,-111.95646</Point>\n\t\t\t<Atisstopid>10884</Atisstopid>\n\t\t\t<Stopid>10019</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTER
120
+ STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448120</Lat>\n\t\t\t<Long>-111.988580</Long>\n\t\t\t<Point>33.44812,-111.98858</Point>\n\t\t\t<Atisstopid>10883</Atisstopid>\n\t\t\t<Stopid>10018</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>44TH
121
+ STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448120</Lat>\n\t\t\t<Long>-111.988580</Long>\n\t\t\t<Point>33.44812,-111.98858</Point>\n\t\t\t<Atisstopid>10883</Atisstopid>\n\t\t\t<Stopid>10018</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRIEST
122
+ DR/WASHINGTON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.442420</Lat>\n\t\t\t<Long>-111.956463</Long>\n\t\t\t<Point>33.44242,-111.95646</Point>\n\t\t\t<Atisstopid>10884</Atisstopid>\n\t\t\t<Stopid>10019</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRIEST
123
+ DR/WASHINGTON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.442420</Lat>\n\t\t\t<Long>-111.956463</Long>\n\t\t\t<Point>33.44242,-111.95646</Point>\n\t\t\t<Atisstopid>10884</Atisstopid>\n\t\t\t<Stopid>10019</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTER
67
124
  PKWY/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.438386</Lat>\n\t\t\t<Long>-111.947165</Long>\n\t\t\t<Point>33.43839,-111.94716</Point>\n\t\t\t<Atisstopid>10885</Atisstopid>\n\t\t\t<Stopid>10020</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MILL
68
- AVE/THIRD STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.427538</Lat>\n\t\t\t<Long>-111.941194</Long>\n\t\t\t<Point>33.42754,-111.94119</Point>\n\t\t\t<Atisstopid>10894</Atisstopid>\n\t\t\t<Stopid>10021</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MILL
69
- AVE/THIRD STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.427538</Lat>\n\t\t\t<Long>-111.941194</Long>\n\t\t\t<Point>33.42754,-111.94119</Point>\n\t\t\t<Atisstopid>10894</Atisstopid>\n\t\t\t<Stopid>10021</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VETERANS
125
+ AVE/THIRD STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.427538</Lat>\n\t\t\t<Long>-111.941194</Long>\n\t\t\t<Point>33.42754,-111.94119</Point>\n\t\t\t<Atisstopid>10894</Atisstopid>\n\t\t\t<Stopid>10021</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VETERANS
70
126
  WAY/COLLEGE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.426222</Lat>\n\t\t\t<Long>-111.936477</Long>\n\t\t\t<Point>33.42622,-111.93648</Point>\n\t\t\t<Atisstopid>10895</Atisstopid>\n\t\t\t<Stopid>10022</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VETERANS
71
127
  WAY/COLLEGE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.426222</Lat>\n\t\t\t<Long>-111.936477</Long>\n\t\t\t<Point>33.42622,-111.93648</Point>\n\t\t\t<Atisstopid>10895</Atisstopid>\n\t\t\t<Stopid>10022</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>UNIVERSITY
72
128
  DR/RURAL LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.421090</Lat>\n\t\t\t<Long>-111.927296</Long>\n\t\t\t<Point>33.42109,-111.92730</Point>\n\t\t\t<Atisstopid>10896</Atisstopid>\n\t\t\t<Stopid>10023</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>DORSEY
73
129
  LN/APACHE BLVD LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414721</Lat>\n\t\t\t<Long>-111.917512</Long>\n\t\t\t<Point>33.41472,-111.91751</Point>\n\t\t\t<Atisstopid>10886</Atisstopid>\n\t\t\t<Stopid>10024</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCCLINTOCK
74
- DR/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414688</Lat>\n\t\t\t<Long>-111.908882</Long>\n\t\t\t<Point>33.41469,-111.90888</Point>\n\t\t\t<Atisstopid>10887</Atisstopid>\n\t\t\t<Stopid>10025</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>SMITH-MARTIN/APACHE
130
+ DR/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414688</Lat>\n\t\t\t<Long>-111.908882</Long>\n\t\t\t<Point>33.41469,-111.90888</Point>\n\t\t\t<Atisstopid>10887</Atisstopid>\n\t\t\t<Stopid>10025</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCCLINTOCK
131
+ DR/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414688</Lat>\n\t\t\t<Long>-111.908882</Long>\n\t\t\t<Point>33.41469,-111.90888</Point>\n\t\t\t<Atisstopid>10887</Atisstopid>\n\t\t\t<Stopid>10025</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>SMITH-MARTIN/APACHE
75
132
  LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414738</Lat>\n\t\t\t<Long>-111.901498</Long>\n\t\t\t<Point>33.41474,-111.90150</Point>\n\t\t\t<Atisstopid>10888</Atisstopid>\n\t\t\t<Stopid>10026</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRICE-101
76
133
  FWY/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414754</Lat>\n\t\t\t<Long>-111.888747</Long>\n\t\t\t<Point>33.41475,-111.88875</Point>\n\t\t\t<Atisstopid>10889</Atisstopid>\n\t\t\t<Stopid>10027</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>SYCAMORE/MAIN
77
134
  STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Mesa</Area>\n\t\t\t<Lat>33.414787</Lat>\n\t\t\t<Long>-111.871629</Long>\n\t\t\t<Point>33.41479,-111.87163</Point>\n\t\t\t<Atisstopid>10890</Atisstopid>\n\t\t\t<Stopid>10028</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t</Stops>\n\t<Points>\n\t\t\t<Point>33.521203,
@@ -83,19 +140,24 @@ http_interactions:
83
140
  -112.099819</Point>\n\t\t\t<Point>33.513248, -112.099829</Point>\n\t\t\t<Point>33.509768,
84
141
  -112.099872</Point>\n\t\t\t<Point>33.509625, -112.099875</Point>\n\t\t\t<Point>33.509614,
85
142
  -112.099451</Point>\n\t\t\t<Point>33.509611, -112.099359</Point>\n\t\t\t<Point>33.509505,
86
- -112.099361</Point>\n\t\t\t<Point>33.509601, -112.099360</Point>\n\t\t\t<Point>33.509365,
87
- -112.083944</Point>\n\t\t\t<Point>33.509288, -112.083949</Point>\n\t\t\t<Point>33.509365,
88
- -112.083944</Point>\n\t\t\t<Point>33.508872, -112.075829</Point>\n\t\t\t<Point>33.501903,
89
- -112.073785</Point>\n\t\t\t<Point>33.501903, -112.073848</Point>\n\t\t\t<Point>33.501903,
90
- -112.073785</Point>\n\t\t\t<Point>33.496236, -112.073809</Point>\n\t\t\t<Point>33.496236,
91
- -112.073829</Point>\n\t\t\t<Point>33.496236, -112.073809</Point>\n\t\t\t<Point>33.487388,
92
- -112.073803</Point>\n\t\t\t<Point>33.487388, -112.073895</Point>\n\t\t\t<Point>33.487388,
93
- -112.073803</Point>\n\t\t\t<Point>33.481737, -112.073798</Point>\n\t\t\t<Point>33.481737,
94
- -112.073831</Point>\n\t\t\t<Point>33.481737, -112.073798</Point>\n\t\t\t<Point>33.474736,
95
- -112.073825</Point>\n\t\t\t<Point>33.474736, -112.073831</Point>\n\t\t\t<Point>33.474736,
96
- -112.073825</Point>\n\t\t\t<Point>33.465353, -112.073835</Point>\n\t\t\t<Point>33.465353,
97
- -112.073878</Point>\n\t\t\t<Point>33.465353, -112.073835</Point>\n\t\t\t<Point>33.459821,
98
- -112.073860</Point>\n\t\t\t<Point>33.459821, -112.073847</Point>\n\t\t\t<Point>33.459936,
143
+ -112.099361</Point>\n\t\t\t<Point>33.509688, -112.099299</Point>\n\t\t\t<Point>33.509203,
144
+ -112.084016</Point>\n\t\t\t<Point>33.509288, -112.083949</Point>\n\t\t\t<Point>33.509203,
145
+ -112.084016</Point>\n\t\t\t<Point>33.509181, -112.075836</Point>\n\t\t\t<Point>33.508872,
146
+ -112.075829</Point>\n\t\t\t<Point>33.509181, -112.075836</Point>\n\t\t\t<Point>33.508872,
147
+ -112.075829</Point>\n\t\t\t<Point>33.509181, -112.075836</Point>\n\t\t\t<Point>33.501906,
148
+ -112.073917</Point>\n\t\t\t<Point>33.501903, -112.073848</Point>\n\t\t\t<Point>33.501906,
149
+ -112.073917</Point>\n\t\t\t<Point>33.496236, -112.073941</Point>\n\t\t\t<Point>33.496236,
150
+ -112.073829</Point>\n\t\t\t<Point>33.496236, -112.073941</Point>\n\t\t\t<Point>33.487385,
151
+ -112.073649</Point>\n\t\t\t<Point>33.487388, -112.073895</Point>\n\t\t\t<Point>33.487385,
152
+ -112.073649</Point>\n\t\t\t<Point>33.481907, -112.073900</Point>\n\t\t\t<Point>33.481737,
153
+ -112.073831</Point>\n\t\t\t<Point>33.481907, -112.073900</Point>\n\t\t\t<Point>33.474725,
154
+ -112.073933</Point>\n\t\t\t<Point>33.474736, -112.073831</Point>\n\t\t\t<Point>33.474725,
155
+ -112.073933</Point>\n\t\t\t<Point>33.474736, -112.073831</Point>\n\t\t\t<Point>33.474725,
156
+ -112.073933</Point>\n\t\t\t<Point>33.465353, -112.073957</Point>\n\t\t\t<Point>33.465353,
157
+ -112.073878</Point>\n\t\t\t<Point>33.465353, -112.073957</Point>\n\t\t\t<Point>33.465353,
158
+ -112.073878</Point>\n\t\t\t<Point>33.465353, -112.073957</Point>\n\t\t\t<Point>33.459961,
159
+ -112.073726</Point>\n\t\t\t<Point>33.459821, -112.073847</Point>\n\t\t\t<Point>33.459961,
160
+ -112.073726</Point>\n\t\t\t<Point>33.459821, -112.073847</Point>\n\t\t\t<Point>33.459936,
99
161
  -112.073881</Point>\n\t\t\t<Point>33.459843, -112.073912</Point>\n\t\t\t<Point>33.459684,
100
162
  -112.073958</Point>\n\t\t\t<Point>33.459591, -112.073993</Point>\n\t\t\t<Point>33.459478,
101
163
  -112.074031</Point>\n\t\t\t<Point>33.459371, -112.074076</Point>\n\t\t\t<Point>33.459259,
@@ -107,46 +169,47 @@ http_interactions:
107
169
  -112.075116</Point>\n\t\t\t<Point>33.456420, -112.075118</Point>\n\t\t\t<Point>33.454718,
108
170
  -112.075108</Point>\n\t\t\t<Point>33.454502, -112.075109</Point>\n\t\t\t<Point>33.453263,
109
171
  -112.075110</Point>\n\t\t\t<Point>33.452249, -112.075117</Point>\n\t\t\t<Point>33.452252,
110
- -112.075081</Point>\n\t\t\t<Point>33.452252, -112.075136</Point>\n\t\t\t<Point>33.448232,
111
- -112.075198</Point>\n\t\t\t<Point>33.448188, -112.075198</Point>\n\t\t\t<Point>33.448232,
112
- -112.075198</Point>\n\t\t\t<Point>33.446377, -112.069775</Point>\n\t\t\t<Point>33.446270,
113
- -112.069777</Point>\n\t\t\t<Point>33.446377, -112.069775</Point>\n\t\t\t<Point>33.447144,
114
- -112.056295</Point>\n\t\t\t<Point>33.447237, -112.056297</Point>\n\t\t\t<Point>33.447144,
115
- -112.056295</Point>\n\t\t\t<Point>33.447235, -112.029997</Point>\n\t\t\t<Point>33.447221,
116
- -112.029994</Point>\n\t\t\t<Point>33.447235, -112.029997</Point>\n\t\t\t<Point>33.448147,
117
- -112.000497</Point>\n\t\t\t<Point>33.448106, -112.000498</Point>\n\t\t\t<Point>33.448147,
118
- -112.000497</Point>\n\t\t\t<Point>33.448120, -111.988580</Point>\n\t\t\t<Point>33.442420,
119
- -111.956463</Point>\n\t\t\t<Point>33.442423, -111.956460</Point>\n\t\t\t<Point>33.438400,
120
- -111.947148</Point>\n\t\t\t<Point>33.438386, -111.947165</Point>\n\t\t\t<Point>33.438400,
121
- -111.947148</Point>\n\t\t\t<Point>33.427423, -111.941197</Point>\n\t\t\t<Point>33.427538,
122
- -111.941194</Point>\n\t\t\t<Point>33.427423, -111.941197</Point>\n\t\t\t<Point>33.427538,
123
- -111.941194</Point>\n\t\t\t<Point>33.427423, -111.941197</Point>\n\t\t\t<Point>33.426222,
124
- -111.936477</Point>\n\t\t\t<Point>33.421202, -111.927412</Point>\n\t\t\t<Point>33.421090,
125
- -111.927296</Point>\n\t\t\t<Point>33.421202, -111.927412</Point>\n\t\t\t<Point>33.414787,
126
- -111.917514</Point>\n\t\t\t<Point>33.414721, -111.917512</Point>\n\t\t\t<Point>33.414787,
127
- -111.917514</Point>\n\t\t\t<Point>33.414806, -111.908883</Point>\n\t\t\t<Point>33.414688,
128
- -111.908882</Point>\n\t\t\t<Point>33.414806, -111.908883</Point>\n\t\t\t<Point>33.414738,
129
- -111.901537</Point>\n\t\t\t<Point>33.414738, -111.901498</Point>\n\t\t\t<Point>33.414738,
130
- -111.901537</Point>\n\t\t\t<Point>33.414790, -111.888746</Point>\n\t\t\t<Point>33.414754,
131
- -111.888747</Point>\n\t\t\t<Point>33.414801, -111.888706</Point>\n\t\t\t<Point>33.414801,
132
- -111.887800</Point>\n\t\t\t<Point>33.414804, -111.886402</Point>\n\t\t\t<Point>33.414804,
133
- -111.886251</Point>\n\t\t\t<Point>33.414809, -111.885253</Point>\n\t\t\t<Point>33.414809,
134
- -111.884839</Point>\n\t\t\t<Point>33.414809, -111.884553</Point>\n\t\t\t<Point>33.414809,
135
- -111.884379</Point>\n\t\t\t<Point>33.414812, -111.883936</Point>\n\t\t\t<Point>33.414815,
136
- -111.883145</Point>\n\t\t\t<Point>33.414817, -111.883040</Point>\n\t\t\t<Point>33.414817,
137
- -111.882695</Point>\n\t\t\t<Point>33.414823, -111.882107</Point>\n\t\t\t<Point>33.414826,
138
- -111.881556</Point>\n\t\t\t<Point>33.414831, -111.880475</Point>\n\t\t\t<Point>33.414831,
139
- -111.880351</Point>\n\t\t\t<Point>33.414842, -111.879123</Point>\n\t\t\t<Point>33.414839,
140
- -111.878916</Point>\n\t\t\t<Point>33.414839, -111.878679</Point>\n\t\t\t<Point>33.414836,
141
- -111.878374</Point>\n\t\t\t<Point>33.414836, -111.878220</Point>\n\t\t\t<Point>33.414842,
142
- -111.877747</Point>\n\t\t\t<Point>33.414847, -111.877097</Point>\n\t\t\t<Point>33.414847,
143
- -111.876998</Point>\n\t\t\t<Point>33.414847, -111.876756</Point>\n\t\t\t<Point>33.414847,
144
- -111.876243</Point>\n\t\t\t<Point>33.414847, -111.875964</Point>\n\t\t\t<Point>33.414845,
145
- -111.875748</Point>\n\t\t\t<Point>33.414858, -111.874474</Point>\n\t\t\t<Point>33.414858,
146
- -111.873735</Point>\n\t\t\t<Point>33.414853, -111.871867</Point>\n\t\t\t<Point>33.414853,
147
- -111.871631</Point>\n\t\t\t<Point>33.414787, -111.871629</Point>\n\t</Points>\n\t<Mapextents>33.414688,-112.099875,33.521203,-111.871629</Mapextents>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
148
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
149
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:RoutepatternResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
172
+ -112.075081</Point>\n\t\t\t<Point>33.448232, -112.075198</Point>\n\t\t\t<Point>33.448188,
173
+ -112.075198</Point>\n\t\t\t<Point>33.448232, -112.075198</Point>\n\t\t\t<Point>33.446377,
174
+ -112.069775</Point>\n\t\t\t<Point>33.446270, -112.069777</Point>\n\t\t\t<Point>33.446377,
175
+ -112.069775</Point>\n\t\t\t<Point>33.446270, -112.069777</Point>\n\t\t\t<Point>33.446377,
176
+ -112.069775</Point>\n\t\t\t<Point>33.447270, -112.056296</Point>\n\t\t\t<Point>33.447237,
177
+ -112.056297</Point>\n\t\t\t<Point>33.447270, -112.056296</Point>\n\t\t\t<Point>33.447098,
178
+ -112.029997</Point>\n\t\t\t<Point>33.447221, -112.029994</Point>\n\t\t\t<Point>33.447098,
179
+ -112.029997</Point>\n\t\t\t<Point>33.448002, -112.000494</Point>\n\t\t\t<Point>33.448106,
180
+ -112.000498</Point>\n\t\t\t<Point>33.448002, -112.000494</Point>\n\t\t\t<Point>33.448120,
181
+ -111.988580</Point>\n\t\t\t<Point>33.442420, -111.956463</Point>\n\t\t\t<Point>33.442420,
182
+ -111.956453</Point>\n\t\t\t<Point>33.442420, -111.956463</Point>\n\t\t\t<Point>33.442420,
183
+ -111.956453</Point>\n\t\t\t<Point>33.439165, -111.948498</Point>\n\t\t\t<Point>33.438386,
184
+ -111.947165</Point>\n\t\t\t<Point>33.439165, -111.948498</Point>\n\t\t\t<Point>33.427395,
185
+ -111.941197</Point>\n\t\t\t<Point>33.427538, -111.941194</Point>\n\t\t\t<Point>33.427395,
186
+ -111.941197</Point>\n\t\t\t<Point>33.426222, -111.936477</Point>\n\t\t\t<Point>33.421090,
187
+ -111.927296</Point>\n\t\t\t<Point>33.414787, -111.917514</Point>\n\t\t\t<Point>33.414721,
188
+ -111.917512</Point>\n\t\t\t<Point>33.414787, -111.917514</Point>\n\t\t\t<Point>33.414806,
189
+ -111.908883</Point>\n\t\t\t<Point>33.414688, -111.908882</Point>\n\t\t\t<Point>33.414806,
190
+ -111.908883</Point>\n\t\t\t<Point>33.414688, -111.908882</Point>\n\t\t\t<Point>33.414806,
191
+ -111.908883</Point>\n\t\t\t<Point>33.414738, -111.901505</Point>\n\t\t\t<Point>33.414738,
192
+ -111.901498</Point>\n\t\t\t<Point>33.414738, -111.901505</Point>\n\t\t\t<Point>33.414735,
193
+ -111.890392</Point>\n\t\t\t<Point>33.414754, -111.888747</Point>\n\t\t\t<Point>33.414801,
194
+ -111.888706</Point>\n\t\t\t<Point>33.414801, -111.887800</Point>\n\t\t\t<Point>33.414804,
195
+ -111.886402</Point>\n\t\t\t<Point>33.414804, -111.886251</Point>\n\t\t\t<Point>33.414809,
196
+ -111.885253</Point>\n\t\t\t<Point>33.414809, -111.884839</Point>\n\t\t\t<Point>33.414809,
197
+ -111.884553</Point>\n\t\t\t<Point>33.414809, -111.884379</Point>\n\t\t\t<Point>33.414812,
198
+ -111.883936</Point>\n\t\t\t<Point>33.414815, -111.883145</Point>\n\t\t\t<Point>33.414817,
199
+ -111.883040</Point>\n\t\t\t<Point>33.414817, -111.882695</Point>\n\t\t\t<Point>33.414823,
200
+ -111.882107</Point>\n\t\t\t<Point>33.414826, -111.881556</Point>\n\t\t\t<Point>33.414831,
201
+ -111.880475</Point>\n\t\t\t<Point>33.414831, -111.880351</Point>\n\t\t\t<Point>33.414842,
202
+ -111.879123</Point>\n\t\t\t<Point>33.414839, -111.878916</Point>\n\t\t\t<Point>33.414839,
203
+ -111.878679</Point>\n\t\t\t<Point>33.414836, -111.878374</Point>\n\t\t\t<Point>33.414836,
204
+ -111.878220</Point>\n\t\t\t<Point>33.414842, -111.877747</Point>\n\t\t\t<Point>33.414847,
205
+ -111.877097</Point>\n\t\t\t<Point>33.414847, -111.876998</Point>\n\t\t\t<Point>33.414847,
206
+ -111.876756</Point>\n\t\t\t<Point>33.414847, -111.876243</Point>\n\t\t\t<Point>33.414847,
207
+ -111.875964</Point>\n\t\t\t<Point>33.414845, -111.875748</Point>\n\t\t\t<Point>33.414858,
208
+ -111.874474</Point>\n\t\t\t<Point>33.414858, -111.873735</Point>\n\t\t\t<Point>33.414853,
209
+ -111.871867</Point>\n\t\t\t<Point>33.414853, -111.871631</Point>\n\t\t\t<Point>33.414787,
210
+ -111.871629</Point>\n\t</Points>\n\t<Mapextents>33.414688,-112.099875,33.521203,-111.871629</Mapextents>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
211
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
212
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:RoutepatternResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
150
213
  http_version:
151
- recorded_at: Mon, 06 Jan 2014 23:53:41 GMT
214
+ recorded_at: Sat, 14 Jun 2014 01:00:24 GMT
152
215
  recorded_with: VCR 2.8.0
@@ -2,20 +2,70 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Routepattern
11
- xmlns="PX_WEB"><Route>LTRL</Route><Direction>E</Direction><Date>12:00:00</Date><Servicetype>W</Servicetype><Routeid>46880</Routeid></Routepattern></env:Body></env:Envelope>
11
+ xmlns="PX_WEB"><Route>LTRL</Route><Direction>E</Direction><Date>12:00:00</Date><Servicetype>W</Servicetype><Routeid>46880</Routeid><Appid>ratis-specs</Appid></Routepattern></env:Body></env:Envelope>
12
12
  headers:
13
13
  Soapaction:
14
14
  - '"PX_WEB#Routepattern"'
15
15
  Content-Type:
16
16
  - text/xml;charset=UTF-8
17
17
  Content-Length:
18
- - '421'
18
+ - '447'
19
+ Accept-Encoding:
20
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
+ Accept:
22
+ - '*/*'
23
+ User-Agent:
24
+ - Ruby
25
+ response:
26
+ status:
27
+ code: 500
28
+ message: Internal Server Error
29
+ headers:
30
+ Date:
31
+ - Sat, 14 Jun 2014 00:44:11 GMT
32
+ Server:
33
+ - Apache/2.2.3 (CentOS)
34
+ Soapserver:
35
+ - SOAP::Lite/Perl/0.55
36
+ Content-Length:
37
+ - '725'
38
+ Connection:
39
+ - close
40
+ Content-Type:
41
+ - text/xml; charset=utf-8
42
+ body:
43
+ encoding: UTF-8
44
+ string: '<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:namesp1="http://namespaces.soaplite.com/perl"
45
+ xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
46
+ xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/1999/XMLSchema"
47
+ SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode
48
+ xsi:type="xsd:string">SOAP-ENV:1007</faultcode><faultstring xsi:type="xsd:string">error
49
+ #1007--Record not found or no more data</faultstring><detail><PX_WEB xsi:type="namesp1:PX_WEB"><code
50
+ xsi:type="xsd:int">1007</code></PX_WEB></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>'
51
+ http_version:
52
+ recorded_at: Sat, 14 Jun 2014 00:44:12 GMT
53
+ - request:
54
+ method: post
55
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
56
+ body:
57
+ encoding: UTF-8
58
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
59
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
60
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Routepattern
61
+ xmlns="PX_WEB"><Route>LTRL</Route><Direction>E</Direction><Date>12:00:00</Date><Servicetype>W</Servicetype><Routeid>144740</Routeid><Appid>ratis-specs</Appid></Routepattern></env:Body></env:Envelope>
62
+ headers:
63
+ Soapaction:
64
+ - '"PX_WEB#Routepattern"'
65
+ Content-Type:
66
+ - text/xml;charset=UTF-8
67
+ Content-Length:
68
+ - '448'
19
69
  Accept-Encoding:
20
70
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
71
  Accept:
@@ -28,13 +78,13 @@ http_interactions:
28
78
  message: OK
29
79
  headers:
30
80
  Date:
31
- - Mon, 06 Jan 2014 23:53:40 GMT
81
+ - Sat, 14 Jun 2014 01:00:23 GMT
32
82
  Server:
33
83
  - Apache/2.2.3 (CentOS)
34
84
  Soapserver:
35
85
  - SOAP::Lite/Perl/0.55
36
86
  Content-Length:
37
- - '16171'
87
+ - '18880'
38
88
  Connection:
39
89
  - close
40
90
  Content-Type:
@@ -48,30 +98,37 @@ http_interactions:
48
98
  AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.521203</Lat>\n\t\t\t<Long>-112.099746</Long>\n\t\t\t<Point>33.52120,-112.09975</Point>\n\t\t\t<Atisstopid>10869</Atisstopid>\n\t\t\t<Stopid>10001</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>19TH
49
99
  AVE/CAMELBACK RD LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.509505</Lat>\n\t\t\t<Long>-112.099361</Long>\n\t\t\t<Point>33.50950,-112.09936</Point>\n\t\t\t<Atisstopid>10870</Atisstopid>\n\t\t\t<Stopid>10002</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>7TH
50
100
  AVE/CAMELBACK RD LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.509288</Lat>\n\t\t\t<Long>-112.083949</Long>\n\t\t\t<Point>33.50929,-112.08395</Point>\n\t\t\t<Atisstopid>10871</Atisstopid>\n\t\t\t<Stopid>10003</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTRAL
51
- AVE/CAMELBACK LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.508872</Lat>\n\t\t\t<Long>-112.075829</Long>\n\t\t\t<Point>33.50887,-112.07583</Point>\n\t\t\t<Atisstopid>10872</Atisstopid>\n\t\t\t<Stopid>10004</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CAMPBELL/CENTRAL
101
+ AVE/CAMELBACK LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.508872</Lat>\n\t\t\t<Long>-112.075829</Long>\n\t\t\t<Point>33.50887,-112.07583</Point>\n\t\t\t<Atisstopid>10872</Atisstopid>\n\t\t\t<Stopid>10004</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTRAL
102
+ AVE/CAMELBACK LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.508872</Lat>\n\t\t\t<Long>-112.075829</Long>\n\t\t\t<Point>33.50887,-112.07583</Point>\n\t\t\t<Atisstopid>10872</Atisstopid>\n\t\t\t<Stopid>10004</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CAMPBELL/CENTRAL
52
103
  AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.501903</Lat>\n\t\t\t<Long>-112.073848</Long>\n\t\t\t<Point>33.50190,-112.07385</Point>\n\t\t\t<Atisstopid>10873</Atisstopid>\n\t\t\t<Stopid>10005</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>INDIAN
53
104
  SCHOOL/CENTRAL LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.496236</Lat>\n\t\t\t<Long>-112.073829</Long>\n\t\t\t<Point>33.49624,-112.07383</Point>\n\t\t\t<Atisstopid>10874</Atisstopid>\n\t\t\t<Stopid>10006</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>OSBORN
54
105
  RD/CENTRAL AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.487388</Lat>\n\t\t\t<Long>-112.073895</Long>\n\t\t\t<Point>33.48739,-112.07389</Point>\n\t\t\t<Atisstopid>10875</Atisstopid>\n\t\t\t<Stopid>10007</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>THOMAS
55
106
  RD/CENTRAL AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.481737</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.48174,-112.07383</Point>\n\t\t\t<Atisstopid>10876</Atisstopid>\n\t\t\t<Stopid>10008</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ENCANTO/CENTRAL
56
- AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.474736</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.47474,-112.07383</Point>\n\t\t\t<Atisstopid>10877</Atisstopid>\n\t\t\t<Stopid>10009</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCDOWELL/CENTRAL
57
- AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.465353</Lat>\n\t\t\t<Long>-112.073878</Long>\n\t\t\t<Point>33.46535,-112.07388</Point>\n\t\t\t<Atisstopid>10878</Atisstopid>\n\t\t\t<Stopid>10010</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT/CENTRAL
58
- AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.459821</Lat>\n\t\t\t<Long>-112.073847</Long>\n\t\t\t<Point>33.45982,-112.07385</Point>\n\t\t\t<Atisstopid>10879</Atisstopid>\n\t\t\t<Stopid>10011</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VAN
107
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.474736</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.47474,-112.07383</Point>\n\t\t\t<Atisstopid>10877</Atisstopid>\n\t\t\t<Stopid>10009</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ENCANTO/CENTRAL
108
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.474736</Lat>\n\t\t\t<Long>-112.073831</Long>\n\t\t\t<Point>33.47474,-112.07383</Point>\n\t\t\t<Atisstopid>10877</Atisstopid>\n\t\t\t<Stopid>10009</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCDOWELL/CENTRAL
109
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.465353</Lat>\n\t\t\t<Long>-112.073878</Long>\n\t\t\t<Point>33.46535,-112.07388</Point>\n\t\t\t<Atisstopid>10878</Atisstopid>\n\t\t\t<Stopid>10010</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCDOWELL/CENTRAL
110
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.465353</Lat>\n\t\t\t<Long>-112.073878</Long>\n\t\t\t<Point>33.46535,-112.07388</Point>\n\t\t\t<Atisstopid>10878</Atisstopid>\n\t\t\t<Stopid>10010</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT/CENTRAL
111
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.459821</Lat>\n\t\t\t<Long>-112.073847</Long>\n\t\t\t<Point>33.45982,-112.07385</Point>\n\t\t\t<Atisstopid>10879</Atisstopid>\n\t\t\t<Stopid>10011</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT/CENTRAL
112
+ AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.459821</Lat>\n\t\t\t<Long>-112.073847</Long>\n\t\t\t<Point>33.45982,-112.07385</Point>\n\t\t\t<Atisstopid>10879</Atisstopid>\n\t\t\t<Stopid>10011</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VAN
59
113
  BUREN/1ST AVE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.452252</Lat>\n\t\t\t<Long>-112.075081</Long>\n\t\t\t<Point>33.45225,-112.07508</Point>\n\t\t\t<Atisstopid>10880</Atisstopid>\n\t\t\t<Stopid>10012</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>JEFFERSON
60
114
  STREET/1ST AVE LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448188</Lat>\n\t\t\t<Long>-112.075198</Long>\n\t\t\t<Point>33.44819,-112.07520</Point>\n\t\t\t<Atisstopid>10891</Atisstopid>\n\t\t\t<Stopid>10013</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>3RD
61
- STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.446270</Lat>\n\t\t\t<Long>-112.069777</Long>\n\t\t\t<Point>33.44627,-112.06978</Point>\n\t\t\t<Atisstopid>10892</Atisstopid>\n\t\t\t<Stopid>10014</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>12TH
115
+ STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.446270</Lat>\n\t\t\t<Long>-112.069777</Long>\n\t\t\t<Point>33.44627,-112.06978</Point>\n\t\t\t<Atisstopid>10892</Atisstopid>\n\t\t\t<Stopid>10014</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>3RD
116
+ STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.446270</Lat>\n\t\t\t<Long>-112.069777</Long>\n\t\t\t<Point>33.44627,-112.06978</Point>\n\t\t\t<Atisstopid>10892</Atisstopid>\n\t\t\t<Stopid>10014</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>12TH
62
117
  STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.447237</Lat>\n\t\t\t<Long>-112.056297</Long>\n\t\t\t<Point>33.44724,-112.05630</Point>\n\t\t\t<Atisstopid>10893</Atisstopid>\n\t\t\t<Stopid>10015</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>24TH
63
118
  STREET/JEFFERSON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.447221</Lat>\n\t\t\t<Long>-112.029994</Long>\n\t\t\t<Point>33.44722,-112.02999</Point>\n\t\t\t<Atisstopid>10881</Atisstopid>\n\t\t\t<Stopid>10016</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>38TH
64
119
  STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448106</Lat>\n\t\t\t<Long>-112.000498</Long>\n\t\t\t<Point>33.44811,-112.00050</Point>\n\t\t\t<Atisstopid>10882</Atisstopid>\n\t\t\t<Stopid>10017</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>44TH
65
- STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448120</Lat>\n\t\t\t<Long>-111.988580</Long>\n\t\t\t<Point>33.44812,-111.98858</Point>\n\t\t\t<Atisstopid>10883</Atisstopid>\n\t\t\t<Stopid>10018</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRIEST
66
- DR/WASHINGTON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.442420</Lat>\n\t\t\t<Long>-111.956463</Long>\n\t\t\t<Point>33.44242,-111.95646</Point>\n\t\t\t<Atisstopid>10884</Atisstopid>\n\t\t\t<Stopid>10019</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTER
120
+ STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448120</Lat>\n\t\t\t<Long>-111.988580</Long>\n\t\t\t<Point>33.44812,-111.98858</Point>\n\t\t\t<Atisstopid>10883</Atisstopid>\n\t\t\t<Stopid>10018</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>44TH
121
+ STREET/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Lat>33.448120</Lat>\n\t\t\t<Long>-111.988580</Long>\n\t\t\t<Point>33.44812,-111.98858</Point>\n\t\t\t<Atisstopid>10883</Atisstopid>\n\t\t\t<Stopid>10018</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRIEST
122
+ DR/WASHINGTON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.442420</Lat>\n\t\t\t<Long>-111.956463</Long>\n\t\t\t<Point>33.44242,-111.95646</Point>\n\t\t\t<Atisstopid>10884</Atisstopid>\n\t\t\t<Stopid>10019</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRIEST
123
+ DR/WASHINGTON LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.442420</Lat>\n\t\t\t<Long>-111.956463</Long>\n\t\t\t<Point>33.44242,-111.95646</Point>\n\t\t\t<Atisstopid>10884</Atisstopid>\n\t\t\t<Stopid>10019</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>CENTER
67
124
  PKWY/WASHINGTON LIGHT RAIL STN</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.438386</Lat>\n\t\t\t<Long>-111.947165</Long>\n\t\t\t<Point>33.43839,-111.94716</Point>\n\t\t\t<Atisstopid>10885</Atisstopid>\n\t\t\t<Stopid>10020</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MILL
68
- AVE/THIRD STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.427538</Lat>\n\t\t\t<Long>-111.941194</Long>\n\t\t\t<Point>33.42754,-111.94119</Point>\n\t\t\t<Atisstopid>10894</Atisstopid>\n\t\t\t<Stopid>10021</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MILL
69
- AVE/THIRD STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.427538</Lat>\n\t\t\t<Long>-111.941194</Long>\n\t\t\t<Point>33.42754,-111.94119</Point>\n\t\t\t<Atisstopid>10894</Atisstopid>\n\t\t\t<Stopid>10021</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VETERANS
125
+ AVE/THIRD STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.427538</Lat>\n\t\t\t<Long>-111.941194</Long>\n\t\t\t<Point>33.42754,-111.94119</Point>\n\t\t\t<Atisstopid>10894</Atisstopid>\n\t\t\t<Stopid>10021</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VETERANS
70
126
  WAY/COLLEGE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.426222</Lat>\n\t\t\t<Long>-111.936477</Long>\n\t\t\t<Point>33.42622,-111.93648</Point>\n\t\t\t<Atisstopid>10895</Atisstopid>\n\t\t\t<Stopid>10022</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>VETERANS
71
127
  WAY/COLLEGE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.426222</Lat>\n\t\t\t<Long>-111.936477</Long>\n\t\t\t<Point>33.42622,-111.93648</Point>\n\t\t\t<Atisstopid>10895</Atisstopid>\n\t\t\t<Stopid>10022</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>UNIVERSITY
72
128
  DR/RURAL LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.421090</Lat>\n\t\t\t<Long>-111.927296</Long>\n\t\t\t<Point>33.42109,-111.92730</Point>\n\t\t\t<Atisstopid>10896</Atisstopid>\n\t\t\t<Stopid>10023</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>DORSEY
73
129
  LN/APACHE BLVD LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414721</Lat>\n\t\t\t<Long>-111.917512</Long>\n\t\t\t<Point>33.41472,-111.91751</Point>\n\t\t\t<Atisstopid>10886</Atisstopid>\n\t\t\t<Stopid>10024</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCCLINTOCK
74
- DR/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414688</Lat>\n\t\t\t<Long>-111.908882</Long>\n\t\t\t<Point>33.41469,-111.90888</Point>\n\t\t\t<Atisstopid>10887</Atisstopid>\n\t\t\t<Stopid>10025</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>SMITH-MARTIN/APACHE
130
+ DR/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414688</Lat>\n\t\t\t<Long>-111.908882</Long>\n\t\t\t<Point>33.41469,-111.90888</Point>\n\t\t\t<Atisstopid>10887</Atisstopid>\n\t\t\t<Stopid>10025</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>A</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>MCCLINTOCK
131
+ DR/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414688</Lat>\n\t\t\t<Long>-111.908882</Long>\n\t\t\t<Point>33.41469,-111.90888</Point>\n\t\t\t<Atisstopid>10887</Atisstopid>\n\t\t\t<Stopid>10025</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>B</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>SMITH-MARTIN/APACHE
75
132
  LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414738</Lat>\n\t\t\t<Long>-111.901498</Long>\n\t\t\t<Point>33.41474,-111.90150</Point>\n\t\t\t<Atisstopid>10888</Atisstopid>\n\t\t\t<Stopid>10026</Stopid>\n\t\t\t<Timepoint>G</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>PRICE-101
76
133
  FWY/APACHE LIGHT RAIL STATION</Description>\n\t\t\t<Area>Tempe</Area>\n\t\t\t<Lat>33.414754</Lat>\n\t\t\t<Long>-111.888747</Long>\n\t\t\t<Point>33.41475,-111.88875</Point>\n\t\t\t<Atisstopid>10889</Atisstopid>\n\t\t\t<Stopid>10027</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>SYCAMORE/MAIN
77
134
  STREET LIGHT RAIL STATION</Description>\n\t\t\t<Area>Mesa</Area>\n\t\t\t<Lat>33.414787</Lat>\n\t\t\t<Long>-111.871629</Long>\n\t\t\t<Point>33.41479,-111.87163</Point>\n\t\t\t<Atisstopid>10890</Atisstopid>\n\t\t\t<Stopid>10028</Stopid>\n\t\t\t<Timepoint>Y</Timepoint>\n\t\t\t<Boardflag>E</Boardflag>\n\t\t</Stop>\n\t</Stops>\n\t<Points>\n\t\t\t<Point>33.521203,
@@ -83,19 +140,24 @@ http_interactions:
83
140
  -112.099819</Point>\n\t\t\t<Point>33.513248, -112.099829</Point>\n\t\t\t<Point>33.509768,
84
141
  -112.099872</Point>\n\t\t\t<Point>33.509625, -112.099875</Point>\n\t\t\t<Point>33.509614,
85
142
  -112.099451</Point>\n\t\t\t<Point>33.509611, -112.099359</Point>\n\t\t\t<Point>33.509505,
86
- -112.099361</Point>\n\t\t\t<Point>33.509601, -112.099360</Point>\n\t\t\t<Point>33.509365,
87
- -112.083944</Point>\n\t\t\t<Point>33.509288, -112.083949</Point>\n\t\t\t<Point>33.509365,
88
- -112.083944</Point>\n\t\t\t<Point>33.508872, -112.075829</Point>\n\t\t\t<Point>33.501903,
89
- -112.073785</Point>\n\t\t\t<Point>33.501903, -112.073848</Point>\n\t\t\t<Point>33.501903,
90
- -112.073785</Point>\n\t\t\t<Point>33.496236, -112.073809</Point>\n\t\t\t<Point>33.496236,
91
- -112.073829</Point>\n\t\t\t<Point>33.496236, -112.073809</Point>\n\t\t\t<Point>33.487388,
92
- -112.073803</Point>\n\t\t\t<Point>33.487388, -112.073895</Point>\n\t\t\t<Point>33.487388,
93
- -112.073803</Point>\n\t\t\t<Point>33.481737, -112.073798</Point>\n\t\t\t<Point>33.481737,
94
- -112.073831</Point>\n\t\t\t<Point>33.481737, -112.073798</Point>\n\t\t\t<Point>33.474736,
95
- -112.073825</Point>\n\t\t\t<Point>33.474736, -112.073831</Point>\n\t\t\t<Point>33.474736,
96
- -112.073825</Point>\n\t\t\t<Point>33.465353, -112.073835</Point>\n\t\t\t<Point>33.465353,
97
- -112.073878</Point>\n\t\t\t<Point>33.465353, -112.073835</Point>\n\t\t\t<Point>33.459821,
98
- -112.073860</Point>\n\t\t\t<Point>33.459821, -112.073847</Point>\n\t\t\t<Point>33.459936,
143
+ -112.099361</Point>\n\t\t\t<Point>33.509688, -112.099299</Point>\n\t\t\t<Point>33.509203,
144
+ -112.084016</Point>\n\t\t\t<Point>33.509288, -112.083949</Point>\n\t\t\t<Point>33.509203,
145
+ -112.084016</Point>\n\t\t\t<Point>33.509181, -112.075836</Point>\n\t\t\t<Point>33.508872,
146
+ -112.075829</Point>\n\t\t\t<Point>33.509181, -112.075836</Point>\n\t\t\t<Point>33.508872,
147
+ -112.075829</Point>\n\t\t\t<Point>33.509181, -112.075836</Point>\n\t\t\t<Point>33.501906,
148
+ -112.073917</Point>\n\t\t\t<Point>33.501903, -112.073848</Point>\n\t\t\t<Point>33.501906,
149
+ -112.073917</Point>\n\t\t\t<Point>33.496236, -112.073941</Point>\n\t\t\t<Point>33.496236,
150
+ -112.073829</Point>\n\t\t\t<Point>33.496236, -112.073941</Point>\n\t\t\t<Point>33.487385,
151
+ -112.073649</Point>\n\t\t\t<Point>33.487388, -112.073895</Point>\n\t\t\t<Point>33.487385,
152
+ -112.073649</Point>\n\t\t\t<Point>33.481907, -112.073900</Point>\n\t\t\t<Point>33.481737,
153
+ -112.073831</Point>\n\t\t\t<Point>33.481907, -112.073900</Point>\n\t\t\t<Point>33.474725,
154
+ -112.073933</Point>\n\t\t\t<Point>33.474736, -112.073831</Point>\n\t\t\t<Point>33.474725,
155
+ -112.073933</Point>\n\t\t\t<Point>33.474736, -112.073831</Point>\n\t\t\t<Point>33.474725,
156
+ -112.073933</Point>\n\t\t\t<Point>33.465353, -112.073957</Point>\n\t\t\t<Point>33.465353,
157
+ -112.073878</Point>\n\t\t\t<Point>33.465353, -112.073957</Point>\n\t\t\t<Point>33.465353,
158
+ -112.073878</Point>\n\t\t\t<Point>33.465353, -112.073957</Point>\n\t\t\t<Point>33.459961,
159
+ -112.073726</Point>\n\t\t\t<Point>33.459821, -112.073847</Point>\n\t\t\t<Point>33.459961,
160
+ -112.073726</Point>\n\t\t\t<Point>33.459821, -112.073847</Point>\n\t\t\t<Point>33.459936,
99
161
  -112.073881</Point>\n\t\t\t<Point>33.459843, -112.073912</Point>\n\t\t\t<Point>33.459684,
100
162
  -112.073958</Point>\n\t\t\t<Point>33.459591, -112.073993</Point>\n\t\t\t<Point>33.459478,
101
163
  -112.074031</Point>\n\t\t\t<Point>33.459371, -112.074076</Point>\n\t\t\t<Point>33.459259,
@@ -107,46 +169,47 @@ http_interactions:
107
169
  -112.075116</Point>\n\t\t\t<Point>33.456420, -112.075118</Point>\n\t\t\t<Point>33.454718,
108
170
  -112.075108</Point>\n\t\t\t<Point>33.454502, -112.075109</Point>\n\t\t\t<Point>33.453263,
109
171
  -112.075110</Point>\n\t\t\t<Point>33.452249, -112.075117</Point>\n\t\t\t<Point>33.452252,
110
- -112.075081</Point>\n\t\t\t<Point>33.452252, -112.075136</Point>\n\t\t\t<Point>33.448232,
111
- -112.075198</Point>\n\t\t\t<Point>33.448188, -112.075198</Point>\n\t\t\t<Point>33.448232,
112
- -112.075198</Point>\n\t\t\t<Point>33.446377, -112.069775</Point>\n\t\t\t<Point>33.446270,
113
- -112.069777</Point>\n\t\t\t<Point>33.446377, -112.069775</Point>\n\t\t\t<Point>33.447144,
114
- -112.056295</Point>\n\t\t\t<Point>33.447237, -112.056297</Point>\n\t\t\t<Point>33.447144,
115
- -112.056295</Point>\n\t\t\t<Point>33.447235, -112.029997</Point>\n\t\t\t<Point>33.447221,
116
- -112.029994</Point>\n\t\t\t<Point>33.447235, -112.029997</Point>\n\t\t\t<Point>33.448147,
117
- -112.000497</Point>\n\t\t\t<Point>33.448106, -112.000498</Point>\n\t\t\t<Point>33.448147,
118
- -112.000497</Point>\n\t\t\t<Point>33.448120, -111.988580</Point>\n\t\t\t<Point>33.442420,
119
- -111.956463</Point>\n\t\t\t<Point>33.442423, -111.956460</Point>\n\t\t\t<Point>33.438400,
120
- -111.947148</Point>\n\t\t\t<Point>33.438386, -111.947165</Point>\n\t\t\t<Point>33.438400,
121
- -111.947148</Point>\n\t\t\t<Point>33.427423, -111.941197</Point>\n\t\t\t<Point>33.427538,
122
- -111.941194</Point>\n\t\t\t<Point>33.427423, -111.941197</Point>\n\t\t\t<Point>33.427538,
123
- -111.941194</Point>\n\t\t\t<Point>33.427423, -111.941197</Point>\n\t\t\t<Point>33.426222,
124
- -111.936477</Point>\n\t\t\t<Point>33.421202, -111.927412</Point>\n\t\t\t<Point>33.421090,
125
- -111.927296</Point>\n\t\t\t<Point>33.421202, -111.927412</Point>\n\t\t\t<Point>33.414787,
126
- -111.917514</Point>\n\t\t\t<Point>33.414721, -111.917512</Point>\n\t\t\t<Point>33.414787,
127
- -111.917514</Point>\n\t\t\t<Point>33.414806, -111.908883</Point>\n\t\t\t<Point>33.414688,
128
- -111.908882</Point>\n\t\t\t<Point>33.414806, -111.908883</Point>\n\t\t\t<Point>33.414738,
129
- -111.901537</Point>\n\t\t\t<Point>33.414738, -111.901498</Point>\n\t\t\t<Point>33.414738,
130
- -111.901537</Point>\n\t\t\t<Point>33.414790, -111.888746</Point>\n\t\t\t<Point>33.414754,
131
- -111.888747</Point>\n\t\t\t<Point>33.414801, -111.888706</Point>\n\t\t\t<Point>33.414801,
132
- -111.887800</Point>\n\t\t\t<Point>33.414804, -111.886402</Point>\n\t\t\t<Point>33.414804,
133
- -111.886251</Point>\n\t\t\t<Point>33.414809, -111.885253</Point>\n\t\t\t<Point>33.414809,
134
- -111.884839</Point>\n\t\t\t<Point>33.414809, -111.884553</Point>\n\t\t\t<Point>33.414809,
135
- -111.884379</Point>\n\t\t\t<Point>33.414812, -111.883936</Point>\n\t\t\t<Point>33.414815,
136
- -111.883145</Point>\n\t\t\t<Point>33.414817, -111.883040</Point>\n\t\t\t<Point>33.414817,
137
- -111.882695</Point>\n\t\t\t<Point>33.414823, -111.882107</Point>\n\t\t\t<Point>33.414826,
138
- -111.881556</Point>\n\t\t\t<Point>33.414831, -111.880475</Point>\n\t\t\t<Point>33.414831,
139
- -111.880351</Point>\n\t\t\t<Point>33.414842, -111.879123</Point>\n\t\t\t<Point>33.414839,
140
- -111.878916</Point>\n\t\t\t<Point>33.414839, -111.878679</Point>\n\t\t\t<Point>33.414836,
141
- -111.878374</Point>\n\t\t\t<Point>33.414836, -111.878220</Point>\n\t\t\t<Point>33.414842,
142
- -111.877747</Point>\n\t\t\t<Point>33.414847, -111.877097</Point>\n\t\t\t<Point>33.414847,
143
- -111.876998</Point>\n\t\t\t<Point>33.414847, -111.876756</Point>\n\t\t\t<Point>33.414847,
144
- -111.876243</Point>\n\t\t\t<Point>33.414847, -111.875964</Point>\n\t\t\t<Point>33.414845,
145
- -111.875748</Point>\n\t\t\t<Point>33.414858, -111.874474</Point>\n\t\t\t<Point>33.414858,
146
- -111.873735</Point>\n\t\t\t<Point>33.414853, -111.871867</Point>\n\t\t\t<Point>33.414853,
147
- -111.871631</Point>\n\t\t\t<Point>33.414787, -111.871629</Point>\n\t</Points>\n\t<Mapextents>33.414688,-112.099875,33.521203,-111.871629</Mapextents>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
148
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
149
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:RoutepatternResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
172
+ -112.075081</Point>\n\t\t\t<Point>33.448232, -112.075198</Point>\n\t\t\t<Point>33.448188,
173
+ -112.075198</Point>\n\t\t\t<Point>33.448232, -112.075198</Point>\n\t\t\t<Point>33.446377,
174
+ -112.069775</Point>\n\t\t\t<Point>33.446270, -112.069777</Point>\n\t\t\t<Point>33.446377,
175
+ -112.069775</Point>\n\t\t\t<Point>33.446270, -112.069777</Point>\n\t\t\t<Point>33.446377,
176
+ -112.069775</Point>\n\t\t\t<Point>33.447270, -112.056296</Point>\n\t\t\t<Point>33.447237,
177
+ -112.056297</Point>\n\t\t\t<Point>33.447270, -112.056296</Point>\n\t\t\t<Point>33.447098,
178
+ -112.029997</Point>\n\t\t\t<Point>33.447221, -112.029994</Point>\n\t\t\t<Point>33.447098,
179
+ -112.029997</Point>\n\t\t\t<Point>33.448002, -112.000494</Point>\n\t\t\t<Point>33.448106,
180
+ -112.000498</Point>\n\t\t\t<Point>33.448002, -112.000494</Point>\n\t\t\t<Point>33.448120,
181
+ -111.988580</Point>\n\t\t\t<Point>33.442420, -111.956463</Point>\n\t\t\t<Point>33.442420,
182
+ -111.956453</Point>\n\t\t\t<Point>33.442420, -111.956463</Point>\n\t\t\t<Point>33.442420,
183
+ -111.956453</Point>\n\t\t\t<Point>33.439165, -111.948498</Point>\n\t\t\t<Point>33.438386,
184
+ -111.947165</Point>\n\t\t\t<Point>33.439165, -111.948498</Point>\n\t\t\t<Point>33.427395,
185
+ -111.941197</Point>\n\t\t\t<Point>33.427538, -111.941194</Point>\n\t\t\t<Point>33.427395,
186
+ -111.941197</Point>\n\t\t\t<Point>33.426222, -111.936477</Point>\n\t\t\t<Point>33.421090,
187
+ -111.927296</Point>\n\t\t\t<Point>33.414787, -111.917514</Point>\n\t\t\t<Point>33.414721,
188
+ -111.917512</Point>\n\t\t\t<Point>33.414787, -111.917514</Point>\n\t\t\t<Point>33.414806,
189
+ -111.908883</Point>\n\t\t\t<Point>33.414688, -111.908882</Point>\n\t\t\t<Point>33.414806,
190
+ -111.908883</Point>\n\t\t\t<Point>33.414688, -111.908882</Point>\n\t\t\t<Point>33.414806,
191
+ -111.908883</Point>\n\t\t\t<Point>33.414738, -111.901505</Point>\n\t\t\t<Point>33.414738,
192
+ -111.901498</Point>\n\t\t\t<Point>33.414738, -111.901505</Point>\n\t\t\t<Point>33.414735,
193
+ -111.890392</Point>\n\t\t\t<Point>33.414754, -111.888747</Point>\n\t\t\t<Point>33.414801,
194
+ -111.888706</Point>\n\t\t\t<Point>33.414801, -111.887800</Point>\n\t\t\t<Point>33.414804,
195
+ -111.886402</Point>\n\t\t\t<Point>33.414804, -111.886251</Point>\n\t\t\t<Point>33.414809,
196
+ -111.885253</Point>\n\t\t\t<Point>33.414809, -111.884839</Point>\n\t\t\t<Point>33.414809,
197
+ -111.884553</Point>\n\t\t\t<Point>33.414809, -111.884379</Point>\n\t\t\t<Point>33.414812,
198
+ -111.883936</Point>\n\t\t\t<Point>33.414815, -111.883145</Point>\n\t\t\t<Point>33.414817,
199
+ -111.883040</Point>\n\t\t\t<Point>33.414817, -111.882695</Point>\n\t\t\t<Point>33.414823,
200
+ -111.882107</Point>\n\t\t\t<Point>33.414826, -111.881556</Point>\n\t\t\t<Point>33.414831,
201
+ -111.880475</Point>\n\t\t\t<Point>33.414831, -111.880351</Point>\n\t\t\t<Point>33.414842,
202
+ -111.879123</Point>\n\t\t\t<Point>33.414839, -111.878916</Point>\n\t\t\t<Point>33.414839,
203
+ -111.878679</Point>\n\t\t\t<Point>33.414836, -111.878374</Point>\n\t\t\t<Point>33.414836,
204
+ -111.878220</Point>\n\t\t\t<Point>33.414842, -111.877747</Point>\n\t\t\t<Point>33.414847,
205
+ -111.877097</Point>\n\t\t\t<Point>33.414847, -111.876998</Point>\n\t\t\t<Point>33.414847,
206
+ -111.876756</Point>\n\t\t\t<Point>33.414847, -111.876243</Point>\n\t\t\t<Point>33.414847,
207
+ -111.875964</Point>\n\t\t\t<Point>33.414845, -111.875748</Point>\n\t\t\t<Point>33.414858,
208
+ -111.874474</Point>\n\t\t\t<Point>33.414858, -111.873735</Point>\n\t\t\t<Point>33.414853,
209
+ -111.871867</Point>\n\t\t\t<Point>33.414853, -111.871631</Point>\n\t\t\t<Point>33.414787,
210
+ -111.871629</Point>\n\t</Points>\n\t<Mapextents>33.414688,-112.099875,33.521203,-111.871629</Mapextents>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
211
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
212
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:RoutepatternResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
150
213
  http_version:
151
- recorded_at: Mon, 06 Jan 2014 23:53:40 GMT
214
+ recorded_at: Sat, 14 Jun 2014 01:00:23 GMT
152
215
  recorded_with: VCR 2.8.0