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,20 @@
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><Getlandmarks
11
- xmlns="PX_WEB"><Appid>WEB</Appid><Type>*</Type><Zipcode>85224</Zipcode></Getlandmarks></env:Body></env:Envelope>
11
+ xmlns="PX_WEB"><Type>*</Type><Zipcode>85224</Zipcode><Appid>ratis-specs</Appid></Getlandmarks></env:Body></env:Envelope>
12
12
  headers:
13
13
  Soapaction:
14
14
  - '"PX_WEB#Getlandmarks"'
15
15
  Content-Type:
16
16
  - text/xml;charset=UTF-8
17
17
  Content-Length:
18
- - '361'
18
+ - '369'
19
19
  Accept-Encoding:
20
20
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
21
  Accept:
@@ -28,13 +28,13 @@ http_interactions:
28
28
  message: OK
29
29
  headers:
30
30
  Date:
31
- - Wed, 14 May 2014 22:17:41 GMT
31
+ - Sat, 14 Jun 2014 00:40:12 GMT
32
32
  Server:
33
33
  - Apache/2.2.3 (CentOS)
34
34
  Soapserver:
35
35
  - SOAP::Lite/Perl/0.55
36
36
  Content-Length:
37
- - '632605'
37
+ - '430590'
38
38
  Connection:
39
39
  - close
40
40
  Content-Type:
@@ -48,12 +48,6 @@ http_interactions:
48
48
  12TH ST &amp; E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447172</Latitude>\n\t\t\t<Longitude>-112.056423</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7934</Id>\n\t\t\t<Verbose>12TH
49
49
  ST JEFFERSON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>1B32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10893)
50
50
  # 12TH STREET/JEFFERSON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.447237</Latitude>\n\t\t\t<Longitude>-112.056297</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
51
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7934</Id>\n\t\t\t<Verbose>12TH
52
- ST JEFFERSON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>1B32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10893)
53
- # 12TH STREET/JEFFERSON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.447237</Latitude>\n\t\t\t<Longitude>-112.056297</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
54
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7947</Id>\n\t\t\t<Verbose>12TH
55
- ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>1B32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10901)
56
- # 12TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448221</Latitude>\n\t\t\t<Longitude>-112.056596</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
57
51
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7947</Id>\n\t\t\t<Verbose>12TH
58
52
  ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>1B32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10901)
59
53
  # 12TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448221</Latitude>\n\t\t\t<Longitude>-112.056596</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
@@ -62,19 +56,10 @@ http_interactions:
62
56
  19TH AVE &amp; W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509622</Latitude>\n\t\t\t<Longitude>-112.099875</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7921</Id>\n\t\t\t<Verbose>19TH
63
57
  AVE CAMELBACK LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>1I31</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10870)
64
58
  # 19TH AVE/CAMELBACK RD LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.509505</Latitude>\n\t\t\t<Longitude>-112.099361</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
65
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7921</Id>\n\t\t\t<Verbose>19TH
66
- AVE CAMELBACK LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>1I31</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10870)
67
- # 19TH AVE/CAMELBACK RD LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.509505</Latitude>\n\t\t\t<Longitude>-112.099361</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
68
59
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7661</Id>\n\t\t\t<Verbose>24JF</Verbose>\n\t\t\t<Soundex>2D21</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>S
69
60
  24TH ST &amp; E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447224</Latitude>\n\t\t\t<Longitude>-112.030162</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7935</Id>\n\t\t\t<Verbose>24TH
70
61
  ST JEFFERSON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>2D32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10881)
71
62
  # 24TH STREET/JEFFERSON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.447221</Latitude>\n\t\t\t<Longitude>-112.029994</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
72
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7935</Id>\n\t\t\t<Verbose>24TH
73
- ST JEFFERSON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>2D32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10881)
74
- # 24TH STREET/JEFFERSON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.447221</Latitude>\n\t\t\t<Longitude>-112.029994</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
75
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7946</Id>\n\t\t\t<Verbose>24TH
76
- ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>2D32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10902)
77
- # 24TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448238</Latitude>\n\t\t\t<Longitude>-112.028631</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
78
63
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7946</Id>\n\t\t\t<Verbose>24TH
79
64
  ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>2D32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10902)
80
65
  # 24TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448238</Latitude>\n\t\t\t<Longitude>-112.028631</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
@@ -83,27 +68,14 @@ http_interactions:
83
68
  AVE AND BASELINE RD PARK AND RIDE</Verbose>\n\t\t\t<Soundex>2G31</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11467)
84
69
  # NB 27TH AVE / BASELINE PNR</Location>\n\t\t\t<Latitude>33.377150</Latitude>\n\t\t\t<Longitude>-112.117442</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
85
70
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
86
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7955</Id>\n\t\t\t<Verbose>27TH
87
- AVE AND BASELINE RD PARK AND RIDE</Verbose>\n\t\t\t<Soundex>2G31</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11467)
88
- # NB 27TH AVE / BASELINE PNR</Location>\n\t\t\t<Latitude>33.377150</Latitude>\n\t\t\t<Longitude>-112.117442</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
89
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
90
71
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7641</Id>\n\t\t\t<Verbose>38TH
91
72
  ST WASHINGTON STN</Verbose>\n\t\t\t<Soundex>3H32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10882)
92
73
  # 38TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448106</Latitude>\n\t\t\t<Longitude>-112.000498</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
93
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7641</Id>\n\t\t\t<Verbose>38TH
94
- ST WASHINGTON STN</Verbose>\n\t\t\t<Soundex>3H32</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10882)
95
- # 38TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448106</Latitude>\n\t\t\t<Longitude>-112.000498</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
96
74
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7615</Id>\n\t\t\t<Verbose>38WA</Verbose>\n\t\t\t<Soundex>3H00</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3800
97
75
  E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448142</Latitude>\n\t\t\t<Longitude>-111.999371</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7611</Id>\n\t\t\t<Verbose>3JF</Verbose>\n\t\t\t<Soundex>3210</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>S
98
76
  3RD ST &amp; E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.446385</Latitude>\n\t\t\t<Longitude>-112.069943</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7933</Id>\n\t\t\t<Verbose>3RD
99
77
  ST JEFFERSON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>3632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10892)
100
78
  # 3RD STREET/JEFFERSON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.446270</Latitude>\n\t\t\t<Longitude>-112.069777</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
101
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7933</Id>\n\t\t\t<Verbose>3RD
102
- ST JEFFERSON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>3632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10892)
103
- # 3RD STREET/JEFFERSON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.446270</Latitude>\n\t\t\t<Longitude>-112.069777</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
104
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7948</Id>\n\t\t\t<Verbose>3RD
105
- ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>3632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10900)
106
- # 3RD STREET/WASHINGTON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.448271</Latitude>\n\t\t\t<Longitude>-112.070179</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
107
79
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7948</Id>\n\t\t\t<Verbose>3RD
108
80
  ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>3632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10900)
109
81
  # 3RD STREET/WASHINGTON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.448271</Latitude>\n\t\t\t<Longitude>-112.070179</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
@@ -111,15 +83,9 @@ http_interactions:
111
83
  3RD ST &amp; E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448271</Latitude>\n\t\t\t<Longitude>-112.069949</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7238</Id>\n\t\t\t<Verbose>40TH
112
84
  ST/PECOS PARK N RIDE</Verbose>\n\t\t\t<Soundex>4323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>S
113
85
  40TH ST &amp; E PECOS RD</Location>\n\t\t\t<Latitude>33.293574</Latitude>\n\t\t\t<Longitude>-111.998246</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
114
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7238</Id>\n\t\t\t<Verbose>40TH
115
- ST/PECOS PARK N RIDE</Verbose>\n\t\t\t<Soundex>4323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>S
116
- 40TH ST &amp; E PECOS RD</Location>\n\t\t\t<Latitude>33.293574</Latitude>\n\t\t\t<Longitude>-111.998246</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
117
86
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7936</Id>\n\t\t\t<Verbose>44TH
118
87
  ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>4323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10883)
119
88
  # 44TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448120</Latitude>\n\t\t\t<Longitude>-111.988580</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
120
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7936</Id>\n\t\t\t<Verbose>44TH
121
- ST WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>4323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10883)
122
- # 44TH STREET/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448120</Latitude>\n\t\t\t<Longitude>-111.988580</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
123
89
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7616</Id>\n\t\t\t<Verbose>44WA</Verbose>\n\t\t\t<Soundex>4000</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
124
90
  44TH ST &amp; E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448134</Latitude>\n\t\t\t<Longitude>-111.987128</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7284</Id>\n\t\t\t<Verbose>4TH
125
91
  AVE JAIL</Verbose>\n\t\t\t<Soundex>4312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>201
@@ -129,16 +95,10 @@ http_interactions:
129
95
  DELETE AFTER IVR CHECK</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5376</Id>\n\t\t\t<Verbose>79TH
130
96
  AVE PARK AND RIDE</Verbose>\n\t\t\t<Soundex>7I31</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>W
131
97
  MCDOWELL RD &amp; N 79TH AVE</Location>\n\t\t\t<Latitude>33.464531</Latitude>\n\t\t\t<Longitude>-112.228743</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
132
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85043</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5376</Id>\n\t\t\t<Verbose>79TH
133
- AVE PARK AND RIDE</Verbose>\n\t\t\t<Soundex>7I31</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>W
134
- MCDOWELL RD &amp; N 79TH AVE</Location>\n\t\t\t<Latitude>33.464531</Latitude>\n\t\t\t<Longitude>-112.228743</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
135
98
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85043</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7597</Id>\n\t\t\t<Verbose>7CB</Verbose>\n\t\t\t<Soundex>7210</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
136
99
  7TH AVE &amp; W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509337</Latitude>\n\t\t\t<Longitude>-112.082488</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7922</Id>\n\t\t\t<Verbose>7TH
137
100
  AVE CAMELBACK LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>7312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10871)
138
101
  # 7TH AVE/CAMELBACK RD LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.509288</Latitude>\n\t\t\t<Longitude>-112.083949</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
139
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7922</Id>\n\t\t\t<Verbose>7TH
140
- AVE CAMELBACK LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>7312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10871)
141
- # 7TH AVE/CAMELBACK RD LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.509288</Latitude>\n\t\t\t<Longitude>-112.083949</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
142
102
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5228</Id>\n\t\t\t<Verbose>A
143
103
  J CHANDLER PARK</Verbose>\n\t\t\t<Soundex>A225</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>ARIZONA
144
104
  AVE &amp; COMMONWEALTH AVE</Location>\n\t\t\t<Latitude>33.303354</Latitude>\n\t\t\t<Longitude>-111.840773</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5637</Id>\n\t\t\t<Verbose>ACADEMY
@@ -154,10 +114,6 @@ http_interactions:
154
114
  MOUNTAIN SCHOOL</Verbose>\n\t\t\t<Soundex>A315</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2800
155
115
  W PINNACLE PEAK RD</Location>\n\t\t\t<Latitude>33.699540</Latitude>\n\t\t\t<Longitude>-112.119072</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
156
116
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
157
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7984</Id>\n\t\t\t<Verbose>ADOBE
158
- MOUNTAIN SCHOOL</Verbose>\n\t\t\t<Soundex>A315</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2800
159
- W PINNACLE PEAK RD</Location>\n\t\t\t<Latitude>33.699540</Latitude>\n\t\t\t<Longitude>-112.119072</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
160
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
161
117
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7430</Id>\n\t\t\t<Verbose>AGUA
162
118
  FRIA HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>A216</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>530
163
119
  E RILEY DR</Location>\n\t\t\t<Latitude>33.438943</Latitude>\n\t\t\t<Longitude>-112.344339</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -166,25 +122,15 @@ http_interactions:
166
122
  E WARNER RD</Location>\n\t\t\t<Latitude>33.331020</Latitude>\n\t\t\t<Longitude>-111.979891</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85044</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5705</Id>\n\t\t\t<Verbose>AHWATUKEE
167
123
  FOOTHILLS TOWNE CENTER</Verbose>\n\t\t\t<Soundex>A321</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>S
168
124
  48TH ST &amp; E RAY RD</Location>\n\t\t\t<Latitude>33.319823</Latitude>\n\t\t\t<Longitude>-111.980463</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
169
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85044</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6988</Id>\n\t\t\t<Verbose>AHWATUKEE
125
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85044</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6988</Id>\n\t\t\t<Verbose>AHWATUKEE
170
126
  RECREATION CENTER</Verbose>\n\t\t\t<Soundex>A326</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5001
171
127
  E CHEYENNE DR</Location>\n\t\t\t<Latitude>33.345952</Latitude>\n\t\t\t<Longitude>-111.978614</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
172
128
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85044</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7298</Id>\n\t\t\t<Verbose>AJO
173
129
  TRANSPORTATION OFFICE</Verbose>\n\t\t\t<Soundex>A236</Soundex>\n\t\t\t<Area>UNK</Area>\n\t\t\t<Areacode>
174
130
  </Areacode>\n\t\t\t<Location>(12149) # TIMEPOINT STOP AJO</Location>\n\t\t\t<Latitude>32.471219</Latitude>\n\t\t\t<Longitude>-112.876243</Longitude>\n\t\t\t<Type>RT</Type>\n\t\t\t<Typedescription>REGIONAL
175
131
  TRANSIT CONNECTOR</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
176
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7298</Id>\n\t\t\t<Verbose>AJO
177
- TRANSPORTATION OFFICE</Verbose>\n\t\t\t<Soundex>A236</Soundex>\n\t\t\t<Area>UNK</Area>\n\t\t\t<Areacode>
178
- </Areacode>\n\t\t\t<Location>(12149) # TIMEPOINT STOP AJO</Location>\n\t\t\t<Latitude>32.471219</Latitude>\n\t\t\t<Longitude>-112.876243</Longitude>\n\t\t\t<Type>RT</Type>\n\t\t\t<Typedescription>REGIONAL
179
- TRANSIT CONNECTOR</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
180
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7298</Id>\n\t\t\t<Verbose>AJO
181
- TRANSPORTATION OFFICE</Verbose>\n\t\t\t<Soundex>A236</Soundex>\n\t\t\t<Area>UNK</Area>\n\t\t\t<Areacode>
182
- </Areacode>\n\t\t\t<Location>(12149) # TIMEPOINT STOP AJO</Location>\n\t\t\t<Latitude>32.471219</Latitude>\n\t\t\t<Longitude>-112.876243</Longitude>\n\t\t\t<Type>RT</Type>\n\t\t\t<Typedescription>REGIONAL
183
- TRANSIT CONNECTOR</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
184
132
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7977</Id>\n\t\t\t<Verbose>AK-CHIN
185
133
  PAVILION</Verbose>\n\t\t\t<Soundex>A225</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>&lt;2703&gt;</Location>\n\t\t\t<Latitude>33.470121</Latitude>\n\t\t\t<Longitude>-112.237685</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
186
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7977</Id>\n\t\t\t<Verbose>AK-CHIN
187
- PAVILION</Verbose>\n\t\t\t<Soundex>A225</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>&lt;2703&gt;</Location>\n\t\t\t<Latitude>33.470121</Latitude>\n\t\t\t<Longitude>-112.237685</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
188
134
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5639</Id>\n\t\t\t<Verbose>ALHAMBRA
189
135
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>A451</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3839
190
136
  W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509431</Latitude>\n\t\t\t<Longitude>-112.142107</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -199,7 +145,7 @@ http_interactions:
199
145
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85302</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5706</Id>\n\t\t\t<Verbose>ARCADIA
200
146
  CROSSING SHOPPING CENTER</Verbose>\n\t\t\t<Soundex>A623</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4515
201
147
  E THOMAS RD</Location>\n\t\t\t<Latitude>33.480192</Latitude>\n\t\t\t<Longitude>-111.984212</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
202
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85018</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5641</Id>\n\t\t\t<Verbose>ARCADIA
148
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85018</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5641</Id>\n\t\t\t<Verbose>ARCADIA
203
149
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>A623</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4703
204
150
  E INDIAN SCHOOL RD</Location>\n\t\t\t<Latitude>33.494669</Latitude>\n\t\t\t<Longitude>-111.980897</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
205
151
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85018</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5230</Id>\n\t\t\t<Verbose>ARCADIA
@@ -220,18 +166,12 @@ http_interactions:
220
166
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5707</Id>\n\t\t\t<Verbose>ARIZONA
221
167
  CENTER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>455
222
168
  N 3RD ST</Location>\n\t\t\t<Latitude>33.452956</Latitude>\n\t\t\t<Longitude>-112.069901</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
223
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7266</Id>\n\t\t\t<Verbose>ARIZONA
224
- CENTER FOR BLIND AND VISUALLY IM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3100
225
- E ROOSEVELT ST</Location>\n\t\t\t<Latitude>33.458536</Latitude>\n\t\t\t<Longitude>-112.015091</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
226
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7266</Id>\n\t\t\t<Verbose>ARIZONA
169
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7266</Id>\n\t\t\t<Verbose>ARIZONA
227
170
  CENTER FOR BLIND AND VISUALLY IM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3100
228
171
  E ROOSEVELT ST</Location>\n\t\t\t<Latitude>33.458536</Latitude>\n\t\t\t<Longitude>-112.015091</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
229
172
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7434</Id>\n\t\t\t<Verbose>ARIZONA
230
173
  DEPARTMENT OF REVENUE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1600
231
174
  W MONROE ST</Location>\n\t\t\t<Latitude>33.450279</Latitude>\n\t\t\t<Longitude>-112.093619</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
232
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7434</Id>\n\t\t\t<Verbose>ARIZONA
233
- DEPARTMENT OF REVENUE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1600
234
- W MONROE ST</Location>\n\t\t\t<Latitude>33.450279</Latitude>\n\t\t\t<Longitude>-112.093619</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
235
175
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5171</Id>\n\t\t\t<Verbose>ARIZONA
236
176
  DOLL/TOY MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>602
237
177
  E ADAMS ST</Location>\n\t\t\t<Latitude>33.449315</Latitude>\n\t\t\t<Longitude>-112.072566</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5074</Id>\n\t\t\t<Verbose>ARIZONA
@@ -245,14 +185,9 @@ http_interactions:
245
185
  E THOMAS RD</Location>\n\t\t\t<Latitude>33.480236</Latitude>\n\t\t\t<Longitude>-112.040243</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
246
186
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5173</Id>\n\t\t\t<Verbose>ARIZONA
247
187
  HISTORICAL SOCIETY MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1300
248
- N COLLEGE AVE</Location>\n\t\t\t<Latitude>33.441579</Latitude>\n\t\t\t<Longitude>-111.930840</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5173</Id>\n\t\t\t<Verbose>ARIZONA
249
- HISTORICAL SOCIETY MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1300
250
188
  N COLLEGE AVE</Location>\n\t\t\t<Latitude>33.441579</Latitude>\n\t\t\t<Longitude>-111.930840</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5012</Id>\n\t\t\t<Verbose>ARIZONA
251
189
  INDUSTRIES FOR THE BLIND</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3013
252
190
  W LINCOLN ST</Location>\n\t\t\t<Latitude>33.442239</Latitude>\n\t\t\t<Longitude>-112.124471</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
253
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5012</Id>\n\t\t\t<Verbose>ARIZONA
254
- INDUSTRIES FOR THE BLIND</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3013
255
- W LINCOLN ST</Location>\n\t\t\t<Latitude>33.442239</Latitude>\n\t\t\t<Longitude>-112.124471</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
256
191
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5643</Id>\n\t\t\t<Verbose>ARIZONA
257
192
  LUTHERAN ACADEMY</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>6036
258
193
  S 27TH AVE</Location>\n\t\t\t<Latitude>33.392191</Latitude>\n\t\t\t<Longitude>-112.116369</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -261,88 +196,33 @@ http_interactions:
261
196
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465584</Latitude>\n\t\t\t<Longitude>-111.957541</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7109</Id>\n\t\t\t<Verbose>ARIZONA
262
197
  MILLS</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>5000
263
198
  S ARIZONA MILLS CIR</Location>\n\t\t\t<Latitude>33.384992</Latitude>\n\t\t\t<Longitude>-111.962703</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
264
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7109</Id>\n\t\t\t<Verbose>ARIZONA
265
- MILLS</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>5000
266
- S ARIZONA MILLS CIR</Location>\n\t\t\t<Latitude>33.384992</Latitude>\n\t\t\t<Longitude>-111.962703</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
267
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7109</Id>\n\t\t\t<Verbose>ARIZONA
268
- MILLS</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>5000
269
- S ARIZONA MILLS CIR</Location>\n\t\t\t<Latitude>33.384992</Latitude>\n\t\t\t<Longitude>-111.962703</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
270
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7109</Id>\n\t\t\t<Verbose>ARIZONA
271
- MILLS</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>5000
272
- S ARIZONA MILLS CIR</Location>\n\t\t\t<Latitude>33.384992</Latitude>\n\t\t\t<Longitude>-111.962703</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
273
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5175</Id>\n\t\t\t<Verbose>ARIZONA
199
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5175</Id>\n\t\t\t<Verbose>ARIZONA
274
200
  MINING AND MINERAL MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1502
275
201
  W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448139</Latitude>\n\t\t\t<Longitude>-112.091358</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5176</Id>\n\t\t\t<Verbose>ARIZONA
276
202
  MUSEUM FOR THE YOUTH</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>35
277
203
  N ROBSON</Location>\n\t\t\t<Latitude>33.416207</Latitude>\n\t\t\t<Longitude>-111.836713</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7896</Id>\n\t\t\t<Verbose>ARIZONA
278
204
  MUSEUM OF NATURAL HISTORY</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>53
279
- N MACDONALD</Location>\n\t\t\t<Latitude>33.416596</Latitude>\n\t\t\t<Longitude>-111.833783</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7896</Id>\n\t\t\t<Verbose>ARIZONA
280
- MUSEUM OF NATURAL HISTORY</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>53
281
205
  N MACDONALD</Location>\n\t\t\t<Latitude>33.416596</Latitude>\n\t\t\t<Longitude>-111.833783</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7296</Id>\n\t\t\t<Verbose>ARIZONA
282
206
  PUBLIC SERVICE - CHANDLER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>55
283
207
  N. ARIZONA PL, SUITE 105</Location>\n\t\t\t<Latitude>33.304077</Latitude>\n\t\t\t<Longitude>-111.840708</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
284
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7296</Id>\n\t\t\t<Verbose>ARIZONA
285
- PUBLIC SERVICE - CHANDLER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>55
286
- N. ARIZONA PL, SUITE 105</Location>\n\t\t\t<Latitude>33.304077</Latitude>\n\t\t\t<Longitude>-111.840708</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
287
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7296</Id>\n\t\t\t<Verbose>ARIZONA
288
- PUBLIC SERVICE - CHANDLER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>55
289
- N. ARIZONA PL, SUITE 105</Location>\n\t\t\t<Latitude>33.304077</Latitude>\n\t\t\t<Longitude>-111.840708</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
290
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7296</Id>\n\t\t\t<Verbose>ARIZONA
291
- PUBLIC SERVICE - CHANDLER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>55
292
- N. ARIZONA PL, SUITE 105</Location>\n\t\t\t<Latitude>33.304077</Latitude>\n\t\t\t<Longitude>-111.840708</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
293
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7296</Id>\n\t\t\t<Verbose>ARIZONA
294
- PUBLIC SERVICE - CHANDLER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>55
295
- N. ARIZONA PL, SUITE 105</Location>\n\t\t\t<Latitude>33.304077</Latitude>\n\t\t\t<Longitude>-111.840708</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
296
208
  LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7140</Id>\n\t\t\t<Verbose>ARIZONA
297
209
  PUBLIC SERVICE - GLENDALE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5723
298
210
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.182487</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
299
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7140</Id>\n\t\t\t<Verbose>ARIZONA
300
- PUBLIC SERVICE - GLENDALE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5723
301
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.182487</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
302
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7140</Id>\n\t\t\t<Verbose>ARIZONA
303
- PUBLIC SERVICE - GLENDALE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5723
304
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.182487</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
305
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7140</Id>\n\t\t\t<Verbose>ARIZONA
306
- PUBLIC SERVICE - GLENDALE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5723
307
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.182487</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
308
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7140</Id>\n\t\t\t<Verbose>ARIZONA
309
- PUBLIC SERVICE - GLENDALE</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5723
310
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.182487</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
311
211
  LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7303</Id>\n\t\t\t<Verbose>ARIZONA
312
212
  PUBLIC SERVICE-46ST/BELL RD</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4612
313
213
  E BELL RD</Location>\n\t\t\t<Latitude>33.640758</Latitude>\n\t\t\t<Longitude>-111.980877</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
314
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7303</Id>\n\t\t\t<Verbose>ARIZONA
315
- PUBLIC SERVICE-46ST/BELL RD</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4612
316
- E BELL RD</Location>\n\t\t\t<Latitude>33.640758</Latitude>\n\t\t\t<Longitude>-111.980877</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
317
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7303</Id>\n\t\t\t<Verbose>ARIZONA
318
- PUBLIC SERVICE-46ST/BELL RD</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4612
319
- E BELL RD</Location>\n\t\t\t<Latitude>33.640758</Latitude>\n\t\t\t<Longitude>-111.980877</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
320
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7303</Id>\n\t\t\t<Verbose>ARIZONA
321
- PUBLIC SERVICE-46ST/BELL RD</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4612
322
- E BELL RD</Location>\n\t\t\t<Latitude>33.640758</Latitude>\n\t\t\t<Longitude>-111.980877</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
323
- LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7303</Id>\n\t\t\t<Verbose>ARIZONA
324
- PUBLIC SERVICE-46ST/BELL RD</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4612
325
- E BELL RD</Location>\n\t\t\t<Latitude>33.640758</Latitude>\n\t\t\t<Longitude>-111.980877</Longitude>\n\t\t\t<Type>FL31DP</Type>\n\t\t\t<Typedescription>FARE
326
214
  LOCAL 31 DAY PASS-$64.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5177</Id>\n\t\t\t<Verbose>ARIZONA
327
215
  RAILWAY MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>399
328
216
  N DELAWARE ST</Location>\n\t\t\t<Latitude>33.309791</Latitude>\n\t\t\t<Longitude>-111.837517</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5178</Id>\n\t\t\t<Verbose>ARIZONA
329
217
  SCIENCE CENTER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>600
330
- E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448262</Latitude>\n\t\t\t<Longitude>-112.066671</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5178</Id>\n\t\t\t<Verbose>ARIZONA
331
- SCIENCE CENTER</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>600
332
218
  E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448262</Latitude>\n\t\t\t<Longitude>-112.066671</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7190</Id>\n\t\t\t<Verbose>ARIZONA
333
219
  STATE CAPITOL</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1700
334
220
  W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448117</Latitude>\n\t\t\t<Longitude>-112.095828</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
335
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7190</Id>\n\t\t\t<Verbose>ARIZONA
336
- STATE CAPITOL</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1700
337
- W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448117</Latitude>\n\t\t\t<Longitude>-112.095828</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
338
221
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5179</Id>\n\t\t\t<Verbose>ARIZONA
339
222
  STATE CAPITOL MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1700
340
223
  W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448117</Latitude>\n\t\t\t<Longitude>-112.095828</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7891</Id>\n\t\t\t<Verbose>ARIZONA
341
224
  STATE FAIR</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1826
342
225
  W MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465959</Latitude>\n\t\t\t<Longitude>-112.098792</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
343
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7891</Id>\n\t\t\t<Verbose>ARIZONA
344
- STATE FAIR</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1826
345
- W MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465959</Latitude>\n\t\t\t<Longitude>-112.098792</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
346
226
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5101</Id>\n\t\t\t<Verbose>ARIZONA
347
227
  STATE HOSPITAL</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2500
348
228
  E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451326</Latitude>\n\t\t\t<Longitude>-112.027834</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
@@ -352,9 +232,6 @@ http_interactions:
352
232
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7376</Id>\n\t\t\t<Verbose>ARIZONA
353
233
  STATE UNIVERSITY/ART MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>E
354
234
  10TH ST &amp; S MILL AVE</Location>\n\t\t\t<Latitude>33.419078</Latitude>\n\t\t\t<Longitude>-111.939969</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
355
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7376</Id>\n\t\t\t<Verbose>ARIZONA
356
- STATE UNIVERSITY/ART MUSEUM</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>E
357
- 10TH ST &amp; S MILL AVE</Location>\n\t\t\t<Latitude>33.419078</Latitude>\n\t\t\t<Longitude>-111.939969</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
358
235
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7370</Id>\n\t\t\t<Verbose>ARIZONA
359
236
  STATE UNIVERSITY/COLLEGE UNIVERS</Verbose>\n\t\t\t<Soundex>A625</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>S
360
237
  COLLEGE AVE &amp; E UNIVERSITY DR</Location>\n\t\t\t<Latitude>33.422005</Latitude>\n\t\t\t<Longitude>-111.934973</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -390,16 +267,7 @@ http_interactions:
390
267
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5709</Id>\n\t\t\t<Verbose>ARROWHEAD
391
268
  TOWNE CENTER</Verbose>\n\t\t\t<Soundex>A633</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7700
392
269
  W ARROWHEAD TOWNE CTR</Location>\n\t\t\t<Latitude>33.643164</Latitude>\n\t\t\t<Longitude>-112.225169</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
393
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5709</Id>\n\t\t\t<Verbose>ARROWHEAD
394
- TOWNE CENTER</Verbose>\n\t\t\t<Soundex>A633</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7700
395
- W ARROWHEAD TOWNE CTR</Location>\n\t\t\t<Latitude>33.643164</Latitude>\n\t\t\t<Longitude>-112.225169</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
396
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5709</Id>\n\t\t\t<Verbose>ARROWHEAD
397
- TOWNE CENTER</Verbose>\n\t\t\t<Soundex>A633</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7700
398
- W ARROWHEAD TOWNE CTR</Location>\n\t\t\t<Latitude>33.643164</Latitude>\n\t\t\t<Longitude>-112.225169</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
399
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5709</Id>\n\t\t\t<Verbose>ARROWHEAD
400
- TOWNE CENTER</Verbose>\n\t\t\t<Soundex>A633</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7700
401
- W ARROWHEAD TOWNE CTR</Location>\n\t\t\t<Latitude>33.643164</Latitude>\n\t\t\t<Longitude>-112.225169</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
402
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5444</Id>\n\t\t\t<Verbose>ART
270
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5444</Id>\n\t\t\t<Verbose>ART
403
271
  INSTITUTE OF PHOENIX</Verbose>\n\t\t\t<Soundex>A635</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2233
404
272
  W DUNLAP AVE</Location>\n\t\t\t<Latitude>33.567549</Latitude>\n\t\t\t<Longitude>-112.106086</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
405
273
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85021</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7437</Id>\n\t\t\t<Verbose>ASU
@@ -463,17 +331,12 @@ http_interactions:
463
331
  W CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.445056</Latitude>\n\t\t\t<Longitude>-112.304335</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
464
332
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7898</Id>\n\t\t\t<Verbose>AVONDALE
465
333
  CIVIC CENTER LIBRARY</Verbose>\n\t\t\t<Soundex>A153</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>11400
466
- W CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.445169</Latitude>\n\t\t\t<Longitude>-112.304048</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7898</Id>\n\t\t\t<Verbose>AVONDALE
467
- CIVIC CENTER LIBRARY</Verbose>\n\t\t\t<Soundex>A153</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>11400
468
334
  W CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.445169</Latitude>\n\t\t\t<Longitude>-112.304048</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7423</Id>\n\t\t\t<Verbose>BANNER
469
335
  BAYWOOD HEART HOSPITAL</Verbose>\n\t\t\t<Soundex>B561</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6750
470
336
  E BAYWOOD AVE</Location>\n\t\t\t<Latitude>33.410370</Latitude>\n\t\t\t<Longitude>-111.685514</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
471
337
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7257</Id>\n\t\t\t<Verbose>BANNER
472
338
  BAYWOOD MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B561</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6640
473
339
  E BAYWOOD AVE</Location>\n\t\t\t<Latitude>33.410386</Latitude>\n\t\t\t<Longitude>-111.685809</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
474
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7257</Id>\n\t\t\t<Verbose>BANNER
475
- BAYWOOD MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B561</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6640
476
- E BAYWOOD AVE</Location>\n\t\t\t<Latitude>33.410386</Latitude>\n\t\t\t<Longitude>-111.685809</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
477
340
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7907</Id>\n\t\t\t<Verbose>BANNER
478
341
  BOSWELL MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B561</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
479
342
  County</Areacode>\n\t\t\t<Location>&lt;6951&gt; # SANTA FE DR &amp; 105TH
@@ -481,30 +344,18 @@ http_interactions:
481
344
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85351</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7255</Id>\n\t\t\t<Verbose>BANNER
482
345
  DESERT MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B563</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1400
483
346
  S DOBSON RD</Location>\n\t\t\t<Latitude>33.389272</Latitude>\n\t\t\t<Longitude>-111.874914</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
484
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7255</Id>\n\t\t\t<Verbose>BANNER
485
- DESERT MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B563</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1400
486
- S DOBSON RD</Location>\n\t\t\t<Latitude>33.389272</Latitude>\n\t\t\t<Longitude>-111.874914</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
487
347
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7268</Id>\n\t\t\t<Verbose>BANNER
488
348
  ESTRELLA MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B562</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9201
489
349
  W THOMAS RD</Location>\n\t\t\t<Latitude>33.479633</Latitude>\n\t\t\t<Longitude>-112.257386</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
490
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85037</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7268</Id>\n\t\t\t<Verbose>BANNER
491
- ESTRELLA MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B562</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9201
492
- W THOMAS RD</Location>\n\t\t\t<Latitude>33.479633</Latitude>\n\t\t\t<Longitude>-112.257386</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
493
350
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85037</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7558</Id>\n\t\t\t<Verbose>BANNER
494
351
  GATEWAY MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B562</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>N
495
352
  HIGLEY RD &amp; E INVERNESS AVE</Location>\n\t\t\t<Latitude>33.383940</Latitude>\n\t\t\t<Longitude>-111.719543</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
496
353
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85234</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7259</Id>\n\t\t\t<Verbose>BANNER
497
354
  GOOD SAMARITAN MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B562</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1111
498
355
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465726</Latitude>\n\t\t\t<Longitude>-112.058317</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
499
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7259</Id>\n\t\t\t<Verbose>BANNER
500
- GOOD SAMARITAN MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B562</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1111
501
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465726</Latitude>\n\t\t\t<Longitude>-112.058317</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
502
356
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7260</Id>\n\t\t\t<Verbose>BANNER
503
357
  THUNDERBIRD MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B563</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5555
504
358
  W THUNDERBIRD RD</Location>\n\t\t\t<Latitude>33.610738</Latitude>\n\t\t\t<Longitude>-112.178566</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
505
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85306</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7260</Id>\n\t\t\t<Verbose>BANNER
506
- THUNDERBIRD MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>B563</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5555
507
- W THUNDERBIRD RD</Location>\n\t\t\t<Latitude>33.610738</Latitude>\n\t\t\t<Longitude>-112.178566</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
508
359
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85306</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5731</Id>\n\t\t\t<Verbose>BARCELONA
509
360
  MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>B624</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6530
510
361
  N 44TH AVE</Location>\n\t\t\t<Latitude>33.531687</Latitude>\n\t\t\t<Longitude>-112.153659</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -522,15 +373,9 @@ http_interactions:
522
373
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7239</Id>\n\t\t\t<Verbose>BELL
523
374
  RD SR-51 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>B463</Soundex>\n\t\t\t<Area>MC</Area>\n\t\t\t<Areacode>
524
375
  </Areacode>\n\t\t\t<Location>E BELL RD &amp; N SQUAW PEAK FRWY</Location>\n\t\t\t<Latitude>33.638996</Latitude>\n\t\t\t<Longitude>-112.004203</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
525
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7239</Id>\n\t\t\t<Verbose>BELL
526
- RD SR-51 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>B463</Soundex>\n\t\t\t<Area>MC</Area>\n\t\t\t<Areacode>
527
- </Areacode>\n\t\t\t<Location>E BELL RD &amp; N SQUAW PEAK FRWY</Location>\n\t\t\t<Latitude>33.638996</Latitude>\n\t\t\t<Longitude>-112.004203</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
528
376
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7302</Id>\n\t\t\t<Verbose>BELL
529
377
  RD/I-17 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>B463</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>16808
530
378
  N BLACK CANYON FRWY</Location>\n\t\t\t<Latitude>33.638667</Latitude>\n\t\t\t<Longitude>-112.116997</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
531
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85053</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7302</Id>\n\t\t\t<Verbose>BELL
532
- RD/I-17 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>B463</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>16808
533
- N BLACK CANYON FRWY</Location>\n\t\t\t<Latitude>33.638667</Latitude>\n\t\t\t<Longitude>-112.116997</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
534
379
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85053</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5075</Id>\n\t\t\t<Verbose>BELLAIR
535
380
  GOLF COURSE</Verbose>\n\t\t\t<Soundex>B462</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>17233
536
381
  N 45TH AVE</Location>\n\t\t\t<Latitude>33.642885</Latitude>\n\t\t\t<Longitude>-112.158131</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5233</Id>\n\t\t\t<Verbose>BENEDICT
@@ -544,16 +389,10 @@ http_interactions:
544
389
  BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5063</Id>\n\t\t\t<Verbose>BIG
545
390
  SURF</Verbose>\n\t\t\t<Soundex>B226</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
546
391
  County</Areacode>\n\t\t\t<Location>1500 N MCCLINTOCK DR</Location>\n\t\t\t<Latitude>33.447284</Latitude>\n\t\t\t<Longitude>-111.909360</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
547
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5063</Id>\n\t\t\t<Verbose>BIG
548
- SURF</Verbose>\n\t\t\t<Soundex>B226</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
549
- County</Areacode>\n\t\t\t<Location>1500 N MCCLINTOCK DR</Location>\n\t\t\t<Latitude>33.447284</Latitude>\n\t\t\t<Longitude>-111.909360</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
550
392
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5710</Id>\n\t\t\t<Verbose>BILTMORE
551
393
  FASHION PARK</Verbose>\n\t\t\t<Soundex>B435</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2470
552
394
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509274</Latitude>\n\t\t\t<Longitude>-112.028453</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
553
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5710</Id>\n\t\t\t<Verbose>BILTMORE
554
- FASHION PARK</Verbose>\n\t\t\t<Soundex>B435</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2470
555
- E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509274</Latitude>\n\t\t\t<Longitude>-112.028453</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
556
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5076</Id>\n\t\t\t<Verbose>BILTMORE
395
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5076</Id>\n\t\t\t<Verbose>BILTMORE
557
396
  GOLF CLUB</Verbose>\n\t\t\t<Soundex>B435</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2400
558
397
  E MISSOURI AVE</Location>\n\t\t\t<Latitude>33.516470</Latitude>\n\t\t\t<Longitude>-112.030173</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7435</Id>\n\t\t\t<Verbose>BIOSCIENCE
559
398
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>B252</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>512
@@ -572,7 +411,7 @@ http_interactions:
572
411
  E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447144</Latitude>\n\t\t\t<Longitude>-112.056430</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5711</Id>\n\t\t\t<Verbose>BORGATA
573
412
  OF SCOTTSDALE</Verbose>\n\t\t\t<Soundex>B623</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>6166
574
413
  N SCOTTSDALE RD</Location>\n\t\t\t<Latitude>33.526834</Latitude>\n\t\t\t<Longitude>-111.925814</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
575
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85253</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5646</Id>\n\t\t\t<Verbose>BOSTROM
414
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85253</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5646</Id>\n\t\t\t<Verbose>BOSTROM
576
415
  ALTERNATIVE HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>B236</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3535
577
416
  N 27TH AVE</Location>\n\t\t\t<Latitude>33.490051</Latitude>\n\t\t\t<Longitude>-112.117045</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
578
417
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85017</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5799</Id>\n\t\t\t<Verbose>BOSWELL
@@ -594,10 +433,6 @@ http_interactions:
594
433
  PARK AND RIDE</Verbose>\n\t\t\t<Soundex>B216</Soundex>\n\t\t\t<Area>BU</Area>\n\t\t\t<Areacode>Buckeye</Areacode>\n\t\t\t<Location>(11472)
595
434
  # BUCKEYE PARK AND RIDE</Location>\n\t\t\t<Latitude>33.469508</Latitude>\n\t\t\t<Longitude>-112.479251</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
596
435
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
597
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7952</Id>\n\t\t\t<Verbose>BUCKEYE
598
- PARK AND RIDE</Verbose>\n\t\t\t<Soundex>B216</Soundex>\n\t\t\t<Area>BU</Area>\n\t\t\t<Areacode>Buckeye</Areacode>\n\t\t\t<Location>(11472)
599
- # BUCKEYE PARK AND RIDE</Location>\n\t\t\t<Latitude>33.469508</Latitude>\n\t\t\t<Longitude>-112.479251</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
600
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
601
436
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5182</Id>\n\t\t\t<Verbose>BUCKHORN
602
437
  MINERAL WELLS MUSEUM</Verbose>\n\t\t\t<Soundex>B265</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>5900
603
438
  E MAIN ST</Location>\n\t\t\t<Latitude>33.415609</Latitude>\n\t\t\t<Longitude>-111.703386</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85205</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5183</Id>\n\t\t\t<Verbose>BUFFALO
@@ -608,10 +443,7 @@ http_interactions:
608
443
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85042</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7396</Id>\n\t\t\t<Verbose>CABELAS
609
444
  (CABELA S)</Verbose>\n\t\t\t<Soundex>C142</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>9380
610
445
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.537425</Latitude>\n\t\t\t<Longitude>-112.259972</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
611
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7396</Id>\n\t\t\t<Verbose>CABELAS
612
- (CABELA S)</Verbose>\n\t\t\t<Soundex>C142</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>9380
613
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.537425</Latitude>\n\t\t\t<Longitude>-112.259972</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
614
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5648</Id>\n\t\t\t<Verbose>CACTUS
446
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5648</Id>\n\t\t\t<Verbose>CACTUS
615
447
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>C232</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6330
616
448
  W GREENWAY RD</Location>\n\t\t\t<Latitude>33.625095</Latitude>\n\t\t\t<Longitude>-112.194792</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
617
449
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85306</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5237</Id>\n\t\t\t<Verbose>CACTUS
@@ -628,10 +460,7 @@ http_interactions:
628
460
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5712</Id>\n\t\t\t<Verbose>CAMELBACK
629
461
  COLONNADE MALL</Verbose>\n\t\t\t<Soundex>C541</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1919
630
462
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509239</Latitude>\n\t\t\t<Longitude>-112.039694</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
631
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5712</Id>\n\t\t\t<Verbose>CAMELBACK
632
- COLONNADE MALL</Verbose>\n\t\t\t<Soundex>C541</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1919
633
- E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509239</Latitude>\n\t\t\t<Longitude>-112.039694</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
634
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5064</Id>\n\t\t\t<Verbose>CAMELBACK
463
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5064</Id>\n\t\t\t<Verbose>CAMELBACK
635
464
  ESPLANADE</Verbose>\n\t\t\t<Soundex>C541</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2425
636
465
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509236</Latitude>\n\t\t\t<Longitude>-112.029522</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
637
466
  BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5649</Id>\n\t\t\t<Verbose>CAMELBACK
@@ -642,15 +471,9 @@ http_interactions:
642
471
  N ECHO CANYON PKWY</Location>\n\t\t\t<Latitude>33.521529</Latitude>\n\t\t\t<Longitude>-111.973922</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85018</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7875</Id>\n\t\t\t<Verbose>CAMELBACK
643
472
  RANCH</Verbose>\n\t\t\t<Soundex>C541</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10710
644
473
  W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.508787</Latitude>\n\t\t\t<Longitude>-112.290786</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
645
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85037</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7875</Id>\n\t\t\t<Verbose>CAMELBACK
646
- RANCH</Verbose>\n\t\t\t<Soundex>C541</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10710
647
- W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.508787</Latitude>\n\t\t\t<Longitude>-112.290786</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
648
474
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85037</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7924</Id>\n\t\t\t<Verbose>CAMPBELL
649
475
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>C514</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10873)
650
476
  # CAMPBELL/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.501903</Latitude>\n\t\t\t<Longitude>-112.073848</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
651
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7924</Id>\n\t\t\t<Verbose>CAMPBELL
652
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>C514</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10873)
653
- # CAMPBELL/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.501903</Latitude>\n\t\t\t<Longitude>-112.073848</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
654
477
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5239</Id>\n\t\t\t<Verbose>CANAL
655
478
  PARK</Verbose>\n\t\t\t<Soundex>C541</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1900
656
479
  N COLLEGE AVE</Location>\n\t\t\t<Latitude>33.450504</Latitude>\n\t\t\t<Longitude>-111.935195</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5650</Id>\n\t\t\t<Verbose>CARL
@@ -668,47 +491,26 @@ http_interactions:
668
491
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7916</Id>\n\t\t\t<Verbose>CARRINGTON
669
492
  COLLEGE MESA CAMPUS</Verbose>\n\t\t\t<Soundex>C652</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1001
670
493
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392780</Latitude>\n\t\t\t<Longitude>-111.853328</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
671
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7916</Id>\n\t\t\t<Verbose>CARRINGTON
672
- COLLEGE MESA CAMPUS</Verbose>\n\t\t\t<Soundex>C652</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1001
673
- W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392780</Latitude>\n\t\t\t<Longitude>-111.853328</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
674
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7917</Id>\n\t\t\t<Verbose>CARRINGTON
675
- COLLEGE PHOENIX CAMPUS</Verbose>\n\t\t\t<Soundex>C652</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8503
676
- N 27TH AVE</Location>\n\t\t\t<Latitude>33.561348</Latitude>\n\t\t\t<Longitude>-112.116708</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
677
494
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7917</Id>\n\t\t\t<Verbose>CARRINGTON
678
495
  COLLEGE PHOENIX CAMPUS</Verbose>\n\t\t\t<Soundex>C652</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8503
679
496
  N 27TH AVE</Location>\n\t\t\t<Latitude>33.561348</Latitude>\n\t\t\t<Longitude>-112.116708</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
680
497
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7918</Id>\n\t\t\t<Verbose>CARRINGTON
681
498
  COLLEGE PHOENIX WESTSIDE CAMPUS</Verbose>\n\t\t\t<Soundex>C652</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2701
682
499
  W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.523924</Latitude>\n\t\t\t<Longitude>-112.117004</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
683
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7918</Id>\n\t\t\t<Verbose>CARRINGTON
684
- COLLEGE PHOENIX WESTSIDE CAMPUS</Verbose>\n\t\t\t<Soundex>C652</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2701
685
- W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.523924</Latitude>\n\t\t\t<Longitude>-112.117004</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
686
500
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5734</Id>\n\t\t\t<Verbose>CARSON
687
501
  JUNIOR HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>C625</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>525
688
502
  N WESTWOOD</Location>\n\t\t\t<Latitude>33.424581</Latitude>\n\t\t\t<Longitude>-111.852312</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
689
503
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7439</Id>\n\t\t\t<Verbose>CASTLES
690
504
  N COASTERS</Verbose>\n\t\t\t<Soundex>C234</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9445
691
505
  N METRO PKWY E</Location>\n\t\t\t<Latitude>33.573364</Latitude>\n\t\t\t<Longitude>-112.118816</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
692
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7439</Id>\n\t\t\t<Verbose>CASTLES
693
- N COASTERS</Verbose>\n\t\t\t<Soundex>C234</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9445
694
- N METRO PKWY E</Location>\n\t\t\t<Latitude>33.573364</Latitude>\n\t\t\t<Longitude>-112.118816</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
695
506
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5241</Id>\n\t\t\t<Verbose>CELAYA
696
507
  PARK</Verbose>\n\t\t\t<Soundex>C416</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>601
697
508
  W VAUGHN ST</Location>\n\t\t\t<Latitude>33.361064</Latitude>\n\t\t\t<Longitude>-111.948404</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85283</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7553</Id>\n\t\t\t<Verbose>CELEBRITY
698
509
  THEATRE</Verbose>\n\t\t\t<Soundex>C416</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>440
699
510
  N 32ND ST</Location>\n\t\t\t<Latitude>33.452987</Latitude>\n\t\t\t<Longitude>-112.012913</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
700
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7553</Id>\n\t\t\t<Verbose>CELEBRITY
701
- THEATRE</Verbose>\n\t\t\t<Soundex>C416</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>440
702
- N 32ND ST</Location>\n\t\t\t<Latitude>33.452987</Latitude>\n\t\t\t<Longitude>-112.012913</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
703
511
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7938</Id>\n\t\t\t<Verbose>CENTER
704
512
  PKWY WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10885)
705
513
  # CENTER PKWY/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.438386</Latitude>\n\t\t\t<Longitude>-111.947165</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
706
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7938</Id>\n\t\t\t<Verbose>CENTER
707
- PKWY WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10885)
708
- # CENTER PKWY/WASHINGTON LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.438386</Latitude>\n\t\t\t<Longitude>-111.947165</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
709
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7923</Id>\n\t\t\t<Verbose>CENTRAL
710
- AVE CAMELBACK LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10872)
711
- # CENTRAL AVE/CAMELBACK LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.508872</Latitude>\n\t\t\t<Longitude>-112.075829</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
712
514
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7923</Id>\n\t\t\t<Verbose>CENTRAL
713
515
  AVE CAMELBACK LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10872)
714
516
  # CENTRAL AVE/CAMELBACK LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.508872</Latitude>\n\t\t\t<Longitude>-112.075829</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
@@ -718,54 +520,9 @@ http_interactions:
718
520
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85012</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
719
521
  STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
720
522
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
721
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
722
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
723
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
724
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
725
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
726
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
727
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
728
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
729
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
730
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
731
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
732
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
733
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
734
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
735
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
736
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
737
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
738
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
739
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
740
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
741
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
742
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
743
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
744
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
745
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
746
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
747
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
748
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
749
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
750
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
751
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
752
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
753
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
754
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
755
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
756
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
757
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
758
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
759
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
760
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7234</Id>\n\t\t\t<Verbose>CENTRAL
761
- STATION</Verbose>\n\t\t\t<Soundex>C536</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>300
762
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.452082</Latitude>\n\t\t\t<Longitude>-112.074374</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
763
523
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5065</Id>\n\t\t\t<Verbose>CERRETA
764
524
  CANDY COMPANY</Verbose>\n\t\t\t<Soundex>C632</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5345
765
525
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538477</Latitude>\n\t\t\t<Longitude>-112.173802</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
766
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5065</Id>\n\t\t\t<Verbose>CERRETA
767
- CANDY COMPANY</Verbose>\n\t\t\t<Soundex>C632</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5345
768
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538477</Latitude>\n\t\t\t<Longitude>-112.173802</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
769
526
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5652</Id>\n\t\t\t<Verbose>CESAR
770
527
  CHAVEZ HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>C262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3921
771
528
  W BASELINE RD</Location>\n\t\t\t<Latitude>33.377495</Latitude>\n\t\t\t<Longitude>-112.142992</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -777,31 +534,16 @@ http_interactions:
777
534
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85303</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7440</Id>\n\t\t\t<Verbose>CHANDLER
778
535
  CENTER FOR THE ARTS</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>250
779
536
  N ARIZONA AVE</Location>\n\t\t\t<Latitude>33.306234</Latitude>\n\t\t\t<Longitude>-111.841540</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
780
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7440</Id>\n\t\t\t<Verbose>CHANDLER
781
- CENTER FOR THE ARTS</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>250
782
- N ARIZONA AVE</Location>\n\t\t\t<Latitude>33.306234</Latitude>\n\t\t\t<Longitude>-111.841540</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
783
537
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6917</Id>\n\t\t\t<Verbose>CHANDLER
784
538
  CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>25
785
539
  S ARIZONA PL</Location>\n\t\t\t<Latitude>33.303094</Latitude>\n\t\t\t<Longitude>-111.840776</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
786
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6917</Id>\n\t\t\t<Verbose>CHANDLER
787
- CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>25
788
- S ARIZONA PL</Location>\n\t\t\t<Latitude>33.303094</Latitude>\n\t\t\t<Longitude>-111.840776</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
789
540
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5044</Id>\n\t\t\t<Verbose>CHANDLER
790
541
  CITY HALL</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>55
791
542
  N ARIZONA PL</Location>\n\t\t\t<Latitude>33.304045</Latitude>\n\t\t\t<Longitude>-111.840781</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
792
543
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7227</Id>\n\t\t\t<Verbose>CHANDLER
793
544
  FASHION CENTER</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>3111
794
545
  W CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.298172</Latitude>\n\t\t\t<Longitude>-111.899516</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
795
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7227</Id>\n\t\t\t<Verbose>CHANDLER
796
- FASHION CENTER</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>3111
797
- W CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.298172</Latitude>\n\t\t\t<Longitude>-111.899516</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
798
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7227</Id>\n\t\t\t<Verbose>CHANDLER
799
- FASHION CENTER</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>3111
800
- W CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.298172</Latitude>\n\t\t\t<Longitude>-111.899516</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
801
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7227</Id>\n\t\t\t<Verbose>CHANDLER
802
- FASHION CENTER</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>3111
803
- W CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.298172</Latitude>\n\t\t\t<Longitude>-111.899516</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
804
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5653</Id>\n\t\t\t<Verbose>CHANDLER
546
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5653</Id>\n\t\t\t<Verbose>CHANDLER
805
547
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>N
806
548
  ARIZONA AVE &amp; W ERIE ST</Location>\n\t\t\t<Latitude>33.309764</Latitude>\n\t\t\t<Longitude>-111.841508</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
807
549
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5184</Id>\n\t\t\t<Verbose>CHANDLER
@@ -809,41 +551,25 @@ http_interactions:
809
551
  E COMMONWEALTH AVE</Location>\n\t\t\t<Latitude>33.303329</Latitude>\n\t\t\t<Longitude>-111.839361</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7632</Id>\n\t\t\t<Verbose>CHANDLER
810
552
  PARK AND RIDE</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>720
811
553
  E GERMANN RD</Location>\n\t\t\t<Latitude>33.274672</Latitude>\n\t\t\t<Longitude>-111.834114</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
812
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85286</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7632</Id>\n\t\t\t<Verbose>CHANDLER
813
- PARK AND RIDE</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>720
814
- E GERMANN RD</Location>\n\t\t\t<Latitude>33.274672</Latitude>\n\t\t\t<Longitude>-111.834114</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
815
554
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85286</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6915</Id>\n\t\t\t<Verbose>CHANDLER
816
555
  PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>22
817
- S DELAWARE ST</Location>\n\t\t\t<Latitude>33.303140</Latitude>\n\t\t\t<Longitude>-111.837509</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6915</Id>\n\t\t\t<Verbose>CHANDLER
818
- PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>22
819
556
  S DELAWARE ST</Location>\n\t\t\t<Latitude>33.303140</Latitude>\n\t\t\t<Longitude>-111.837509</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7594</Id>\n\t\t\t<Verbose>CHANDLER
820
557
  PUBLIC LIBRARY SUNSET BRANCH</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>W
821
- RAY RD &amp; N TERRACE RD</Location>\n\t\t\t<Latitude>33.320130</Latitude>\n\t\t\t<Longitude>-111.923905</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85226</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7594</Id>\n\t\t\t<Verbose>CHANDLER
822
- PUBLIC LIBRARY SUNSET BRANCH</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>W
823
558
  RAY RD &amp; N TERRACE RD</Location>\n\t\t\t<Latitude>33.320130</Latitude>\n\t\t\t<Longitude>-111.923905</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85226</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5107</Id>\n\t\t\t<Verbose>CHANDLER
824
559
  REGIONAL HOSPITAL</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>475
825
560
  S DOBSON RD</Location>\n\t\t\t<Latitude>33.297265</Latitude>\n\t\t\t<Longitude>-111.876275</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
826
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85224</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5107</Id>\n\t\t\t<Verbose>CHANDLER
827
- REGIONAL HOSPITAL</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>475
828
- S DOBSON RD</Location>\n\t\t\t<Latitude>33.297265</Latitude>\n\t\t\t<Longitude>-111.876275</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
829
561
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85224</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6924</Id>\n\t\t\t<Verbose>CHANDLER
830
562
  SENIOR CENTER</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>202
831
563
  E BOSTON ST</Location>\n\t\t\t<Latitude>33.302291</Latitude>\n\t\t\t<Longitude>-111.838773</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
832
564
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5446</Id>\n\t\t\t<Verbose>CHANDLER/GILBERT
833
565
  COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>2626
834
566
  E PECOS RD</Location>\n\t\t\t<Latitude>33.292623</Latitude>\n\t\t\t<Longitude>-111.794558</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
835
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5446</Id>\n\t\t\t<Verbose>CHANDLER/GILBERT
836
- COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>C534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>2626
837
- E PECOS RD</Location>\n\t\t\t<Latitude>33.292623</Latitude>\n\t\t\t<Longitude>-111.794558</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
838
567
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5382</Id>\n\t\t\t<Verbose>CHAPARRAL
839
568
  PARK</Verbose>\n\t\t\t<Soundex>C164</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>5401
840
569
  N HAYDEN RD</Location>\n\t\t\t<Latitude>33.515996</Latitude>\n\t\t\t<Longitude>-111.908737</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
841
570
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85250</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7281</Id>\n\t\t\t<Verbose>CHASE
842
571
  FIELD</Verbose>\n\t\t\t<Soundex>C214</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>401
843
572
  E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.446347</Latitude>\n\t\t\t<Longitude>-112.068689</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
844
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7281</Id>\n\t\t\t<Verbose>CHASE
845
- FIELD</Verbose>\n\t\t\t<Soundex>C214</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>401
846
- E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.446347</Latitude>\n\t\t\t<Longitude>-112.068689</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
847
573
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7280</Id>\n\t\t\t<Verbose>CHASE
848
574
  TOWER</Verbose>\n\t\t\t<Soundex>C236</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>201
849
575
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.450367</Latitude>\n\t\t\t<Longitude>-112.073856</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
@@ -851,8 +577,6 @@ http_interactions:
851
577
  PARK</Verbose>\n\t\t\t<Soundex>C235</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>4546
852
578
  N GRANITE REEF RD</Location>\n\t\t\t<Latitude>33.503150</Latitude>\n\t\t\t<Longitude>-111.900276</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7908</Id>\n\t\t\t<Verbose>CHILDRENS
853
579
  MUSEUM OF PHOENIX</Verbose>\n\t\t\t<Soundex>C436</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>215
854
- N 7TH ST</Location>\n\t\t\t<Latitude>33.450666</Latitude>\n\t\t\t<Longitude>-112.064845</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7908</Id>\n\t\t\t<Verbose>CHILDRENS
855
- MUSEUM OF PHOENIX</Verbose>\n\t\t\t<Soundex>C436</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>215
856
580
  N 7TH ST</Location>\n\t\t\t<Latitude>33.450666</Latitude>\n\t\t\t<Longitude>-112.064845</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5736</Id>\n\t\t\t<Verbose>CHOLLA
857
581
  MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>C453</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3120
858
582
  W CHOLLA ST</Location>\n\t\t\t<Latitude>33.589808</Latitude>\n\t\t\t<Longitude>-112.125946</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -861,13 +585,7 @@ http_interactions:
861
585
  E VIA LINDA</Location>\n\t\t\t<Latitude>33.586523</Latitude>\n\t\t\t<Longitude>-111.840780</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7639</Id>\n\t\t\t<Verbose>CHRISTOWN
862
586
  MALL</Verbose>\n\t\t\t<Soundex>C623</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1703
863
587
  W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.524050</Latitude>\n\t\t\t<Longitude>-112.098187</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
864
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7639</Id>\n\t\t\t<Verbose>CHRISTOWN
865
- MALL</Verbose>\n\t\t\t<Soundex>C623</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1703
866
- W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.524050</Latitude>\n\t\t\t<Longitude>-112.098187</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
867
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7639</Id>\n\t\t\t<Verbose>CHRISTOWN
868
- MALL</Verbose>\n\t\t\t<Soundex>C623</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1703
869
- W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.524050</Latitude>\n\t\t\t<Longitude>-112.098187</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
870
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5247</Id>\n\t\t\t<Verbose>CIELITO
588
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5247</Id>\n\t\t\t<Verbose>CIELITO
871
589
  PARK</Verbose>\n\t\t\t<Soundex>C431</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3402
872
590
  W CAMPBELL AVE</Location>\n\t\t\t<Latitude>33.502248</Latitude>\n\t\t\t<Longitude>-112.132145</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85017</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7634</Id>\n\t\t\t<Verbose>CINEMARK</Verbose>\n\t\t\t<Soundex>C556</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1051
873
591
  N DOBSON RD</Location>\n\t\t\t<Latitude>33.435901</Latitude>\n\t\t\t<Longitude>-111.862513</Longitude>\n\t\t\t<Type>CINE</Type>\n\t\t\t<Typedescription>CINEMAS
@@ -894,64 +612,11 @@ http_interactions:
894
612
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
895
613
  OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
896
614
  S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
897
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
898
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
899
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
900
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
901
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
902
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
903
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
904
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
905
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
906
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
907
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
908
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
909
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
910
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
911
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
912
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
913
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
914
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
915
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
916
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
917
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
918
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
919
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
920
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
921
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
922
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
923
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
924
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
925
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
926
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
927
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
928
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
929
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
930
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
931
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
932
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
933
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
934
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
935
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
936
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
937
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
938
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
939
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7106</Id>\n\t\t\t<Verbose>CITY
940
- OF TEMPE PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>C313</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
941
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
942
615
  LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7631</Id>\n\t\t\t<Verbose>CITYNORTH</Verbose>\n\t\t\t<Soundex>C356</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>E
943
616
  DEER VALLEY RD &amp; MARRIOTT DR</Location>\n\t\t\t<Latitude>33.677974</Latitude>\n\t\t\t<Longitude>-111.968520</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
944
- BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85054</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7631</Id>\n\t\t\t<Verbose>CITYNORTH</Verbose>\n\t\t\t<Soundex>C356</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>E
945
- DEER VALLEY RD &amp; MARRIOTT DR</Location>\n\t\t\t<Latitude>33.677974</Latitude>\n\t\t\t<Longitude>-111.968520</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
946
- BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85054</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7631</Id>\n\t\t\t<Verbose>CITYNORTH</Verbose>\n\t\t\t<Soundex>C356</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>E
947
- DEER VALLEY RD &amp; MARRIOTT DR</Location>\n\t\t\t<Latitude>33.677974</Latitude>\n\t\t\t<Longitude>-111.968520</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
948
617
  BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85054</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7914</Id>\n\t\t\t<Verbose>CITYSCAPE</Verbose>\n\t\t\t<Soundex>C321</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>101
949
618
  E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448216</Latitude>\n\t\t\t<Longitude>-112.073723</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
950
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7914</Id>\n\t\t\t<Verbose>CITYSCAPE</Verbose>\n\t\t\t<Soundex>C321</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>101
951
- E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448216</Latitude>\n\t\t\t<Longitude>-112.073723</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
952
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7914</Id>\n\t\t\t<Verbose>CITYSCAPE</Verbose>\n\t\t\t<Soundex>C321</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>101
953
- E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448216</Latitude>\n\t\t\t<Longitude>-112.073723</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
954
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5737</Id>\n\t\t\t<Verbose>CLARENDON
619
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5737</Id>\n\t\t\t<Verbose>CLARENDON
955
620
  SCHOOL</Verbose>\n\t\t\t<Soundex>C465</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1225
956
621
  W CLARENDON AVE</Location>\n\t\t\t<Latitude>33.491238</Latitude>\n\t\t\t<Longitude>-112.086958</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
957
622
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7599</Id>\n\t\t\t<Verbose>CMCN</Verbose>\n\t\t\t<Soundex>C525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>W
@@ -959,16 +624,13 @@ http_interactions:
959
624
  CENTRAL AVE &amp; E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509283</Latitude>\n\t\t\t<Longitude>-112.073744</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85012</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7965</Id>\n\t\t\t<Verbose>COBBLESTONE
960
625
  AUTO SPA</Verbose>\n\t\t\t<Soundex>C142</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11731)
961
626
  # NB S SIGNAL BUTTE RD NEAR COBBLESTONE AUTO SPA</Location>\n\t\t\t<Latitude>33.382340</Latitude>\n\t\t\t<Longitude>-111.599139</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
962
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
627
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
963
628
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5384</Id>\n\t\t\t<Verbose>COBBLESTONE
964
629
  VILLAGE</Verbose>\n\t\t\t<Soundex>C142</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1761
965
630
  E WARNER RD</Location>\n\t\t\t<Latitude>33.334708</Latitude>\n\t\t\t<Longitude>-111.911145</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
966
631
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85284</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7300</Id>\n\t\t\t<Verbose>COFCO
967
632
  CHINESE CULTURAL CENTER</Verbose>\n\t\t\t<Soundex>C122</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>668
968
633
  N 44TH ST</Location>\n\t\t\t<Latitude>33.456001</Latitude>\n\t\t\t<Longitude>-111.987152</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
969
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7300</Id>\n\t\t\t<Verbose>COFCO
970
- CHINESE CULTURAL CENTER</Verbose>\n\t\t\t<Soundex>C122</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>668
971
- N 44TH ST</Location>\n\t\t\t<Latitude>33.456001</Latitude>\n\t\t\t<Longitude>-111.987152</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
972
634
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7649</Id>\n\t\t\t<Verbose>COLLINS
973
635
  COLLEGE PHOENIX CAMPUS</Verbose>\n\t\t\t<Soundex>C452</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9630
974
636
  N 25TH AVE</Location>\n\t\t\t<Latitude>33.575033</Latitude>\n\t\t\t<Longitude>-112.113078</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -980,9 +642,6 @@ http_interactions:
980
642
  7TH AVE &amp; W COLTER ST</Location>\n\t\t\t<Latitude>33.512971</Latitude>\n\t\t\t<Longitude>-112.082409</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7892</Id>\n\t\t\t<Verbose>COMERICA
981
643
  THEATRE</Verbose>\n\t\t\t<Soundex>C562</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>400
982
644
  W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448254</Latitude>\n\t\t\t<Longitude>-112.078951</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
983
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7892</Id>\n\t\t\t<Verbose>COMERICA
984
- THEATRE</Verbose>\n\t\t\t<Soundex>C562</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>400
985
- W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448254</Latitude>\n\t\t\t<Longitude>-112.078951</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
986
645
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7306</Id>\n\t\t\t<Verbose>COMMEMORATIVE
987
646
  AIR FORCE MUSEUM</Verbose>\n\t\t\t<Soundex>C556</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>2017
988
647
  N GREENFIELD RD</Location>\n\t\t\t<Latitude>33.452121</Latitude>\n\t\t\t<Longitude>-111.736078</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85215</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7549</Id>\n\t\t\t<Verbose>COMMUNITY
@@ -1032,23 +691,13 @@ http_interactions:
1032
691
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7886</Id>\n\t\t\t<Verbose>CROSSROADS
1033
692
  TOWNE CENTER</Verbose>\n\t\t\t<Soundex>C626</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>E
1034
693
  GERMANN RD &amp; S GILBERT RD</Location>\n\t\t\t<Latitude>33.277943</Latitude>\n\t\t\t<Longitude>-111.789321</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1035
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85286</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7886</Id>\n\t\t\t<Verbose>CROSSROADS
1036
- TOWNE CENTER</Verbose>\n\t\t\t<Soundex>C626</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>E
1037
- GERMANN RD &amp; S GILBERT RD</Location>\n\t\t\t<Latitude>33.277943</Latitude>\n\t\t\t<Longitude>-111.789321</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1038
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85286</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7981</Id>\n\t\t\t<Verbose>CUBS
1039
- PARK</Verbose>\n\t\t\t<Soundex>C121</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>2100
1040
- W 8TH ST</Location>\n\t\t\t<Latitude>33.429404</Latitude>\n\t\t\t<Longitude>-111.876727</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
1041
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7981</Id>\n\t\t\t<Verbose>CUBS
694
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85286</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7981</Id>\n\t\t\t<Verbose>CUBS
1042
695
  PARK</Verbose>\n\t\t\t<Soundex>C121</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>2100
1043
696
  W 8TH ST</Location>\n\t\t\t<Latitude>33.429404</Latitude>\n\t\t\t<Longitude>-111.876727</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
1044
697
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7881</Id>\n\t\t\t<Verbose>DEC</Verbose>\n\t\t\t<Soundex>D200</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>&lt;962&gt;
1045
698
  # WASHINGTON ST -- 48TH ST &amp; 51ST ST</Location>\n\t\t\t<Latitude>33.446692</Latitude>\n\t\t\t<Longitude>-111.973308</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
1046
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7881</Id>\n\t\t\t<Verbose>DEC</Verbose>\n\t\t\t<Soundex>D200</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>&lt;962&gt;
1047
- # WASHINGTON ST -- 48TH ST &amp; 51ST ST</Location>\n\t\t\t<Latitude>33.446692</Latitude>\n\t\t\t<Longitude>-111.973308</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
1048
699
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7577</Id>\n\t\t\t<Verbose>DEER
1049
700
  VALLEY AIRPORT</Verbose>\n\t\t\t<Soundex>D614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>702
1050
- W DEER VALLEY RD</Location>\n\t\t\t<Latitude>33.683835</Latitude>\n\t\t\t<Longitude>-112.083583</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7577</Id>\n\t\t\t<Verbose>DEER
1051
- VALLEY AIRPORT</Verbose>\n\t\t\t<Soundex>D614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>702
1052
701
  W DEER VALLEY RD</Location>\n\t\t\t<Latitude>33.683835</Latitude>\n\t\t\t<Longitude>-112.083583</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7043</Id>\n\t\t\t<Verbose>DEER
1053
702
  VALLEY COMMUNITY CENTER</Verbose>\n\t\t\t<Soundex>D614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2001
1054
703
  W WAHALLA LN</Location>\n\t\t\t<Latitude>33.667065</Latitude>\n\t\t\t<Longitude>-112.099824</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -1068,30 +717,20 @@ http_interactions:
1068
717
  W DEER VALLEY RD</Location>\n\t\t\t<Latitude>33.683769</Latitude>\n\t\t\t<Longitude>-112.140569</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7650</Id>\n\t\t\t<Verbose>DEER
1069
718
  VALLEY TOWN CENTER</Verbose>\n\t\t\t<Soundex>D614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3033
1070
719
  W AGUA FRIA FRWY</Location>\n\t\t\t<Latitude>33.667769</Latitude>\n\t\t\t<Longitude>-112.125621</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1071
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7650</Id>\n\t\t\t<Verbose>DEER
1072
- VALLEY TOWN CENTER</Verbose>\n\t\t\t<Soundex>D614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3033
1073
- W AGUA FRIA FRWY</Location>\n\t\t\t<Latitude>33.667769</Latitude>\n\t\t\t<Longitude>-112.125621</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1074
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5253</Id>\n\t\t\t<Verbose>DENNIS
720
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5253</Id>\n\t\t\t<Verbose>DENNIS
1075
721
  DECONCINI PARK</Verbose>\n\t\t\t<Soundex>D523</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>351
1076
722
  E WESTERN AVE</Location>\n\t\t\t<Latitude>33.435301</Latitude>\n\t\t\t<Longitude>-112.354111</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7025</Id>\n\t\t\t<Verbose>DES
1077
723
  - JOBS PROGRAM</Verbose>\n\t\t\t<Soundex>D221</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1500
1078
724
  E THOMAS RD</Location>\n\t\t\t<Latitude>33.480203</Latitude>\n\t\t\t<Longitude>-112.049821</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
1079
725
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85014</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5185</Id>\n\t\t\t<Verbose>DESERT
1080
726
  BOTANICAL GARDENS</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(12173)
1081
- # DESERT BOTANICAL GARDEN</Location>\n\t\t\t<Latitude>33.462117</Latitude>\n\t\t\t<Longitude>-111.943242</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5185</Id>\n\t\t\t<Verbose>DESERT
1082
- BOTANICAL GARDENS</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(12173)
1083
- # DESERT BOTANICAL GARDEN</Location>\n\t\t\t<Latitude>33.462117</Latitude>\n\t\t\t<Longitude>-111.943242</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5185</Id>\n\t\t\t<Verbose>DESERT
1084
- BOTANICAL GARDENS</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(12173)
1085
727
  # DESERT BOTANICAL GARDEN</Location>\n\t\t\t<Latitude>33.462117</Latitude>\n\t\t\t<Longitude>-111.943242</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5661</Id>\n\t\t\t<Verbose>DESERT
1086
728
  MOUNTAIN HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>12575
1087
729
  E VIA LINDA ST</Location>\n\t\t\t<Latitude>33.589677</Latitude>\n\t\t\t<Longitude>-111.807996</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
1088
730
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5715</Id>\n\t\t\t<Verbose>DESERT
1089
731
  RIDGE MARKETPLACE</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>21001
1090
732
  N TATUM BLVD</Location>\n\t\t\t<Latitude>33.675184</Latitude>\n\t\t\t<Longitude>-111.977403</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1091
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85050</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5715</Id>\n\t\t\t<Verbose>DESERT
1092
- RIDGE MARKETPLACE</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>21001
1093
- N TATUM BLVD</Location>\n\t\t\t<Latitude>33.675184</Latitude>\n\t\t\t<Longitude>-111.977403</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1094
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85050</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7316</Id>\n\t\t\t<Verbose>DESERT
733
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85050</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7316</Id>\n\t\t\t<Verbose>DESERT
1095
734
  RIDGE MARRIOTT RESORT</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
1096
735
  MARRIOTT WAY &amp; E PATHFINDER DR</Location>\n\t\t\t<Latitude>33.682997</Latitude>\n\t\t\t<Longitude>-111.970646</Longitude>\n\t\t\t<Type>HOTEL</Type>\n\t\t\t<Typedescription>HOTELS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85054</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5739</Id>\n\t\t\t<Verbose>DESERT
1097
736
  SANDS MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>6308
@@ -1099,16 +738,7 @@ http_interactions:
1099
738
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85033</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7130</Id>\n\t\t\t<Verbose>DESERT
1100
739
  SKY MALL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7611
1101
740
  W THOMAS RD</Location>\n\t\t\t<Latitude>33.478816</Latitude>\n\t\t\t<Longitude>-112.224448</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1102
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7130</Id>\n\t\t\t<Verbose>DESERT
1103
- SKY MALL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7611
1104
- W THOMAS RD</Location>\n\t\t\t<Latitude>33.478816</Latitude>\n\t\t\t<Longitude>-112.224448</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1105
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7130</Id>\n\t\t\t<Verbose>DESERT
1106
- SKY MALL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7611
1107
- W THOMAS RD</Location>\n\t\t\t<Latitude>33.478816</Latitude>\n\t\t\t<Longitude>-112.224448</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1108
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7130</Id>\n\t\t\t<Verbose>DESERT
1109
- SKY MALL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7611
1110
- W THOMAS RD</Location>\n\t\t\t<Latitude>33.478816</Latitude>\n\t\t\t<Longitude>-112.224448</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1111
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5740</Id>\n\t\t\t<Verbose>DESERT
741
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5740</Id>\n\t\t\t<Verbose>DESERT
1112
742
  SKY MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>D263</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5130
1113
743
  W GROVERS AVE</Location>\n\t\t\t<Latitude>33.647184</Latitude>\n\t\t\t<Longitude>-112.169711</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
1114
744
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7443</Id>\n\t\t\t<Verbose>DESERT
@@ -1148,14 +778,9 @@ http_interactions:
1148
778
  N 67TH AVE</Location>\n\t\t\t<Latitude>33.517246</Latitude>\n\t\t\t<Longitude>-112.203129</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
1149
779
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7444</Id>\n\t\t\t<Verbose>DONNIE
1150
780
  HALE PARK</Verbose>\n\t\t\t<Soundex>D541</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>10857
1151
- W PIMA ST</Location>\n\t\t\t<Latitude>33.431673</Latitude>\n\t\t\t<Longitude>-112.293654</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7444</Id>\n\t\t\t<Verbose>DONNIE
1152
- HALE PARK</Verbose>\n\t\t\t<Soundex>D541</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>10857
1153
781
  W PIMA ST</Location>\n\t\t\t<Latitude>33.431673</Latitude>\n\t\t\t<Longitude>-112.293654</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7942</Id>\n\t\t\t<Verbose>DORSEY
1154
782
  APACHE BLVD LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>D621</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10886)
1155
783
  # DORSEY LN/APACHE BLVD LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414721</Latitude>\n\t\t\t<Longitude>-111.917512</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1156
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7942</Id>\n\t\t\t<Verbose>DORSEY
1157
- APACHE BLVD LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>D621</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10886)
1158
- # DORSEY LN/APACHE BLVD LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414721</Latitude>\n\t\t\t<Longitude>-111.917512</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1159
784
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7078</Id>\n\t\t\t<Verbose>DOWNTOWN
1160
785
  PARTNERSHIP</Verbose>\n\t\t\t<Soundex>D535</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>541
1161
786
  E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451359</Latitude>\n\t\t\t<Longitude>-112.067022</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
@@ -1172,48 +797,6 @@ http_interactions:
1172
797
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1173
798
  MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1174
799
  E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1175
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1176
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1177
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1178
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1179
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1180
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1181
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1182
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1183
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1184
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1185
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1186
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1187
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1188
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1189
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1190
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1191
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1192
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1193
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1194
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1195
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1196
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1197
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1198
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1199
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1200
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1201
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1202
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1203
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1204
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1205
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1206
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1207
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1208
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1209
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1210
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1211
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1212
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1213
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1214
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7122</Id>\n\t\t\t<Verbose>EAST
1215
- MESA SERVICE CENTER</Verbose>\n\t\t\t<Soundex>E235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>6935
1216
- E DECATUR ST</Location>\n\t\t\t<Latitude>33.427875</Latitude>\n\t\t\t<Longitude>-111.682027</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1217
800
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85207</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7402</Id>\n\t\t\t<Verbose>EAST
1218
801
  VALLEY INSTITUTE OF TECHNOLOGY</Verbose>\n\t\t\t<Soundex>E231</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1601
1219
802
  W MAIN ST</Location>\n\t\t\t<Latitude>33.414878</Latitude>\n\t\t\t<Longitude>-111.865524</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -1225,48 +808,6 @@ http_interactions:
1225
808
  E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447199</Latitude>\n\t\t\t<Longitude>-112.048843</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1226
809
  PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1227
810
  W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1228
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1229
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1230
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1231
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1232
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1233
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1234
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1235
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1236
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1237
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1238
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1239
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1240
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1241
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1242
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1243
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1244
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1245
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1246
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1247
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1248
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1249
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1250
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1251
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1252
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1253
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1254
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1255
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1256
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1257
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1258
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1259
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1260
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1261
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1262
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1263
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1264
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1265
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1266
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1267
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7236</Id>\n\t\t\t<Verbose>ED
1268
- PASTOR TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>E312</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10
1269
- W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407142</Latitude>\n\t\t\t<Longitude>-112.074713</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
1270
811
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5260</Id>\n\t\t\t<Verbose>EDISON
1271
812
  PARK</Verbose>\n\t\t\t<Soundex>E325</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
1272
813
  19TH ST &amp; E ROOSEVELT ST</Location>\n\t\t\t<Latitude>33.458659</Latitude>\n\t\t\t<Longitude>-112.041172</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5079</Id>\n\t\t\t<Verbose>EL
@@ -1287,9 +828,6 @@ http_interactions:
1287
828
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85392</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7928</Id>\n\t\t\t<Verbose>ENCANTO
1288
829
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>E525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10877)
1289
830
  # ENCANTO/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.474736</Latitude>\n\t\t\t<Longitude>-112.073831</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1290
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7928</Id>\n\t\t\t<Verbose>ENCANTO
1291
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>E525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10877)
1292
- # ENCANTO/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.474736</Latitude>\n\t\t\t<Longitude>-112.073831</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1293
831
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5080</Id>\n\t\t\t<Verbose>ENCANTO
1294
832
  MUNICIPAL GOLF COURSE</Verbose>\n\t\t\t<Soundex>E525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2775
1295
833
  N 15TH AVE</Location>\n\t\t\t<Latitude>33.478282</Latitude>\n\t\t\t<Longitude>-112.091392</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5265</Id>\n\t\t\t<Verbose>ENCANTO
@@ -1308,9 +846,6 @@ http_interactions:
1308
846
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85033</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5448</Id>\n\t\t\t<Verbose>ESTRELLA
1309
847
  MOUNTAIN COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>E236</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>(7751)
1310
848
  # ESTRELLA MT CC PARKING LOT -- THOMAS RD</Location>\n\t\t\t<Latitude>33.480162</Latitude>\n\t\t\t<Longitude>-112.345116</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1311
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5448</Id>\n\t\t\t<Verbose>ESTRELLA
1312
- MOUNTAIN COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>E236</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>(7751)
1313
- # ESTRELLA MT CC PARKING LOT -- THOMAS RD</Location>\n\t\t\t<Latitude>33.480162</Latitude>\n\t\t\t<Longitude>-112.345116</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1314
849
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7401</Id>\n\t\t\t<Verbose>EVIT</Verbose>\n\t\t\t<Soundex>E130</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1601
1315
850
  W MAIN ST</Location>\n\t\t\t<Latitude>33.413006</Latitude>\n\t\t\t<Longitude>-111.865420</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1316
851
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7570</Id>\n\t\t\t<Verbose>EXPLORER
@@ -1338,18 +873,12 @@ http_interactions:
1338
873
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85040</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7252</Id>\n\t\t\t<Verbose>FEDERAL
1339
874
  COURT</Verbose>\n\t\t\t<Soundex>F364</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>401
1340
875
  W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448207</Latitude>\n\t\t\t<Longitude>-112.078975</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
1341
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7252</Id>\n\t\t\t<Verbose>FEDERAL
1342
- COURT</Verbose>\n\t\t\t<Soundex>F364</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>401
1343
- W WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448207</Latitude>\n\t\t\t<Longitude>-112.078975</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
1344
876
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7459</Id>\n\t\t\t<Verbose>FIESTA
1345
877
  BOWL CENTER AND MUSEUM</Verbose>\n\t\t\t<Soundex>F231</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7135
1346
878
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.502265</Latitude>\n\t\t\t<Longitude>-111.927265</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5717</Id>\n\t\t\t<Verbose>FIESTA
1347
879
  MALL</Verbose>\n\t\t\t<Soundex>F235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1445
1348
880
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.391045</Latitude>\n\t\t\t<Longitude>-111.859963</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1349
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5717</Id>\n\t\t\t<Verbose>FIESTA
1350
- MALL</Verbose>\n\t\t\t<Soundex>F235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1445
1351
- W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.391045</Latitude>\n\t\t\t<Longitude>-111.859963</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1352
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7288</Id>\n\t\t\t<Verbose>FIRST
881
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7288</Id>\n\t\t\t<Verbose>FIRST
1353
882
  AVENUE JAIL</Verbose>\n\t\t\t<Soundex>F623</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>102
1354
883
  W MADISON ST</Location>\n\t\t\t<Latitude>33.446084</Latitude>\n\t\t\t<Longitude>-112.075111</Longitude>\n\t\t\t<Type>JAIL</Type>\n\t\t\t<Typedescription>JAILS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5268</Id>\n\t\t\t<Verbose>FITCH
1355
884
  PARK</Verbose>\n\t\t\t<Soundex>F321</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>644
@@ -1358,93 +887,26 @@ http_interactions:
1358
887
  Park</Areacode>\n\t\t\t<Location>414 N WIGWAM AVE</Location>\n\t\t\t<Latitude>33.494044</Latitude>\n\t\t\t<Longitude>-112.354167</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85340</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7119</Id>\n\t\t\t<Verbose>FOOD
1359
888
  CITY - 43 AVE/GLENDALE AVE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>4335
1360
889
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538439</Latitude>\n\t\t\t<Longitude>-112.152440</Longitude>\n\t\t\t<Type>FR31DP</Type>\n\t\t\t<Typedescription>FARE
1361
- REDUCED 31 DAY PASS-$32.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7119</Id>\n\t\t\t<Verbose>FOOD
1362
- CITY - 43 AVE/GLENDALE AVE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>4335
1363
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538439</Latitude>\n\t\t\t<Longitude>-112.152440</Longitude>\n\t\t\t<Type>FR31DP</Type>\n\t\t\t<Typedescription>FARE
1364
890
  REDUCED 31 DAY PASS-$32.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1365
891
  CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1366
892
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1367
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1368
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1369
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1370
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1371
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1372
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1373
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1374
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1375
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1376
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1377
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1378
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1379
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1380
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1381
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1382
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1383
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1384
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1385
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7131</Id>\n\t\t\t<Verbose>FOOD
1386
- CITY - MCDOWELL</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2124
1387
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465753</Latitude>\n\t\t\t<Longitude>-112.035888</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1388
893
  REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1389
894
  CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1390
895
  S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1391
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1392
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1393
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1394
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1395
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1396
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1397
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1398
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1399
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1400
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1401
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1402
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1403
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1404
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1405
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1406
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1407
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1408
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1409
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7308</Id>\n\t\t\t<Verbose>FOOD
1410
- CITY 16 ST/MOHAVE ST</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1648
1411
- S 16TH ST</Location>\n\t\t\t<Latitude>33.431837</Latitude>\n\t\t\t<Longitude>-112.047797</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1412
896
  REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7309</Id>\n\t\t\t<Verbose>FOOD
1413
897
  CITY 35 AVE/GLENDALE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3514
1414
898
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538502</Latitude>\n\t\t\t<Longitude>-112.134689</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1415
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7309</Id>\n\t\t\t<Verbose>FOOD
1416
- CITY 35 AVE/GLENDALE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3514
1417
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538502</Latitude>\n\t\t\t<Longitude>-112.134689</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1418
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7309</Id>\n\t\t\t<Verbose>FOOD
1419
- CITY 35 AVE/GLENDALE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3514
1420
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538502</Latitude>\n\t\t\t<Longitude>-112.134689</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1421
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7309</Id>\n\t\t\t<Verbose>FOOD
1422
- CITY 35 AVE/GLENDALE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3514
1423
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538502</Latitude>\n\t\t\t<Longitude>-112.134689</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1424
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7309</Id>\n\t\t\t<Verbose>FOOD
1425
- CITY 35 AVE/GLENDALE</Verbose>\n\t\t\t<Soundex>F323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3514
1426
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538502</Latitude>\n\t\t\t<Longitude>-112.134689</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
1427
899
  REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5269</Id>\n\t\t\t<Verbose>FOOTHILLS
1428
900
  PARK</Verbose>\n\t\t\t<Soundex>F342</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>N
1429
901
  57TH AVE &amp; W UNION HILLS DR</Location>\n\t\t\t<Latitude>33.654333</Latitude>\n\t\t\t<Longitude>-112.182738</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7956</Id>\n\t\t\t<Verbose>FOOTHILLS
1430
902
  RECREATION AND AQUATICS CENTER</Verbose>\n\t\t\t<Soundex>F342</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5600
1431
903
  W UNION HILLS DR</Location>\n\t\t\t<Latitude>33.654454</Latitude>\n\t\t\t<Longitude>-112.180066</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
1432
904
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1433
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7956</Id>\n\t\t\t<Verbose>FOOTHILLS
1434
- RECREATION AND AQUATICS CENTER</Verbose>\n\t\t\t<Soundex>F342</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5600
1435
- W UNION HILLS DR</Location>\n\t\t\t<Latitude>33.654454</Latitude>\n\t\t\t<Longitude>-112.180066</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
1436
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1437
905
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6927</Id>\n\t\t\t<Verbose>FOUNTAIN
1438
906
  HILLS BRANCH LIBRARY</Verbose>\n\t\t\t<Soundex>F535</Soundex>\n\t\t\t<Area>FH</Area>\n\t\t\t<Areacode>Fountain
1439
907
  Hills</Areacode>\n\t\t\t<Location>16836 E PALISADES BLVD</Location>\n\t\t\t<Latitude>33.607615</Latitude>\n\t\t\t<Longitude>-111.717008</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85268</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7160</Id>\n\t\t\t<Verbose>FOUNTAIN
1440
908
  HILLS TOWN HALL</Verbose>\n\t\t\t<Soundex>F535</Soundex>\n\t\t\t<Area>FH</Area>\n\t\t\t<Areacode>Fountain
1441
909
  Hills</Areacode>\n\t\t\t<Location>16836 E PALISADES BLVD</Location>\n\t\t\t<Latitude>33.607615</Latitude>\n\t\t\t<Longitude>-111.717008</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1442
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85268</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7160</Id>\n\t\t\t<Verbose>FOUNTAIN
1443
- HILLS TOWN HALL</Verbose>\n\t\t\t<Soundex>F535</Soundex>\n\t\t\t<Area>FH</Area>\n\t\t\t<Areacode>Fountain
1444
- Hills</Areacode>\n\t\t\t<Location>16836 E PALISADES BLVD</Location>\n\t\t\t<Latitude>33.607615</Latitude>\n\t\t\t<Longitude>-111.717008</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1445
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85268</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7160</Id>\n\t\t\t<Verbose>FOUNTAIN
1446
- HILLS TOWN HALL</Verbose>\n\t\t\t<Soundex>F535</Soundex>\n\t\t\t<Area>FH</Area>\n\t\t\t<Areacode>Fountain
1447
- Hills</Areacode>\n\t\t\t<Location>16836 E PALISADES BLVD</Location>\n\t\t\t<Latitude>33.607615</Latitude>\n\t\t\t<Longitude>-111.717008</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1448
910
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85268</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5745</Id>\n\t\t\t<Verbose>FRANK
1449
911
  BORMAN MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>F652</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3637
1450
912
  N 55TH AVE</Location>\n\t\t\t<Latitude>33.489276</Latitude>\n\t\t\t<Longitude>-112.177741</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -1499,9 +961,6 @@ http_interactions:
1499
961
  LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7169</Id>\n\t\t\t<Verbose>FRYS
1500
962
  - 77TH ST/MCDOWELL RD</Verbose>\n\t\t\t<Soundex>F62G</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7770
1501
963
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465786</Latitude>\n\t\t\t<Longitude>-111.913063</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
1502
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85257</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7169</Id>\n\t\t\t<Verbose>FRYS
1503
- - 77TH ST/MCDOWELL RD</Verbose>\n\t\t\t<Soundex>F62G</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7770
1504
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465786</Latitude>\n\t\t\t<Longitude>-111.913063</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
1505
964
  LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85257</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7310</Id>\n\t\t\t<Verbose>FRYS
1506
965
  - 7TH AVE/CAMELBACK RD</Verbose>\n\t\t\t<Soundex>F62G</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>744
1507
966
  W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509343</Latitude>\n\t\t\t<Longitude>-112.082925</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
@@ -1551,9 +1010,6 @@ http_interactions:
1551
1010
  S MCCLINTOCK DR</Location>\n\t\t\t<Latitude>33.372102</Latitude>\n\t\t\t<Longitude>-111.911349</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85283</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5449</Id>\n\t\t\t<Verbose>GATEWAY
1552
1011
  COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>G325</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>108
1553
1012
  N 40TH ST</Location>\n\t\t\t<Latitude>33.449180</Latitude>\n\t\t\t<Longitude>-111.995396</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1554
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5449</Id>\n\t\t\t<Verbose>GATEWAY
1555
- COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>G325</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>108
1556
- N 40TH ST</Location>\n\t\t\t<Latitude>33.449180</Latitude>\n\t\t\t<Longitude>-111.995396</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1557
1013
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5272</Id>\n\t\t\t<Verbose>GATEWAY
1558
1014
  PARK</Verbose>\n\t\t\t<Soundex>G316</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>315
1559
1015
  E MAIN ST</Location>\n\t\t\t<Latitude>33.415075</Latitude>\n\t\t\t<Longitude>-111.823698</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7365</Id>\n\t\t\t<Verbose>GCC</Verbose>\n\t\t\t<Soundex>G000</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6000
@@ -1568,10 +1024,6 @@ http_interactions:
1568
1024
  AND MCDOWELL PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11457)
1569
1025
  # GILBERT MCDOWELL PARK AND RIDE</Location>\n\t\t\t<Latitude>33.466904</Latitude>\n\t\t\t<Longitude>-111.786637</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1570
1026
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1571
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7954</Id>\n\t\t\t<Verbose>GILBERT
1572
- AND MCDOWELL PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11457)
1573
- # GILBERT MCDOWELL PARK AND RIDE</Location>\n\t\t\t<Latitude>33.466904</Latitude>\n\t\t\t<Longitude>-111.786637</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1574
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1575
1027
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6928</Id>\n\t\t\t<Verbose>GILBERT
1576
1028
  CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>119
1577
1029
  N GILBERT RD</Location>\n\t\t\t<Latitude>33.351986</Latitude>\n\t\t\t<Longitude>-111.789626</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
@@ -1589,57 +1041,9 @@ http_interactions:
1589
1041
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85295</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1590
1042
  MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1591
1043
  E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1592
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1593
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1594
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1595
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1596
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1597
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1598
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1599
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1600
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1601
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1602
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1603
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1604
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1605
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1606
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1607
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1608
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1609
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1610
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1611
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1612
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1613
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1614
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1615
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1616
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1617
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1618
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1619
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1620
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1621
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1622
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1623
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1624
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1625
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1626
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1627
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1628
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1629
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1630
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1631
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1632
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1633
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1634
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7293</Id>\n\t\t\t<Verbose>GILBERT
1635
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>50
1636
- E CIVIC CENTER DR</Location>\n\t\t\t<Latitude>33.330842</Latitude>\n\t\t\t<Longitude>-111.788820</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1637
1044
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85296</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5401</Id>\n\t\t\t<Verbose>GILBERT
1638
1045
  PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>N
1639
1046
  OAK ST &amp; W PAGE AVE</Location>\n\t\t\t<Latitude>33.354822</Latitude>\n\t\t\t<Longitude>-111.792538</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1640
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85233</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5401</Id>\n\t\t\t<Verbose>GILBERT
1641
- PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G416</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>N
1642
- OAK ST &amp; W PAGE AVE</Location>\n\t\t\t<Latitude>33.354822</Latitude>\n\t\t\t<Longitude>-111.792538</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1643
1047
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85233</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7559</Id>\n\t\t\t<Verbose>GILILLAND
1644
1048
  MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>G445</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1025
1645
1049
  S BECK AVE</Location>\n\t\t\t<Latitude>33.418051</Latitude>\n\t\t\t<Longitude>-111.956468</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -1660,21 +1064,12 @@ http_interactions:
1660
1064
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7566</Id>\n\t\t\t<Verbose>GLENDALE
1661
1065
  AVE AND LOOP 101 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7111
1662
1066
  N 99TH AVE</Location>\n\t\t\t<Latitude>33.538582</Latitude>\n\t\t\t<Longitude>-112.272027</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1663
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7566</Id>\n\t\t\t<Verbose>GLENDALE
1664
- AVE AND LOOP 101 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7111
1665
- N 99TH AVE</Location>\n\t\t\t<Latitude>33.538582</Latitude>\n\t\t\t<Longitude>-112.272027</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1666
1067
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6932</Id>\n\t\t\t<Verbose>GLENDALE
1667
1068
  CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7105
1668
1069
  N 59TH AVE</Location>\n\t\t\t<Latitude>33.539812</Latitude>\n\t\t\t<Longitude>-112.186185</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
1669
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6932</Id>\n\t\t\t<Verbose>GLENDALE
1670
- CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7105
1671
- N 59TH AVE</Location>\n\t\t\t<Latitude>33.539812</Latitude>\n\t\t\t<Longitude>-112.186185</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
1672
1070
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5054</Id>\n\t\t\t<Verbose>GLENDALE
1673
1071
  CITY COURT</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5711
1674
1072
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.181767</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
1675
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5054</Id>\n\t\t\t<Verbose>GLENDALE
1676
- CITY COURT</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5711
1677
- W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538551</Latitude>\n\t\t\t<Longitude>-112.181767</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
1678
1073
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7409</Id>\n\t\t\t<Verbose>GLENDALE
1679
1074
  CITY HALL</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5850
1680
1075
  W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538560</Latitude>\n\t\t\t<Longitude>-112.185409</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
@@ -1684,9 +1079,6 @@ http_interactions:
1684
1079
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6935</Id>\n\t\t\t<Verbose>GLENDALE
1685
1080
  COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6000
1686
1081
  W OLIVE AVE</Location>\n\t\t\t<Latitude>33.567423</Latitude>\n\t\t\t<Longitude>-112.188274</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1687
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6935</Id>\n\t\t\t<Verbose>GLENDALE
1688
- COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6000
1689
- W OLIVE AVE</Location>\n\t\t\t<Latitude>33.567423</Latitude>\n\t\t\t<Longitude>-112.188274</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
1690
1082
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7573</Id>\n\t\t\t<Verbose>GLENDALE
1691
1083
  COMMUNITY COLLEGE NORTH</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5727
1692
1084
  W HAPPY VALLEY RD</Location>\n\t\t\t<Latitude>33.712213</Latitude>\n\t\t\t<Longitude>-112.183046</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -1706,44 +1098,38 @@ http_interactions:
1706
1098
  N 99TH AVE</Location>\n\t\t\t<Latitude>33.538582</Latitude>\n\t\t\t<Longitude>-112.272027</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1707
1099
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6942</Id>\n\t\t\t<Verbose>GLENDALE
1708
1100
  PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5959
1709
- W BROWN ST</Location>\n\t\t\t<Latitude>33.578277</Latitude>\n\t\t\t<Longitude>-112.187176</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85302</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6942</Id>\n\t\t\t<Verbose>GLENDALE
1710
- PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5959
1711
1101
  W BROWN ST</Location>\n\t\t\t<Latitude>33.578277</Latitude>\n\t\t\t<Longitude>-112.187176</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85302</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6936</Id>\n\t\t\t<Verbose>GLENDALE
1712
1102
  PUBLIC LIBRARY FOOTHILLS BRANCH</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>19055
1713
- N 57TH AVE</Location>\n\t\t\t<Latitude>33.661707</Latitude>\n\t\t\t<Longitude>-112.180579</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6936</Id>\n\t\t\t<Verbose>GLENDALE
1714
- PUBLIC LIBRARY FOOTHILLS BRANCH</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>19055
1715
1103
  N 57TH AVE</Location>\n\t\t\t<Latitude>33.661707</Latitude>\n\t\t\t<Longitude>-112.180579</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6934</Id>\n\t\t\t<Verbose>GLENDALE
1716
1104
  PUBLIC LIBRARY VELMA TEAGUE BRA</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7010
1717
- N 58TH AVE</Location>\n\t\t\t<Latitude>33.538645</Latitude>\n\t\t\t<Longitude>-112.183721</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6934</Id>\n\t\t\t<Verbose>GLENDALE
1718
- PUBLIC LIBRARY VELMA TEAGUE BRA</Verbose>\n\t\t\t<Soundex>G453</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7010
1719
1105
  N 58TH AVE</Location>\n\t\t\t<Latitude>33.538645</Latitude>\n\t\t\t<Longitude>-112.183721</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7240</Id>\n\t\t\t<Verbose>GOLFLAND
1720
1106
  - SUNSPLASH</Verbose>\n\t\t\t<Soundex>G414</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>155
1721
1107
  W HAMPTON AVE</Location>\n\t\t\t<Latitude>33.387848</Latitude>\n\t\t\t<Longitude>-111.835746</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
1722
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7240</Id>\n\t\t\t<Verbose>GOLFLAND
1723
- - SUNSPLASH</Verbose>\n\t\t\t<Soundex>G414</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>155
1724
- W HAMPTON AVE</Location>\n\t\t\t<Latitude>33.387848</Latitude>\n\t\t\t<Longitude>-111.835746</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
1725
1108
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7463</Id>\n\t\t\t<Verbose>GOODWILL/16TH
1726
1109
  STREET AND VAN BUREN</Verbose>\n\t\t\t<Soundex>G34A</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>417
1727
1110
  N 16TH ST</Location>\n\t\t\t<Latitude>33.453170</Latitude>\n\t\t\t<Longitude>-112.047701</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1728
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7464</Id>\n\t\t\t<Verbose>GOODWILL/19TH
1111
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7464</Id>\n\t\t\t<Verbose>GOODWILL/19TH
1729
1112
  AVENUE AND THUNDERBIRD</Verbose>\n\t\t\t<Soundex>G34A</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1911
1730
1113
  W THUNDERBIRD RD</Location>\n\t\t\t<Latitude>33.611062</Latitude>\n\t\t\t<Longitude>-112.099969</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1731
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7465</Id>\n\t\t\t<Verbose>GOODWILL/75TH
1114
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7465</Id>\n\t\t\t<Verbose>GOODWILL/75TH
1732
1115
  AVENUE AND INDIAN SCHOOL</Verbose>\n\t\t\t<Soundex>G34G</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7445
1733
1116
  W INDIAN SCHOOL RD</Location>\n\t\t\t<Latitude>33.494680</Latitude>\n\t\t\t<Longitude>-112.219361</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1734
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85033</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7466</Id>\n\t\t\t<Verbose>GOODWILL/85TH
1117
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85033</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7466</Id>\n\t\t\t<Verbose>GOODWILL/85TH
1735
1118
  AVENUE AND GRAND</Verbose>\n\t\t\t<Soundex>G34H</Soundex>\n\t\t\t<Area>PE</Area>\n\t\t\t<Areacode>Peoria</Areacode>\n\t\t\t<Location>8515
1736
1119
  W GRAND AVE</Location>\n\t\t\t<Latitude>33.584514</Latitude>\n\t\t\t<Longitude>-112.241216</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1737
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7467</Id>\n\t\t\t<Verbose>GOODWILL/ALMA
1120
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7467</Id>\n\t\t\t<Verbose>GOODWILL/ALMA
1738
1121
  SCHOOL AND SOUTHERN</Verbose>\n\t\t\t<Soundex>G344</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1346
1739
1122
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.393073</Latitude>\n\t\t\t<Longitude>-111.860654</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1740
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7468</Id>\n\t\t\t<Verbose>GOODWILL/DYSART
1123
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7468</Id>\n\t\t\t<Verbose>GOODWILL/DYSART
1741
1124
  AND VAN BUREN</Verbose>\n\t\t\t<Soundex>G343</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>1450
1742
1125
  N DYSART RD</Location>\n\t\t\t<Latitude>33.448657</Latitude>\n\t\t\t<Longitude>-112.341075</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1743
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7469</Id>\n\t\t\t<Verbose>GOODWILL/STAPLEY
1126
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7469</Id>\n\t\t\t<Verbose>GOODWILL/STAPLEY
1744
1127
  AND MAIN</Verbose>\n\t\t\t<Soundex>G342</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1328
1745
1128
  E MAIN ST</Location>\n\t\t\t<Latitude>33.415212</Latitude>\n\t\t\t<Longitude>-111.802967</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
1746
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85203</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7410</Id>\n\t\t\t<Verbose>GOODYEAR
1129
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85203</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7986</Id>\n\t\t\t<Verbose>GOODYEAR
1130
+ BALLPARK</Verbose>\n\t\t\t<Soundex>G361</Soundex>\n\t\t\t<Area>GO</Area>\n\t\t\t<Areacode>Goodyear</Areacode>\n\t\t\t<Location>S
1131
+ ESTRELLA PKWY &amp; W GOODYEAR BLVD S</Location>\n\t\t\t<Latitude>33.430426</Latitude>\n\t\t\t<Longitude>-112.391996</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
1132
+ VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7410</Id>\n\t\t\t<Verbose>GOODYEAR
1747
1133
  CITY HALL</Verbose>\n\t\t\t<Soundex>G362</Soundex>\n\t\t\t<Area>GO</Area>\n\t\t\t<Areacode>Goodyear</Areacode>\n\t\t\t<Location>190
1748
1134
  N LITCHFIELD RD</Location>\n\t\t\t<Latitude>33.447621</Latitude>\n\t\t\t<Longitude>-112.358271</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
1749
1135
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85338</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7978</Id>\n\t\t\t<Verbose>GOODYEAR
@@ -1752,18 +1138,12 @@ http_interactions:
1752
1138
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7589</Id>\n\t\t\t<Verbose>GOODYEAR
1753
1139
  PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G361</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>13183
1754
1140
  W CORNERSTONE BLVD</Location>\n\t\t\t<Latitude>33.460407</Latitude>\n\t\t\t<Longitude>-112.343085</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1755
- AND RIDE</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85395</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7589</Id>\n\t\t\t<Verbose>GOODYEAR
1756
- PARK AND RIDE</Verbose>\n\t\t\t<Soundex>G361</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>13183
1757
- W CORNERSTONE BLVD</Location>\n\t\t\t<Latitude>33.460407</Latitude>\n\t\t\t<Longitude>-112.343085</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1758
1141
  AND RIDE</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85395</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5402</Id>\n\t\t\t<Verbose>GRACE
1759
1142
  COMMUNITY CHURCH</Verbose>\n\t\t\t<Soundex>G622</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1200
1760
1143
  E SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.393018</Latitude>\n\t\t\t<Longitude>-111.918141</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1761
1144
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7470</Id>\n\t\t\t<Verbose>GRADY
1762
1145
  GAMMAGE AUDITORIUM</Verbose>\n\t\t\t<Soundex>G632</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1200
1763
1146
  S FOREST AVE</Location>\n\t\t\t<Latitude>33.415683</Latitude>\n\t\t\t<Longitude>-111.936642</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
1764
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7470</Id>\n\t\t\t<Verbose>GRADY
1765
- GAMMAGE AUDITORIUM</Verbose>\n\t\t\t<Soundex>G632</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1200
1766
- S FOREST AVE</Location>\n\t\t\t<Latitude>33.415683</Latitude>\n\t\t\t<Longitude>-111.936642</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
1767
1147
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5747</Id>\n\t\t\t<Verbose>GRANADA
1768
1148
  EAST SCHOOL</Verbose>\n\t\t\t<Soundex>G653</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3022
1769
1149
  W CAMPBELL AVE</Location>\n\t\t\t<Latitude>33.502218</Latitude>\n\t\t\t<Longitude>-112.123943</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -1824,23 +1204,15 @@ http_interactions:
1824
1204
  E BELL RD</Location>\n\t\t\t<Latitude>33.640333</Latitude>\n\t\t\t<Longitude>-111.941035</Longitude>\n\t\t\t<Type>CEM</Type>\n\t\t\t<Typedescription>CEMETARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85254</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7899</Id>\n\t\t\t<Verbose>HAPPY
1825
1205
  VALLEY RD I-17 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>H114</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>24725
1826
1206
  N 29TH AVE</Location>\n\t\t\t<Latitude>33.710339</Latitude>\n\t\t\t<Longitude>-112.118607</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1827
- AND RIDE</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85085</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7899</Id>\n\t\t\t<Verbose>HAPPY
1828
- VALLEY RD I-17 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>H114</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>24725
1829
- N 29TH AVE</Location>\n\t\t\t<Latitude>33.710339</Latitude>\n\t\t\t<Longitude>-112.118607</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1830
1207
  AND RIDE</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85085</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5276</Id>\n\t\t\t<Verbose>HAYDEN
1831
1208
  PARK</Verbose>\n\t\t\t<Soundex>H351</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>322
1832
1209
  W TAMARISK ST</Location>\n\t\t\t<Latitude>33.403980</Latitude>\n\t\t\t<Longitude>-112.076905</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5191</Id>\n\t\t\t<Verbose>HEARD
1833
1210
  MUSEUM</Verbose>\n\t\t\t<Soundex>H635</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2301
1834
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.473530</Latitude>\n\t\t\t<Longitude>-112.073809</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5191</Id>\n\t\t\t<Verbose>HEARD
1835
- MUSEUM</Verbose>\n\t\t\t<Soundex>H635</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2301
1836
1211
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.473530</Latitude>\n\t\t\t<Longitude>-112.073809</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5279</Id>\n\t\t\t<Verbose>HERBERGER
1837
1212
  PARK</Verbose>\n\t\t\t<Soundex>H616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>301
1838
1213
  W DUNLAP AVE</Location>\n\t\t\t<Latitude>33.567637</Latitude>\n\t\t\t<Longitude>-112.077992</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85021</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7380</Id>\n\t\t\t<Verbose>HERBERGER
1839
1214
  THEATRE CENTER</Verbose>\n\t\t\t<Soundex>H616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>222
1840
1215
  E MONROE ST</Location>\n\t\t\t<Latitude>33.450364</Latitude>\n\t\t\t<Longitude>-112.070972</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
1841
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7380</Id>\n\t\t\t<Verbose>HERBERGER
1842
- THEATRE CENTER</Verbose>\n\t\t\t<Soundex>H616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>222
1843
- E MONROE ST</Location>\n\t\t\t<Latitude>33.450364</Latitude>\n\t\t\t<Longitude>-112.070972</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
1844
1216
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5281</Id>\n\t\t\t<Verbose>HERITAGE
1845
1217
  PARK</Verbose>\n\t\t\t<Soundex>H632</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1501
1846
1218
  S PIMA</Location>\n\t\t\t<Latitude>33.385518</Latitude>\n\t\t\t<Longitude>-111.822936</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7472</Id>\n\t\t\t<Verbose>HERITAGE
@@ -1861,10 +1233,6 @@ http_interactions:
1861
1233
  DEPOT TEMPORARY PARK AND RIDE</Verbose>\n\t\t\t<Soundex>H531</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>(11820)
1862
1234
  # WB W BEHREND DR FS N 61ST DR</Location>\n\t\t\t<Latitude>33.665744</Latitude>\n\t\t\t<Longitude>-112.190758</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1863
1235
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1864
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7983</Id>\n\t\t\t<Verbose>HOME
1865
- DEPOT TEMPORARY PARK AND RIDE</Verbose>\n\t\t\t<Soundex>H531</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>(11820)
1866
- # WB W BEHREND DR FS N 61ST DR</Location>\n\t\t\t<Latitude>33.665744</Latitude>\n\t\t\t<Longitude>-112.190758</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
1867
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1868
1236
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7381</Id>\n\t\t\t<Verbose>HONEYWELL</Verbose>\n\t\t\t<Soundex>H540</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>19019
1869
1237
  N 59TH AVE</Location>\n\t\t\t<Latitude>33.657167</Latitude>\n\t\t\t<Longitude>-112.182670</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
1870
1238
  BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85308</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7659</Id>\n\t\t\t<Verbose>HORIZON
@@ -1888,9 +1256,6 @@ http_interactions:
1888
1256
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85303</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7925</Id>\n\t\t\t<Verbose>INDIAN
1889
1257
  SCHOOL CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>I535</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10874)
1890
1258
  # INDIAN SCHOOL/CENTRAL LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.496236</Latitude>\n\t\t\t<Longitude>-112.073829</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1891
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7925</Id>\n\t\t\t<Verbose>INDIAN
1892
- SCHOOL CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>I535</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10874)
1893
- # INDIAN SCHOOL/CENTRAL LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.496236</Latitude>\n\t\t\t<Longitude>-112.073829</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1894
1259
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5287</Id>\n\t\t\t<Verbose>INDIAN
1895
1260
  SCHOOL PARK</Verbose>\n\t\t\t<Soundex>I535</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>4289
1896
1261
  N HAYDEN RD</Location>\n\t\t\t<Latitude>33.499355</Latitude>\n\t\t\t<Longitude>-111.909528</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7272</Id>\n\t\t\t<Verbose>INTEL</Verbose>\n\t\t\t<Soundex>I534</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>5000
@@ -1910,9 +1275,6 @@ http_interactions:
1910
1275
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7911</Id>\n\t\t\t<Verbose>IRISH
1911
1276
  CULTURAL CENTER</Verbose>\n\t\t\t<Soundex>I622</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1106
1912
1277
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.460761</Latitude>\n\t\t\t<Longitude>-112.073934</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
1913
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7911</Id>\n\t\t\t<Verbose>IRISH
1914
- CULTURAL CENTER</Verbose>\n\t\t\t<Soundex>I622</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1106
1915
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.460761</Latitude>\n\t\t\t<Longitude>-112.073934</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
1916
1278
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7652</Id>\n\t\t\t<Verbose>IRONWOOD
1917
1279
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>I653</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6051
1918
1280
  W SWEETWATER AVE</Location>\n\t\t\t<Latitude>33.603285</Latitude>\n\t\t\t<Longitude>-112.189888</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -1923,17 +1285,11 @@ http_interactions:
1923
1285
  INDIAN SCHOOL RD &amp; N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.494825</Latitude>\n\t\t\t<Longitude>-112.073788</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7477</Id>\n\t\t\t<Verbose>JAPANESE
1924
1286
  FRIENDSHIP GARDEN</Verbose>\n\t\t\t<Soundex>J152</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1125
1925
1287
  N 3RD AVE</Location>\n\t\t\t<Latitude>33.460284</Latitude>\n\t\t\t<Longitude>-112.077786</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
1926
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7477</Id>\n\t\t\t<Verbose>JAPANESE
1927
- FRIENDSHIP GARDEN</Verbose>\n\t\t\t<Soundex>J152</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1125
1928
- N 3RD AVE</Location>\n\t\t\t<Latitude>33.460284</Latitude>\n\t\t\t<Longitude>-112.077786</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
1929
1288
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7426</Id>\n\t\t\t<Verbose>JAYCEE
1930
1289
  PARK</Verbose>\n\t\t\t<Soundex>J216</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>817
1931
1290
  W 5TH ST</Location>\n\t\t\t<Latitude>33.425510</Latitude>\n\t\t\t<Longitude>-111.950479</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7932</Id>\n\t\t\t<Verbose>JEFFERSON
1932
1291
  1ST AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>J162</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10891)
1933
1292
  # JEFFERSON STREET/1ST AVE LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448188</Latitude>\n\t\t\t<Longitude>-112.075198</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1934
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7932</Id>\n\t\t\t<Verbose>JEFFERSON
1935
- 1ST AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>J162</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10891)
1936
- # JEFFERSON STREET/1ST AVE LIGHT RAIL STN</Location>\n\t\t\t<Latitude>33.448188</Latitude>\n\t\t\t<Longitude>-112.075198</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
1937
1293
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5288</Id>\n\t\t\t<Verbose>JEFFERSON
1938
1294
  PARK</Verbose>\n\t\t\t<Soundex>J162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>306
1939
1295
  S JEFFERSON AVE</Location>\n\t\t\t<Latitude>33.409550</Latitude>\n\t\t\t<Longitude>-111.678265</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85208</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5110</Id>\n\t\t\t<Verbose>JESSE
@@ -1943,15 +1299,9 @@ http_interactions:
1943
1299
  JEFFERSON ST &amp; S 1ST AVE</Location>\n\t\t\t<Latitude>33.447147</Latitude>\n\t\t\t<Longitude>-112.075113</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7325</Id>\n\t\t\t<Verbose>JOHN
1944
1300
  C LINCOLN HOSPITAL/DEER VALLEY</Verbose>\n\t\t\t<Soundex>J524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>19829
1945
1301
  N 27TH AVE</Location>\n\t\t\t<Latitude>33.665596</Latitude>\n\t\t\t<Longitude>-112.117095</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
1946
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7325</Id>\n\t\t\t<Verbose>JOHN
1947
- C LINCOLN HOSPITAL/DEER VALLEY</Verbose>\n\t\t\t<Soundex>J524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>19829
1948
- N 27TH AVE</Location>\n\t\t\t<Latitude>33.665596</Latitude>\n\t\t\t<Longitude>-112.117095</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
1949
1302
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5111</Id>\n\t\t\t<Verbose>JOHN
1950
1303
  C LINCOLN HOSPITAL/NORTH MOUNTAIN</Verbose>\n\t\t\t<Soundex>J524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>250
1951
1304
  E DUNLAP AVE</Location>\n\t\t\t<Latitude>33.569221</Latitude>\n\t\t\t<Longitude>-112.069572</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
1952
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5111</Id>\n\t\t\t<Verbose>JOHN
1953
- C LINCOLN HOSPITAL/NORTH MOUNTAIN</Verbose>\n\t\t\t<Soundex>J524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>250
1954
- E DUNLAP AVE</Location>\n\t\t\t<Latitude>33.569221</Latitude>\n\t\t\t<Longitude>-112.069572</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
1955
1305
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7482</Id>\n\t\t\t<Verbose>JUSTICE
1956
1306
  COURT/12TH STREET AND INDIAN SCH</Verbose>\n\t\t\t<Soundex>J232</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4109
1957
1307
  N 12TH ST</Location>\n\t\t\t<Latitude>33.494888</Latitude>\n\t\t\t<Longitude>-112.056338</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
@@ -1991,9 +1341,6 @@ http_interactions:
1991
1341
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7982</Id>\n\t\t\t<Verbose>JUSTICE
1992
1342
  COURT/YUMA AND DEAN</Verbose>\n\t\t\t<Soundex>J232</Soundex>\n\t\t\t<Area>BU</Area>\n\t\t\t<Areacode>Buckeye</Areacode>\n\t\t\t<Location>(12152)
1993
1343
  # TEMPORARY STOP YUMA &amp; DEAN RD.</Location>\n\t\t\t<Latitude>33.435578</Latitude>\n\t\t\t<Longitude>-112.515816</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
1994
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7982</Id>\n\t\t\t<Verbose>JUSTICE
1995
- COURT/YUMA AND DEAN</Verbose>\n\t\t\t<Soundex>J232</Soundex>\n\t\t\t<Area>BU</Area>\n\t\t\t<Areacode>Buckeye</Areacode>\n\t\t\t<Location>(12152)
1996
- # TEMPORARY STOP YUMA &amp; DEAN RD.</Location>\n\t\t\t<Latitude>33.435578</Latitude>\n\t\t\t<Longitude>-112.515816</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
1997
1344
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7329</Id>\n\t\t\t<Verbose>JUVENILE
1998
1345
  COURT CENTER/DURANGO</Verbose>\n\t\t\t<Soundex>J154</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3131
1999
1346
  WEST DURANGO</Location>\n\t\t\t<Latitude>33.427286</Latitude>\n\t\t\t<Longitude>-112.127345</Longitude>\n\t\t\t<Type>JAIL</Type>\n\t\t\t<Typedescription>JAILS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7330</Id>\n\t\t\t<Verbose>JUVENILE
@@ -2010,10 +1357,6 @@ http_interactions:
2010
1357
  HEALTH CENTER</Verbose>\n\t\t\t<Soundex>K532</Soundex>\n\t\t\t<Area> </Area>\n\t\t\t<Areacode>
2011
1358
  </Areacode>\n\t\t\t<Location>(11785) # KOMATKE HEALTH CENTER</Location>\n\t\t\t<Latitude>33.287943</Latitude>\n\t\t\t<Longitude>-112.156179</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2012
1359
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2013
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7971</Id>\n\t\t\t<Verbose>KOMATKE
2014
- HEALTH CENTER</Verbose>\n\t\t\t<Soundex>K532</Soundex>\n\t\t\t<Area> </Area>\n\t\t\t<Areacode>
2015
- </Areacode>\n\t\t\t<Location>(11785) # KOMATKE HEALTH CENTER</Location>\n\t\t\t<Latitude>33.287943</Latitude>\n\t\t\t<Longitude>-112.156179</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2016
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2017
1360
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7972</Id>\n\t\t\t<Verbose>KOMATKE
2018
1361
  HEALTH CENTER DIALYSIS CLINIC</Verbose>\n\t\t\t<Soundex>K532</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
2019
1362
  County</Areacode>\n\t\t\t<Location>(11857) # DIALYSIS CLINIC</Location>\n\t\t\t<Latitude>33.289814</Latitude>\n\t\t\t<Longitude>-112.155148</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
@@ -2026,9 +1369,6 @@ http_interactions:
2026
1369
  39TH AVE &amp; W GLENDALE AVE</Location>\n\t\t\t<Latitude>33.538469</Latitude>\n\t\t\t<Longitude>-112.142895</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7915</Id>\n\t\t\t<Verbose>LE
2027
1370
  CORDON BLEU COLLEGE OF CULINARY ARTS</Verbose>\n\t\t\t<Soundex>L263</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>8100
2028
1371
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.502125</Latitude>\n\t\t\t<Longitude>-111.905592</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2029
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7915</Id>\n\t\t\t<Verbose>LE
2030
- CORDON BLEU COLLEGE OF CULINARY ARTS</Verbose>\n\t\t\t<Soundex>L263</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>8100
2031
- E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.502125</Latitude>\n\t\t\t<Longitude>-111.905592</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2032
1372
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7411</Id>\n\t\t\t<Verbose>LITCHFIELD
2033
1373
  PARK CITY HALL</Verbose>\n\t\t\t<Soundex>L321</Soundex>\n\t\t\t<Area>LP</Area>\n\t\t\t<Areacode>Litchfield
2034
1374
  Park</Areacode>\n\t\t\t<Location>214 W WIGWAM BLVD</Location>\n\t\t\t<Latitude>33.493340</Latitude>\n\t\t\t<Longitude>-112.359784</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
@@ -2038,9 +1378,6 @@ http_interactions:
2038
1378
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85340</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7421</Id>\n\t\t\t<Verbose>LODESTAR
2039
1379
  DAY RESOURCE CENTER</Verbose>\n\t\t\t<Soundex>L323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1125
2040
1380
  W JACKSON ST</Location>\n\t\t\t<Latitude>33.445097</Latitude>\n\t\t\t<Longitude>-112.087291</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2041
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7421</Id>\n\t\t\t<Verbose>LODESTAR
2042
- DAY RESOURCE CENTER</Verbose>\n\t\t\t<Soundex>L323</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1125
2043
- W JACKSON ST</Location>\n\t\t\t<Latitude>33.445097</Latitude>\n\t\t\t<Longitude>-112.087291</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2044
1381
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7876</Id>\n\t\t\t<Verbose>LONE
2045
1382
  BUTTE CASINO</Verbose>\n\t\t\t<Soundex>L513</Soundex>\n\t\t\t<Area> </Area>\n\t\t\t<Areacode>
2046
1383
  </Areacode>\n\t\t\t<Location>(11334) # GILA RIVER LONE BUTTE CASINO</Location>\n\t\t\t<Latitude>33.289072</Latitude>\n\t\t\t<Longitude>-111.942204</Longitude>\n\t\t\t<Type>CAS</Type>\n\t\t\t<Typedescription>CASINO</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
@@ -2082,18 +1419,9 @@ http_interactions:
2082
1419
  S AVENIDA DEL YAQUI</Location>\n\t\t\t<Latitude>33.359982</Latitude>\n\t\t\t<Longitude>-111.963203</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85283</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5114</Id>\n\t\t\t<Verbose>MARICOPA
2083
1420
  COUNTY MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>M621</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2601
2084
1421
  E. ROOSEVELT</Location>\n\t\t\t<Latitude>33.458571</Latitude>\n\t\t\t<Longitude>-112.025910</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2085
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5114</Id>\n\t\t\t<Verbose>MARICOPA
2086
- COUNTY MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>M621</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2601
2087
- E. ROOSEVELT</Location>\n\t\t\t<Latitude>33.458571</Latitude>\n\t\t\t<Longitude>-112.025910</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2088
1422
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6989</Id>\n\t\t\t<Verbose>MARICOPA
2089
1423
  SKILL CENTER/PHOENIX</Verbose>\n\t\t\t<Soundex>M621</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1245
2090
1424
  E BUCKEYE RD</Location>\n\t\t\t<Latitude>33.436816</Latitude>\n\t\t\t<Longitude>-112.055535</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2091
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6989</Id>\n\t\t\t<Verbose>MARICOPA
2092
- SKILL CENTER/PHOENIX</Verbose>\n\t\t\t<Soundex>M621</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1245
2093
- E BUCKEYE RD</Location>\n\t\t\t<Latitude>33.436816</Latitude>\n\t\t\t<Longitude>-112.055535</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2094
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7535</Id>\n\t\t\t<Verbose>MARICOPA
2095
- SKILL CENTER/SOUTHWEST CAMPUS</Verbose>\n\t\t\t<Soundex>M621</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>3000
2096
- N DYSART RD</Location>\n\t\t\t<Latitude>33.480159</Latitude>\n\t\t\t<Longitude>-112.345120</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2097
1425
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7535</Id>\n\t\t\t<Verbose>MARICOPA
2098
1426
  SKILL CENTER/SOUTHWEST CAMPUS</Verbose>\n\t\t\t<Soundex>M621</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>3000
2099
1427
  N DYSART RD</Location>\n\t\t\t<Latitude>33.480159</Latitude>\n\t\t\t<Longitude>-112.345120</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2104,17 +1432,11 @@ http_interactions:
2104
1432
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7429</Id>\n\t\t\t<Verbose>MARQUEE
2105
1433
  THEATRE</Verbose>\n\t\t\t<Soundex>M623</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>730
2106
1434
  N MILL AVE</Location>\n\t\t\t<Latitude>33.437592</Latitude>\n\t\t\t<Longitude>-111.943303</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2107
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7429</Id>\n\t\t\t<Verbose>MARQUEE
2108
- THEATRE</Verbose>\n\t\t\t<Soundex>M623</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>730
2109
- N MILL AVE</Location>\n\t\t\t<Latitude>33.437592</Latitude>\n\t\t\t<Longitude>-111.943303</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2110
1435
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5192</Id>\n\t\t\t<Verbose>MARS
2111
1436
  ARTSPACE</Verbose>\n\t\t\t<Soundex>M626</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>126
2112
1437
  S CENTRAL AVE</Location>\n\t\t\t<Latitude>33.446602</Latitude>\n\t\t\t<Longitude>-112.073810</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5771</Id>\n\t\t\t<Verbose>MARYVALE
2113
1438
  BASEBALL PARK</Verbose>\n\t\t\t<Soundex>M614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3600
2114
1439
  N 51ST AVE</Location>\n\t\t\t<Latitude>33.489303</Latitude>\n\t\t\t<Longitude>-112.168931</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
2115
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5771</Id>\n\t\t\t<Verbose>MARYVALE
2116
- BASEBALL PARK</Verbose>\n\t\t\t<Soundex>M614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3600
2117
- N 51ST AVE</Location>\n\t\t\t<Latitude>33.489303</Latitude>\n\t\t\t<Longitude>-112.168931</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
2118
1440
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7495</Id>\n\t\t\t<Verbose>MARYVALE
2119
1441
  COMMUNITY CENTER</Verbose>\n\t\t\t<Soundex>M614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4420
2120
1442
  N 51ST AVE</Location>\n\t\t\t<Latitude>33.500760</Latitude>\n\t\t\t<Longitude>-112.168857</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -2124,9 +1446,6 @@ http_interactions:
2124
1446
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5115</Id>\n\t\t\t<Verbose>MARYVALE
2125
1447
  HOSPITAL AND MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>M614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5102
2126
1448
  W. CAMPBELL</Location>\n\t\t\t<Latitude>33.502183</Latitude>\n\t\t\t<Longitude>-112.168883</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2127
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5115</Id>\n\t\t\t<Verbose>MARYVALE
2128
- HOSPITAL AND MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>M614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5102
2129
- W. CAMPBELL</Location>\n\t\t\t<Latitude>33.502183</Latitude>\n\t\t\t<Longitude>-112.168883</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2130
1449
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5082</Id>\n\t\t\t<Verbose>MARYVALE
2131
1450
  MUNICIPAL GOLF COURSE</Verbose>\n\t\t\t<Soundex>M614</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5902
2132
1451
  W INDIAN SCHOOL RD</Location>\n\t\t\t<Latitude>33.495047</Latitude>\n\t\t\t<Longitude>-112.186475</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85033</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5296</Id>\n\t\t\t<Verbose>MARYVALE
@@ -2137,24 +1456,15 @@ http_interactions:
2137
1456
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7212</Id>\n\t\t\t<Verbose>MAYO
2138
1457
  CLINIC</Verbose>\n\t\t\t<Soundex>M245</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>13400
2139
1458
  E SHEA BLVD</Location>\n\t\t\t<Latitude>33.585262</Latitude>\n\t\t\t<Longitude>-111.793086</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2140
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7212</Id>\n\t\t\t<Verbose>MAYO
2141
- CLINIC</Verbose>\n\t\t\t<Soundex>M245</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>13400
2142
- E SHEA BLVD</Location>\n\t\t\t<Latitude>33.585262</Latitude>\n\t\t\t<Longitude>-111.793086</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2143
1459
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5116</Id>\n\t\t\t<Verbose>MAYO
2144
1460
  HOSPITAL PHOENIX</Verbose>\n\t\t\t<Soundex>M213</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11416)
2145
1461
  # MAYO HOSPITAL WEST ENTRANCE</Location>\n\t\t\t<Latitude>33.659299</Latitude>\n\t\t\t<Longitude>-111.958533</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2146
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85054</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5116</Id>\n\t\t\t<Verbose>MAYO
2147
- HOSPITAL PHOENIX</Verbose>\n\t\t\t<Soundex>M213</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11416)
2148
- # MAYO HOSPITAL WEST ENTRANCE</Location>\n\t\t\t<Latitude>33.659299</Latitude>\n\t\t\t<Longitude>-111.958533</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2149
1462
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85054</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7623</Id>\n\t\t\t<Verbose>MCAP</Verbose>\n\t\t\t<Soundex>M210</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>E
2150
1463
  APACHE BLVD &amp; S MCCLINTOCK DR</Location>\n\t\t\t<Latitude>33.414765</Latitude>\n\t\t\t<Longitude>-111.909078</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7364</Id>\n\t\t\t<Verbose>MCC</Verbose>\n\t\t\t<Soundex>M200</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1833
2151
1464
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.389689</Latitude>\n\t\t\t<Longitude>-111.874630</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2152
1465
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7943</Id>\n\t\t\t<Verbose>MCCLINTOCK
2153
1466
  APACHE BLVD LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M245</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10887)
2154
1467
  # MCCLINTOCK DR/APACHE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414688</Latitude>\n\t\t\t<Longitude>-111.908882</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2155
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7943</Id>\n\t\t\t<Verbose>MCCLINTOCK
2156
- APACHE BLVD LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M245</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10887)
2157
- # MCCLINTOCK DR/APACHE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414688</Latitude>\n\t\t\t<Longitude>-111.908882</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2158
1468
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5675</Id>\n\t\t\t<Verbose>MCCLINTOCK
2159
1469
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>M245</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(11096)
2160
1470
  # TEMP STOP MCCLINTOCK HIGH SCHOOL</Location>\n\t\t\t<Latitude>33.396581</Latitude>\n\t\t\t<Longitude>-111.906962</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2163,9 +1473,6 @@ http_interactions:
2163
1473
  E INDIAN BEND RD</Location>\n\t\t\t<Latitude>33.538647</Latitude>\n\t\t\t<Longitude>-111.923072</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7929</Id>\n\t\t\t<Verbose>MCDOWELL
2164
1474
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M234</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10878)
2165
1475
  # MCDOWELL/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.465353</Latitude>\n\t\t\t<Longitude>-112.073878</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2166
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7929</Id>\n\t\t\t<Verbose>MCDOWELL
2167
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M234</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10878)
2168
- # MCDOWELL/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.465353</Latitude>\n\t\t\t<Longitude>-112.073878</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2169
1476
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5752</Id>\n\t\t\t<Verbose>MCKEMY
2170
1477
  MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>M255</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>2250
2171
1478
  S COLLEGE AVE</Location>\n\t\t\t<Latitude>33.405174</Latitude>\n\t\t\t<Longitude>-111.934911</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2174,82 +1481,21 @@ http_interactions:
2174
1481
  GILBERT MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>M622</Soundex>\n\t\t\t<Area>
2175
1482
  </Area>\n\t\t\t<Areacode> </Areacode>\n\t\t\t<Location>(10111) # MERCY GILBERT
2176
1483
  MEDICAL CTR</Location>\n\t\t\t<Latitude>33.287745</Latitude>\n\t\t\t<Longitude>-111.750825</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2177
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85297</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7540</Id>\n\t\t\t<Verbose>MERCY
2178
- GILBERT MEDICAL CENTER</Verbose>\n\t\t\t<Soundex>M622</Soundex>\n\t\t\t<Area>
2179
- </Area>\n\t\t\t<Areacode> </Areacode>\n\t\t\t<Location>(10111) # MERCY GILBERT
2180
- MEDICAL CTR</Location>\n\t\t\t<Latitude>33.287745</Latitude>\n\t\t\t<Longitude>-111.750825</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2181
1484
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85297</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5067</Id>\n\t\t\t<Verbose>MESA
2182
1485
  AMPHITHEATRE</Verbose>\n\t\t\t<Soundex>M251</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>201
2183
1486
  N CENTER ST</Location>\n\t\t\t<Latitude>33.419366</Latitude>\n\t\t\t<Longitude>-111.831463</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2184
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5067</Id>\n\t\t\t<Verbose>MESA
2185
- AMPHITHEATRE</Verbose>\n\t\t\t<Soundex>M251</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>201
2186
- N CENTER ST</Location>\n\t\t\t<Latitude>33.419366</Latitude>\n\t\t\t<Longitude>-111.831463</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2187
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5193</Id>\n\t\t\t<Verbose>MESA
2188
- ARTS CENTER</Verbose>\n\t\t\t<Soundex>M263</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1
2189
- E MAIN ST</Location>\n\t\t\t<Latitude>33.415102</Latitude>\n\t\t\t<Longitude>-111.831501</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2190
1487
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5193</Id>\n\t\t\t<Verbose>MESA
2191
1488
  ARTS CENTER</Verbose>\n\t\t\t<Soundex>M263</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1
2192
1489
  E MAIN ST</Location>\n\t\t\t<Latitude>33.415102</Latitude>\n\t\t\t<Longitude>-111.831501</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2193
1490
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7392</Id>\n\t\t\t<Verbose>MESA
2194
1491
  CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>120
2195
1492
  N CENTER ST</Location>\n\t\t\t<Latitude>33.417686</Latitude>\n\t\t\t<Longitude>-111.831484</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2196
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7392</Id>\n\t\t\t<Verbose>MESA
2197
- CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>120
2198
- N CENTER ST</Location>\n\t\t\t<Latitude>33.417686</Latitude>\n\t\t\t<Longitude>-111.831484</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2199
1493
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2200
1494
  CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2201
1495
  N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2202
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2203
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2204
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2205
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2206
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2207
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2208
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2209
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2210
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2211
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2212
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2213
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2214
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2215
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2216
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2217
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2218
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2219
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2220
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2221
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2222
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2223
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2224
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2225
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2226
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2227
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2228
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2229
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2230
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2231
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2232
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2233
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2234
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2235
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2236
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2237
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2238
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2239
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2240
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2241
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7538</Id>\n\t\t\t<Verbose>MESA
2242
- CITY HALL</Verbose>\n\t\t\t<Soundex>M223</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2243
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416278</Latitude>\n\t\t\t<Longitude>-111.831489</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2244
1496
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7198</Id>\n\t\t\t<Verbose>MESA
2245
1497
  COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1833
2246
1498
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.389686</Latitude>\n\t\t\t<Longitude>-111.874633</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2247
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7198</Id>\n\t\t\t<Verbose>MESA
2248
- COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1833
2249
- W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.389686</Latitude>\n\t\t\t<Longitude>-111.874633</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2250
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7900</Id>\n\t\t\t<Verbose>MESA
2251
- COMMUNITY COLLEGE RED MOUNTAIN</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>7110
2252
- E MCKELLIPS RD</Location>\n\t\t\t<Latitude>33.451411</Latitude>\n\t\t\t<Longitude>-111.677946</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2253
1499
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7900</Id>\n\t\t\t<Verbose>MESA
2254
1500
  COMMUNITY COLLEGE RED MOUNTAIN</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>7110
2255
1501
  E MCKELLIPS RD</Location>\n\t\t\t<Latitude>33.451411</Latitude>\n\t\t\t<Longitude>-111.677946</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2257,10 +1503,6 @@ http_interactions:
2257
1503
  CONVENTION CENTER</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>263
2258
1504
  N CENTER ST</Location>\n\t\t\t<Latitude>33.421534</Latitude>\n\t\t\t<Longitude>-111.831418</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2259
1505
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2260
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7957</Id>\n\t\t\t<Verbose>MESA
2261
- CONVENTION CENTER</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>263
2262
- N CENTER ST</Location>\n\t\t\t<Latitude>33.421534</Latitude>\n\t\t\t<Longitude>-111.831418</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2263
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2264
1506
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5676</Id>\n\t\t\t<Verbose>MESA
2265
1507
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>M222</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1630
2266
1508
  E SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.393460</Latitude>\n\t\t\t<Longitude>-111.796148</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2270,47 +1512,26 @@ http_interactions:
2270
1512
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85204</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7966</Id>\n\t\t\t<Verbose>MESA
2271
1513
  MARKET PLACE SWAP MEET</Verbose>\n\t\t\t<Soundex>M256</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>10550
2272
1514
  E BASELINE RD</Location>\n\t\t\t<Latitude>33.378953</Latitude>\n\t\t\t<Longitude>-111.605651</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2273
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1515
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2274
1516
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7388</Id>\n\t\t\t<Verbose>MESA
2275
1517
  MULTI GENERATIONAL CENTER</Verbose>\n\t\t\t<Soundex>M254</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>247
2276
1518
  N MACDONALD</Location>\n\t\t\t<Latitude>33.421567</Latitude>\n\t\t\t<Longitude>-111.833509</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
2277
1519
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5050</Id>\n\t\t\t<Verbose>MESA
2278
1520
  MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>M255</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2279
1521
  N CENTER ST</Location>\n\t\t\t<Latitude>33.416297</Latitude>\n\t\t\t<Longitude>-111.831488</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2280
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5050</Id>\n\t\t\t<Verbose>MESA
2281
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>M255</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2282
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416297</Latitude>\n\t\t\t<Longitude>-111.831488</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2283
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5050</Id>\n\t\t\t<Verbose>MESA
2284
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>M255</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2285
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416297</Latitude>\n\t\t\t<Longitude>-111.831488</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2286
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5050</Id>\n\t\t\t<Verbose>MESA
2287
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>M255</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2288
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416297</Latitude>\n\t\t\t<Longitude>-111.831488</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2289
- / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5050</Id>\n\t\t\t<Verbose>MESA
2290
- MUNICIPAL CENTER</Verbose>\n\t\t\t<Soundex>M255</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>55
2291
- N CENTER ST</Location>\n\t\t\t<Latitude>33.416297</Latitude>\n\t\t\t<Longitude>-111.831488</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
2292
1522
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5718</Id>\n\t\t\t<Verbose>MESA
2293
1523
  PAVILIONS</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1455
2294
1524
  S POWER RD</Location>\n\t\t\t<Latitude>33.389344</Latitude>\n\t\t\t<Longitude>-111.684815</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2295
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6957</Id>\n\t\t\t<Verbose>MESA
2296
- PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>64
2297
- E 1ST ST</Location>\n\t\t\t<Latitude>33.417259</Latitude>\n\t\t\t<Longitude>-111.831487</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6957</Id>\n\t\t\t<Verbose>MESA
1525
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6957</Id>\n\t\t\t<Verbose>MESA
2298
1526
  PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>64
2299
1527
  E 1ST ST</Location>\n\t\t\t<Latitude>33.417259</Latitude>\n\t\t\t<Longitude>-111.831487</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5148</Id>\n\t\t\t<Verbose>MESA
2300
1528
  PUBLIC LIBRARY DOBSON RANCH BRANCH</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>2425
2301
- S DOBSON RD</Location>\n\t\t\t<Latitude>33.370995</Latitude>\n\t\t\t<Longitude>-111.880069</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5148</Id>\n\t\t\t<Verbose>MESA
2302
- PUBLIC LIBRARY DOBSON RANCH BRANCH</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>2425
2303
1529
  S DOBSON RD</Location>\n\t\t\t<Latitude>33.370995</Latitude>\n\t\t\t<Longitude>-111.880069</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85202</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5158</Id>\n\t\t\t<Verbose>MESA
2304
1530
  PUBLIC LIBRARY RED MOUNTAIN BRANCH</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>635
2305
- N POWER RD</Location>\n\t\t\t<Latitude>33.427321</Latitude>\n\t\t\t<Longitude>-111.684454</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85205</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5158</Id>\n\t\t\t<Verbose>MESA
2306
- PUBLIC LIBRARY RED MOUNTAIN BRANCH</Verbose>\n\t\t\t<Soundex>M211</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>635
2307
1531
  N POWER RD</Location>\n\t\t\t<Latitude>33.427321</Latitude>\n\t\t\t<Longitude>-111.684454</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85205</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7568</Id>\n\t\t\t<Verbose>MESA
2308
1532
  RIVERVIEW</Verbose>\n\t\t\t<Soundex>M261</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>853
2309
1533
  N DOBSON RD</Location>\n\t\t\t<Latitude>33.436022</Latitude>\n\t\t\t<Longitude>-111.862563</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2310
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7568</Id>\n\t\t\t<Verbose>MESA
2311
- RIVERVIEW</Verbose>\n\t\t\t<Soundex>M261</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>853
2312
- N DOBSON RD</Location>\n\t\t\t<Latitude>33.436022</Latitude>\n\t\t\t<Longitude>-111.862563</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2313
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5433</Id>\n\t\t\t<Verbose>MESA
1534
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5433</Id>\n\t\t\t<Verbose>MESA
2314
1535
  SENIOR CENTER</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>247
2315
1536
  N MACDONALD</Location>\n\t\t\t<Latitude>33.421619</Latitude>\n\t\t\t<Longitude>-111.834089</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
2316
1537
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5677</Id>\n\t\t\t<Verbose>MESA
@@ -2322,10 +1543,7 @@ http_interactions:
2322
1543
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85233</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7537</Id>\n\t\t\t<Verbose>METRO
2323
1544
  CENTER TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2324
1545
  N METRO PKWY</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123085</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2325
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7537</Id>\n\t\t\t<Verbose>METRO
2326
- CENTER TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2327
- N METRO PKWY</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123085</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2328
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7496</Id>\n\t\t\t<Verbose>METRO
1546
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7496</Id>\n\t\t\t<Verbose>METRO
2329
1547
  RAIL</Verbose>\n\t\t\t<Soundex>M366</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>101
2330
1548
  N 1ST AVE</Location>\n\t\t\t<Latitude>33.449306</Latitude>\n\t\t\t<Longitude>-112.075128</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
2331
1549
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5678</Id>\n\t\t\t<Verbose>METRO
@@ -2334,66 +1552,15 @@ http_interactions:
2334
1552
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2335
1553
  TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2336
1554
  N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2337
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2338
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2339
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2340
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2341
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2342
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2343
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2344
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2345
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2346
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2347
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2348
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2349
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2350
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2351
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2352
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2353
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2354
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2355
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2356
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2357
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2358
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2359
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2360
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2361
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2362
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2363
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2364
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2365
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2366
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2367
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2368
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2369
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2370
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2371
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2372
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2373
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2374
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2375
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2376
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2377
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2378
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2379
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7363</Id>\n\t\t\t<Verbose>METROCENTER
2380
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9451
2381
- N METRO PKY W</Location>\n\t\t\t<Latitude>33.572846</Latitude>\n\t\t\t<Longitude>-112.123094</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2382
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7583</Id>\n\t\t\t<Verbose>MEXICAN
1555
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7583</Id>\n\t\t\t<Verbose>MEXICAN
2383
1556
  CONSULATE GENERAL</Verbose>\n\t\t\t<Soundex>M225</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1990
2384
1557
  W CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509622</Latitude>\n\t\t\t<Longitude>-112.099875</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2385
1558
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7561</Id>\n\t\t\t<Verbose>MIDWESTERN
2386
1559
  UNIVERSITY</Verbose>\n\t\t\t<Soundex>M323</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>19555
2387
1560
  N 59TH AVE</Location>\n\t\t\t<Latitude>33.661606</Latitude>\n\t\t\t<Longitude>-112.184604</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2388
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7561</Id>\n\t\t\t<Verbose>MIDWESTERN
2389
- UNIVERSITY</Verbose>\n\t\t\t<Soundex>M323</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>19555
2390
- N 59TH AVE</Location>\n\t\t\t<Latitude>33.661606</Latitude>\n\t\t\t<Longitude>-112.184604</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2391
1561
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7939</Id>\n\t\t\t<Verbose>MILL
2392
1562
  AVE THIRD ST LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M413</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10894)
2393
1563
  # MILL AVE/THIRD STREET LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.427538</Latitude>\n\t\t\t<Longitude>-111.941194</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2394
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7939</Id>\n\t\t\t<Verbose>MILL
2395
- AVE THIRD ST LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M413</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10894)
2396
- # MILL AVE/THIRD STREET LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.427538</Latitude>\n\t\t\t<Longitude>-111.941194</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2397
1564
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5413</Id>\n\t\t\t<Verbose>MILLER
2398
1565
  PLAZA</Verbose>\n\t\t\t<Soundex>M461</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>E
2399
1566
  MONTECITO AVE &amp; N MILLER RD</Location>\n\t\t\t<Latitude>33.499604</Latitude>\n\t\t\t<Longitude>-111.917489</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
@@ -2409,15 +1576,9 @@ http_interactions:
2409
1576
  64TH LN &amp; W BECKER LN</Location>\n\t\t\t<Latitude>33.582248</Latitude>\n\t\t\t<Longitude>-112.197255</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85304</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7920</Id>\n\t\t\t<Verbose>MONTEBELLO
2410
1577
  19TH AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M531</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10869)
2411
1578
  # MONTEBELLO/19TH AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.521203</Latitude>\n\t\t\t<Longitude>-112.099746</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2412
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7920</Id>\n\t\t\t<Verbose>MONTEBELLO
2413
- 19TH AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>M531</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10869)
2414
- # MONTEBELLO/19TH AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.521203</Latitude>\n\t\t\t<Longitude>-112.099746</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2415
1579
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7638</Id>\n\t\t\t<Verbose>MONTEBELLO
2416
1580
  19TH AVE TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M531</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
2417
1581
  19TH AVE &amp; W MONTEBELLO AVE</Location>\n\t\t\t<Latitude>33.519476</Latitude>\n\t\t\t<Longitude>-112.098626</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
2418
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7638</Id>\n\t\t\t<Verbose>MONTEBELLO
2419
- 19TH AVE TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>M531</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
2420
- 19TH AVE &amp; W MONTEBELLO AVE</Location>\n\t\t\t<Latitude>33.519476</Latitude>\n\t\t\t<Longitude>-112.098626</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
2421
1582
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5083</Id>\n\t\t\t<Verbose>MOON
2422
1583
  VALLEY COUNTRY CLUB</Verbose>\n\t\t\t<Soundex>M514</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>151
2423
1584
  W MOON VALLEY DR</Location>\n\t\t\t<Latitude>33.618000</Latitude>\n\t\t\t<Longitude>-112.077539</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5679</Id>\n\t\t\t<Verbose>MOON
@@ -2426,57 +1587,30 @@ http_interactions:
2426
1587
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85029</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5213</Id>\n\t\t\t<Verbose>MOTOR
2427
1588
  VEHICLE DIVISION AVONDALE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>1452
2428
1589
  N ELISEO C FELIX JR WAY</Location>\n\t\t\t<Latitude>33.450959</Latitude>\n\t\t\t<Longitude>-112.337103</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2429
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5213</Id>\n\t\t\t<Verbose>MOTOR
2430
- VEHICLE DIVISION AVONDALE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>1452
2431
- N ELISEO C FELIX JR WAY</Location>\n\t\t\t<Latitude>33.450959</Latitude>\n\t\t\t<Longitude>-112.337103</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2432
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5214</Id>\n\t\t\t<Verbose>MOTOR
2433
- VEHICLE DIVISION CHANDLER</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>50
2434
- S BECK AVE</Location>\n\t\t\t<Latitude>33.303064</Latitude>\n\t\t\t<Longitude>-111.956462</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2435
1590
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5214</Id>\n\t\t\t<Verbose>MOTOR
2436
1591
  VEHICLE DIVISION CHANDLER</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>50
2437
1592
  S BECK AVE</Location>\n\t\t\t<Latitude>33.303064</Latitude>\n\t\t\t<Longitude>-111.956462</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2438
1593
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5215</Id>\n\t\t\t<Verbose>MOTOR
2439
1594
  VEHICLE DIVISION GLENDALE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>16380
2440
1595
  N 59TH AVE</Location>\n\t\t\t<Latitude>33.634124</Latitude>\n\t\t\t<Longitude>-112.185851</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2441
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5215</Id>\n\t\t\t<Verbose>MOTOR
2442
- VEHICLE DIVISION GLENDALE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>16380
2443
- N 59TH AVE</Location>\n\t\t\t<Latitude>33.634124</Latitude>\n\t\t\t<Longitude>-112.185851</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2444
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5216</Id>\n\t\t\t<Verbose>MOTOR
2445
- VEHICLE DIVISION MESA</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1840
2446
- S MESA DR</Location>\n\t\t\t<Latitude>33.381778</Latitude>\n\t\t\t<Longitude>-111.823718</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2447
1596
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5216</Id>\n\t\t\t<Verbose>MOTOR
2448
1597
  VEHICLE DIVISION MESA</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1840
2449
1598
  S MESA DR</Location>\n\t\t\t<Latitude>33.381778</Latitude>\n\t\t\t<Longitude>-111.823718</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2450
1599
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5217</Id>\n\t\t\t<Verbose>MOTOR
2451
1600
  VEHICLE DIVISION NORTHWEST</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>20626
2452
1601
  N 26TH AVE</Location>\n\t\t\t<Latitude>33.673323</Latitude>\n\t\t\t<Longitude>-112.115506</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2453
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5217</Id>\n\t\t\t<Verbose>MOTOR
2454
- VEHICLE DIVISION NORTHWEST</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>20626
2455
- N 26TH AVE</Location>\n\t\t\t<Latitude>33.673323</Latitude>\n\t\t\t<Longitude>-112.115506</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2456
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5218</Id>\n\t\t\t<Verbose>MOTOR
2457
- VEHICLE DIVISION SCOTTSDALE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7339
2458
- E PARADISE LN</Location>\n\t\t\t<Latitude>33.633014</Latitude>\n\t\t\t<Longitude>-111.921978</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2459
1602
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5218</Id>\n\t\t\t<Verbose>MOTOR
2460
1603
  VEHICLE DIVISION SCOTTSDALE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7339
2461
1604
  E PARADISE LN</Location>\n\t\t\t<Latitude>33.633014</Latitude>\n\t\t\t<Longitude>-111.921978</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2462
1605
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5219</Id>\n\t\t\t<Verbose>MOTOR
2463
1606
  VEHICLE DIVISION SOUTH MOUNTAIN</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>221
2464
1607
  E OLYMPIC DR</Location>\n\t\t\t<Latitude>33.374513</Latitude>\n\t\t\t<Longitude>-112.069462</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2465
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5219</Id>\n\t\t\t<Verbose>MOTOR
2466
- VEHICLE DIVISION SOUTH MOUNTAIN</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>221
2467
- E OLYMPIC DR</Location>\n\t\t\t<Latitude>33.374513</Latitude>\n\t\t\t<Longitude>-112.069462</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2468
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5220</Id>\n\t\t\t<Verbose>MOTOR
2469
- VEHICLE DIVISION TEMPE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1703
2470
- E LARKSPUR LN</Location>\n\t\t\t<Latitude>33.449852</Latitude>\n\t\t\t<Longitude>-111.909371</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2471
1608
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5220</Id>\n\t\t\t<Verbose>MOTOR
2472
1609
  VEHICLE DIVISION TEMPE</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1703
2473
1610
  E LARKSPUR LN</Location>\n\t\t\t<Latitude>33.449852</Latitude>\n\t\t\t<Longitude>-111.909371</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2474
1611
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5221</Id>\n\t\t\t<Verbose>MOTOR
2475
1612
  VEHICLE DIVISION WEST</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4005
2476
1613
  N 51ST AVE</Location>\n\t\t\t<Latitude>33.491926</Latitude>\n\t\t\t<Longitude>-112.168906</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2477
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5221</Id>\n\t\t\t<Verbose>MOTOR
2478
- VEHICLE DIVISION WEST</Verbose>\n\t\t\t<Soundex>M361</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4005
2479
- N 51ST AVE</Location>\n\t\t\t<Latitude>33.491926</Latitude>\n\t\t\t<Longitude>-112.168906</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2480
1614
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7575</Id>\n\t\t\t<Verbose>MOTORCYCLE
2481
1615
  MECHANICS INSTITUTE</Verbose>\n\t\t\t<Soundex>M362</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2844
2482
1616
  W DEER VALLEY RD</Location>\n\t\t\t<Latitude>33.683789</Latitude>\n\t\t\t<Longitude>-112.120385</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2504,10 +1638,6 @@ http_interactions:
2504
1638
  CHICANO</Verbose>\n\t\t\t<Soundex>M222</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>147
2505
1639
  E ADAMS ST</Location>\n\t\t\t<Latitude>33.449317</Latitude>\n\t\t\t<Longitude>-112.072139</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7880</Id>\n\t\t\t<Verbose>MUSICAL
2506
1640
  INSTRUMENT MUSEUM</Verbose>\n\t\t\t<Soundex>M224</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
2507
- TATUM BLVD &amp; E MAYO BLVD</Location>\n\t\t\t<Latitude>33.668605</Latitude>\n\t\t\t<Longitude>-111.977663</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85050</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7880</Id>\n\t\t\t<Verbose>MUSICAL
2508
- INSTRUMENT MUSEUM</Verbose>\n\t\t\t<Soundex>M224</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
2509
- TATUM BLVD &amp; E MAYO BLVD</Location>\n\t\t\t<Latitude>33.668605</Latitude>\n\t\t\t<Longitude>-111.977663</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85050</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7880</Id>\n\t\t\t<Verbose>MUSICAL
2510
- INSTRUMENT MUSEUM</Verbose>\n\t\t\t<Soundex>M224</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>N
2511
1641
  TATUM BLVD &amp; E MAYO BLVD</Location>\n\t\t\t<Latitude>33.668605</Latitude>\n\t\t\t<Longitude>-111.977663</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85050</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7593</Id>\n\t\t\t<Verbose>NBA
2512
1642
  LIFESTYLES</Verbose>\n\t\t\t<Soundex>N141</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>7971
2513
1643
  N 53RD AVE</Location>\n\t\t\t<Latitude>33.550910</Latitude>\n\t\t\t<Longitude>-112.173256</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
@@ -2529,10 +1659,6 @@ http_interactions:
2529
1659
  SCOTTSDALE PARK AND RIDE</Verbose>\n\t\t\t<Soundex>N632</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>(12096)
2530
1660
  # TEMP_SCOTTSDALE PARK AND RIDE</Location>\n\t\t\t<Latitude>33.610788</Latitude>\n\t\t\t<Longitude>-111.924621</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
2531
1661
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2532
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7980</Id>\n\t\t\t<Verbose>NORTH
2533
- SCOTTSDALE PARK AND RIDE</Verbose>\n\t\t\t<Soundex>N632</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>(12096)
2534
- # TEMP_SCOTTSDALE PARK AND RIDE</Location>\n\t\t\t<Latitude>33.610788</Latitude>\n\t\t\t<Longitude>-111.924621</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
2535
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2536
1662
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7563</Id>\n\t\t\t<Verbose>NORTH
2537
1663
  TEMPE MULTIGENERATIONAL CENTER</Verbose>\n\t\t\t<Soundex>N633</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1555
2538
1664
  N BRIDALWREATH ST</Location>\n\t\t\t<Latitude>33.446865</Latitude>\n\t\t\t<Longitude>-111.922292</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -2546,15 +1672,9 @@ http_interactions:
2546
1672
  N 56TH ST</Location>\n\t\t\t<Latitude>33.582648</Latitude>\n\t\t\t<Longitude>-111.960587</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85254</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7251</Id>\n\t\t\t<Verbose>ORPHEUM
2547
1673
  THEATRE</Verbose>\n\t\t\t<Soundex>O615</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>203
2548
1674
  W ADAMS ST</Location>\n\t\t\t<Latitude>33.449304</Latitude>\n\t\t\t<Longitude>-112.076471</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2549
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7251</Id>\n\t\t\t<Verbose>ORPHEUM
2550
- THEATRE</Verbose>\n\t\t\t<Soundex>O615</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>203
2551
- W ADAMS ST</Location>\n\t\t\t<Latitude>33.449304</Latitude>\n\t\t\t<Longitude>-112.076471</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2552
1675
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7926</Id>\n\t\t\t<Verbose>OSBORN
2553
1676
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>O216</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10875)
2554
1677
  # OSBORN RD/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.487388</Latitude>\n\t\t\t<Longitude>-112.073895</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2555
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7926</Id>\n\t\t\t<Verbose>OSBORN
2556
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>O216</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10875)
2557
- # OSBORN RD/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.487388</Latitude>\n\t\t\t<Longitude>-112.073895</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
2558
1678
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5756</Id>\n\t\t\t<Verbose>OSBORN
2559
1679
  MIDDLE SCHOOL</Verbose>\n\t\t\t<Soundex>O216</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>1102
2560
1680
  W HIGHLAND ST</Location>\n\t\t\t<Latitude>33.329507</Latitude>\n\t\t\t<Longitude>-111.861331</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -2565,9 +1685,6 @@ http_interactions:
2565
1685
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85021</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7562</Id>\n\t\t\t<Verbose>PACKARD
2566
1686
  STADIUM</Verbose>\n\t\t\t<Soundex>P263</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>300
2567
1687
  S PACKARD DR</Location>\n\t\t\t<Latitude>33.426770</Latitude>\n\t\t\t<Longitude>-111.928996</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
2568
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7562</Id>\n\t\t\t<Verbose>PACKARD
2569
- STADIUM</Verbose>\n\t\t\t<Soundex>P263</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>300
2570
- S PACKARD DR</Location>\n\t\t\t<Latitude>33.426770</Latitude>\n\t\t\t<Longitude>-111.928996</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
2571
1688
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7400</Id>\n\t\t\t<Verbose>PAIUTE
2572
1689
  NEIGHBORHOOD CENTER</Verbose>\n\t\t\t<Soundex>P352</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>6535
2573
1690
  E OSBORN RD</Location>\n\t\t\t<Latitude>33.487476</Latitude>\n\t\t\t<Longitude>-111.939943</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -2593,12 +1710,6 @@ http_interactions:
2593
1710
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85253</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7028</Id>\n\t\t\t<Verbose>PARADISE
2594
1711
  VALLEY COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18401
2595
1712
  N 32ND ST</Location>\n\t\t\t<Latitude>33.651796</Latitude>\n\t\t\t<Longitude>-112.012789</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2596
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7028</Id>\n\t\t\t<Verbose>PARADISE
2597
- VALLEY COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18401
2598
- N 32ND ST</Location>\n\t\t\t<Latitude>33.651796</Latitude>\n\t\t\t<Longitude>-112.012789</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2599
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7028</Id>\n\t\t\t<Verbose>PARADISE
2600
- VALLEY COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18401
2601
- N 32ND ST</Location>\n\t\t\t<Latitude>33.651796</Latitude>\n\t\t\t<Longitude>-112.012789</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2602
1713
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5085</Id>\n\t\t\t<Verbose>PARADISE
2603
1714
  VALLEY COUNTRY CLUB</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PV</Area>\n\t\t\t<Areacode>Paradise
2604
1715
  Valley</Areacode>\n\t\t\t<Location>7101 N TATUM BLVD</Location>\n\t\t\t<Latitude>33.539930</Latitude>\n\t\t\t<Longitude>-111.975631</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85253</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5686</Id>\n\t\t\t<Verbose>PARADISE
@@ -2610,13 +1721,7 @@ http_interactions:
2610
1721
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7217</Id>\n\t\t\t<Verbose>PARADISE
2611
1722
  VALLEY MALL</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>PARADISE
2612
1723
  VALLEY MALL</Location>\n\t\t\t<Latitude>33.604589</Latitude>\n\t\t\t<Longitude>-111.979109</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2613
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7217</Id>\n\t\t\t<Verbose>PARADISE
2614
- VALLEY MALL</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>PARADISE
2615
- VALLEY MALL</Location>\n\t\t\t<Latitude>33.604589</Latitude>\n\t\t\t<Longitude>-111.979109</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2616
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7217</Id>\n\t\t\t<Verbose>PARADISE
2617
- VALLEY MALL</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>PARADISE
2618
- VALLEY MALL</Location>\n\t\t\t<Latitude>33.604589</Latitude>\n\t\t\t<Longitude>-111.979109</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2619
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5306</Id>\n\t\t\t<Verbose>PARADISE
1724
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5306</Id>\n\t\t\t<Verbose>PARADISE
2620
1725
  VALLEY PARK</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>17642
2621
1726
  N 40TH ST</Location>\n\t\t\t<Latitude>33.646524</Latitude>\n\t\t\t<Longitude>-111.996213</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5086</Id>\n\t\t\t<Verbose>PARADISE
2622
1727
  VALLEY PARK GOLF COURSE</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3505
@@ -2626,16 +1731,13 @@ http_interactions:
2626
1731
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7378</Id>\n\t\t\t<Verbose>PARADISE
2627
1732
  VALLEY TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>PARADISE
2628
1733
  VALLEY MALL</Location>\n\t\t\t<Latitude>33.604589</Latitude>\n\t\t\t<Longitude>-111.979109</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
2629
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7378</Id>\n\t\t\t<Verbose>PARADISE
2630
- VALLEY TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>P632</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>PARADISE
2631
- VALLEY MALL</Location>\n\t\t\t<Latitude>33.604589</Latitude>\n\t\t\t<Longitude>-111.979109</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
2632
1734
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5227</Id>\n\t\t\t<Verbose>PARK
2633
1735
  CENTRAL MALL</Verbose>\n\t\t\t<Soundex>P622</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3121
2634
1736
  N 3RD AVE</Location>\n\t\t\t<Latitude>33.483834</Latitude>\n\t\t\t<Longitude>-112.074608</Longitude>\n\t\t\t<Type>OFPK</Type>\n\t\t\t<Typedescription>OFFICE
2635
1737
  PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5721</Id>\n\t\t\t<Verbose>PARK
2636
1738
  N SWAP</Verbose>\n\t\t\t<Soundex>P625</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3801
2637
1739
  E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448144</Latitude>\n\t\t\t<Longitude>-111.997371</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
2638
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7554</Id>\n\t\t\t<Verbose>PASEO
1740
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7554</Id>\n\t\t\t<Verbose>PASEO
2639
1741
  HIGHLANDS PARK</Verbose>\n\t\t\t<Soundex>P224</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3435
2640
1742
  W PINNACLE PEAK RD</Location>\n\t\t\t<Latitude>33.698030</Latitude>\n\t\t\t<Longitude>-112.134552</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85310</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5307</Id>\n\t\t\t<Verbose>PATRIOTS
2641
1743
  PARK</Verbose>\n\t\t\t<Soundex>P363</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>1
@@ -2653,13 +1755,8 @@ http_interactions:
2653
1755
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7314</Id>\n\t\t\t<Verbose>PEORIA
2654
1756
  PARK AND RIDE</Verbose>\n\t\t\t<Soundex>P616</Soundex>\n\t\t\t<Area>PE</Area>\n\t\t\t<Areacode>Peoria</Areacode>\n\t\t\t<Location>W
2655
1757
  JEFFERSON ST &amp; N 84TH AVE</Location>\n\t\t\t<Latitude>33.579395</Latitude>\n\t\t\t<Longitude>-112.239707</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
2656
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7314</Id>\n\t\t\t<Verbose>PEORIA
2657
- PARK AND RIDE</Verbose>\n\t\t\t<Soundex>P616</Soundex>\n\t\t\t<Area>PE</Area>\n\t\t\t<Areacode>Peoria</Areacode>\n\t\t\t<Location>W
2658
- JEFFERSON ST &amp; N 84TH AVE</Location>\n\t\t\t<Latitude>33.579395</Latitude>\n\t\t\t<Longitude>-112.239707</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
2659
1758
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6962</Id>\n\t\t\t<Verbose>PEORIA
2660
1759
  PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>P611</Soundex>\n\t\t\t<Area>PE</Area>\n\t\t\t<Areacode>Peoria</Areacode>\n\t\t\t<Location>8463
2661
- W MONROE ST</Location>\n\t\t\t<Latitude>33.577313</Latitude>\n\t\t\t<Longitude>-112.241135</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6962</Id>\n\t\t\t<Verbose>PEORIA
2662
- PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>P611</Soundex>\n\t\t\t<Area>PE</Area>\n\t\t\t<Areacode>Peoria</Areacode>\n\t\t\t<Location>8463
2663
1760
  W MONROE ST</Location>\n\t\t\t<Latitude>33.577313</Latitude>\n\t\t\t<Longitude>-112.241135</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85345</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6965</Id>\n\t\t\t<Verbose>PEORIA
2664
1761
  PUBLIC LIBRARY SUNRISE MT BRANCH</Verbose>\n\t\t\t<Soundex>P611</Soundex>\n\t\t\t<Area>PE</Area>\n\t\t\t<Areacode>Peoria</Areacode>\n\t\t\t<Location>N
2665
1762
  98TH AVE &amp; W LAKE PLEASANT PKWY</Location>\n\t\t\t<Latitude>33.674466</Latitude>\n\t\t\t<Longitude>-112.270427</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85382</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7499</Id>\n\t\t\t<Verbose>PEORIA
@@ -2677,20 +1774,13 @@ http_interactions:
2677
1774
  PARK</Verbose>\n\t\t\t<Soundex>P616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2700
2678
1775
  N 32ND ST</Location>\n\t\t\t<Latitude>33.477715</Latitude>\n\t\t\t<Longitude>-112.012927</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5197</Id>\n\t\t\t<Verbose>PETERSEN
2679
1776
  HOUSE MUSEUM</Verbose>\n\t\t\t<Soundex>P362</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1414
2680
- W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392851</Latitude>\n\t\t\t<Longitude>-111.961182</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5197</Id>\n\t\t\t<Verbose>PETERSEN
2681
- HOUSE MUSEUM</Verbose>\n\t\t\t<Soundex>P362</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1414
2682
1777
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392851</Latitude>\n\t\t\t<Longitude>-111.961182</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7500</Id>\n\t\t\t<Verbose>PHOENICIAN
2683
1778
  RESORT</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>6000
2684
1779
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.501939</Latitude>\n\t\t\t<Longitude>-111.952010</Longitude>\n\t\t\t<Type>HOTEL</Type>\n\t\t\t<Typedescription>HOTELS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5198</Id>\n\t\t\t<Verbose>PHOENIX
2685
1780
  ART MUSEUM</Verbose>\n\t\t\t<Soundex>P526</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1625
2686
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.465970</Latitude>\n\t\t\t<Longitude>-112.073820</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5198</Id>\n\t\t\t<Verbose>PHOENIX
2687
- ART MUSEUM</Verbose>\n\t\t\t<Soundex>P526</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1625
2688
1781
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.465970</Latitude>\n\t\t\t<Longitude>-112.073820</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5121</Id>\n\t\t\t<Verbose>PHOENIX
2689
1782
  BAPTIST HOSPITAL</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2000
2690
1783
  W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.524118</Latitude>\n\t\t\t<Longitude>-112.101867</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2691
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5121</Id>\n\t\t\t<Verbose>PHOENIX
2692
- BAPTIST HOSPITAL</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2000
2693
- W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.524118</Latitude>\n\t\t\t<Longitude>-112.101867</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2694
1784
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5122</Id>\n\t\t\t<Verbose>PHOENIX
2695
1785
  CHILDREN S HOSPITAL</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1919
2696
1786
  E THOMAS RD</Location>\n\t\t\t<Latitude>33.480233</Latitude>\n\t\t\t<Longitude>-112.040444</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
@@ -2703,18 +1793,12 @@ http_interactions:
2703
1793
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5454</Id>\n\t\t\t<Verbose>PHOENIX
2704
1794
  COLLEGE</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1202
2705
1795
  W THOMAS RD</Location>\n\t\t\t<Latitude>33.480392</Latitude>\n\t\t\t<Longitude>-112.087008</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2706
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5454</Id>\n\t\t\t<Verbose>PHOENIX
2707
- COLLEGE</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1202
2708
- W THOMAS RD</Location>\n\t\t\t<Latitude>33.480392</Latitude>\n\t\t\t<Longitude>-112.087008</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
2709
1796
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7040</Id>\n\t\t\t<Verbose>PHOENIX
2710
1797
  CONVENTION - VISITORS CENTER</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>400
2711
1798
  E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451359</Latitude>\n\t\t\t<Longitude>-112.068720</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2712
1799
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7888</Id>\n\t\t\t<Verbose>PHOENIX
2713
1800
  CONVENTION CENTER</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>100
2714
1801
  N 3RD ST</Location>\n\t\t\t<Latitude>33.449572</Latitude>\n\t\t\t<Longitude>-112.069960</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2715
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7888</Id>\n\t\t\t<Verbose>PHOENIX
2716
- CONVENTION CENTER</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>100
2717
- N 3RD ST</Location>\n\t\t\t<Latitude>33.449572</Latitude>\n\t\t\t<Longitude>-112.069960</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2718
1802
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5088</Id>\n\t\t\t<Verbose>PHOENIX
2719
1803
  COUNTRY CLUB</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2901
2720
1804
  N 7TH ST</Location>\n\t\t\t<Latitude>33.480189</Latitude>\n\t\t\t<Longitude>-112.065089</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5068</Id>\n\t\t\t<Verbose>PHOENIX
@@ -2729,30 +1813,18 @@ http_interactions:
2729
1813
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7326</Id>\n\t\t\t<Verbose>PHOENIX
2730
1814
  JOB CORPS CENTER</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>518
2731
1815
  S 3RD ST</Location>\n\t\t\t<Latitude>33.443001</Latitude>\n\t\t\t<Longitude>-112.069926</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2732
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7326</Id>\n\t\t\t<Verbose>PHOENIX
2733
- JOB CORPS CENTER</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>518
2734
- S 3RD ST</Location>\n\t\t\t<Latitude>33.443001</Latitude>\n\t\t\t<Longitude>-112.069926</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
2735
1816
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5124</Id>\n\t\t\t<Verbose>PHOENIX
2736
1817
  MEMORIAL HOSPITAL</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1201
2737
1818
  S 7TH AVE</Location>\n\t\t\t<Latitude>33.436789</Latitude>\n\t\t\t<Longitude>-112.082534</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
2738
1819
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7969</Id>\n\t\t\t<Verbose>PHOENIX
2739
1820
  MESA GATEWAY AIRPORT</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11723)
2740
1821
  # PHX-MESA GATEWAY AIRPORT</Location>\n\t\t\t<Latitude>33.307410</Latitude>\n\t\t\t<Longitude>-111.669481</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2741
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7969</Id>\n\t\t\t<Verbose>PHOENIX
2742
- MESA GATEWAY AIRPORT</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11723)
2743
- # PHX-MESA GATEWAY AIRPORT</Location>\n\t\t\t<Latitude>33.307410</Latitude>\n\t\t\t<Longitude>-111.669481</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2744
1822
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7962</Id>\n\t\t\t<Verbose>PHOENIX
2745
1823
  MUNICIPAL COURT</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(9465)
2746
1824
  # WASHINGTON ST &amp; 4TH AVE</Location>\n\t\t\t<Latitude>33.448331</Latitude>\n\t\t\t<Longitude>-112.078621</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2747
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7962</Id>\n\t\t\t<Verbose>PHOENIX
2748
- MUNICIPAL COURT</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(9465)
2749
- # WASHINGTON ST &amp; 4TH AVE</Location>\n\t\t\t<Latitude>33.448331</Latitude>\n\t\t\t<Longitude>-112.078621</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
2750
1825
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5773</Id>\n\t\t\t<Verbose>PHOENIX
2751
1826
  MUNICIPAL STADIUM</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5851
2752
1827
  E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.450775</Latitude>\n\t\t\t<Longitude>-111.955785</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
2753
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5773</Id>\n\t\t\t<Verbose>PHOENIX
2754
- MUNICIPAL STADIUM</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5851
2755
- E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.450775</Latitude>\n\t\t\t<Longitude>-111.955785</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
2756
1828
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5199</Id>\n\t\t\t<Verbose>PHOENIX
2757
1829
  MUSEUM OF HISTORY</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>105
2758
1830
  N 5TH ST</Location>\n\t\t\t<Latitude>33.450027</Latitude>\n\t\t\t<Longitude>-112.067474</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5371</Id>\n\t\t\t<Verbose>PHOENIX
@@ -2765,105 +1837,35 @@ http_interactions:
2765
1837
  E FILLMORE ST</Location>\n\t\t\t<Latitude>33.454532</Latitude>\n\t\t\t<Longitude>-112.063554</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
2766
1838
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85006</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7136</Id>\n\t\t\t<Verbose>PHOENIX
2767
1839
  PUBLIC LIBRARY ACACIA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>750
2768
- E TOWNLEY AVE</Location>\n\t\t\t<Latitude>33.565949</Latitude>\n\t\t\t<Longitude>-112.063473</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7136</Id>\n\t\t\t<Verbose>PHOENIX
2769
- PUBLIC LIBRARY ACACIA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>750
2770
- E TOWNLEY AVE</Location>\n\t\t\t<Latitude>33.565949</Latitude>\n\t\t\t<Longitude>-112.063473</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7136</Id>\n\t\t\t<Verbose>PHOENIX
2771
- PUBLIC LIBRARY ACACIA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>750
2772
- E TOWNLEY AVE</Location>\n\t\t\t<Latitude>33.565949</Latitude>\n\t\t\t<Longitude>-112.063473</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7136</Id>\n\t\t\t<Verbose>PHOENIX
2773
- PUBLIC LIBRARY ACACIA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>750
2774
1840
  E TOWNLEY AVE</Location>\n\t\t\t<Latitude>33.565949</Latitude>\n\t\t\t<Longitude>-112.063473</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7571</Id>\n\t\t\t<Verbose>PHOENIX
2775
1841
  PUBLIC LIBRARY AGAVE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>23490
2776
- N 36TH AVE</Location>\n\t\t\t<Latitude>33.700145</Latitude>\n\t\t\t<Longitude>-112.138988</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85310</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7571</Id>\n\t\t\t<Verbose>PHOENIX
2777
- PUBLIC LIBRARY AGAVE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>23490
2778
1842
  N 36TH AVE</Location>\n\t\t\t<Latitude>33.700145</Latitude>\n\t\t\t<Longitude>-112.138988</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85310</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5151</Id>\n\t\t\t<Verbose>PHOENIX
2779
1843
  PUBLIC LIBRARY BURTON BARR</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1221
2780
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.461610</Latitude>\n\t\t\t<Longitude>-112.073865</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5151</Id>\n\t\t\t<Verbose>PHOENIX
2781
- PUBLIC LIBRARY BURTON BARR</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1221
2782
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.461610</Latitude>\n\t\t\t<Longitude>-112.073865</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5151</Id>\n\t\t\t<Verbose>PHOENIX
2783
- PUBLIC LIBRARY BURTON BARR</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1221
2784
- N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.461610</Latitude>\n\t\t\t<Longitude>-112.073865</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5151</Id>\n\t\t\t<Verbose>PHOENIX
2785
- PUBLIC LIBRARY BURTON BARR</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1221
2786
1844
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.461610</Latitude>\n\t\t\t<Longitude>-112.073865</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7137</Id>\n\t\t\t<Verbose>PHOENIX
2787
1845
  PUBLIC LIBRARY CENTURY BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1750
2788
- E HIGHLAND AVE</Location>\n\t\t\t<Latitude>33.505613</Latitude>\n\t\t\t<Longitude>-112.044169</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7137</Id>\n\t\t\t<Verbose>PHOENIX
2789
- PUBLIC LIBRARY CENTURY BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1750
2790
- E HIGHLAND AVE</Location>\n\t\t\t<Latitude>33.505613</Latitude>\n\t\t\t<Longitude>-112.044169</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7137</Id>\n\t\t\t<Verbose>PHOENIX
2791
- PUBLIC LIBRARY CENTURY BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1750
2792
- E HIGHLAND AVE</Location>\n\t\t\t<Latitude>33.505613</Latitude>\n\t\t\t<Longitude>-112.044169</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7137</Id>\n\t\t\t<Verbose>PHOENIX
2793
- PUBLIC LIBRARY CENTURY BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1750
2794
1846
  E HIGHLAND AVE</Location>\n\t\t\t<Latitude>33.505613</Latitude>\n\t\t\t<Longitude>-112.044169</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7572</Id>\n\t\t\t<Verbose>PHOENIX
2795
1847
  PUBLIC LIBRARY CESAR CHAVEZ BRAN</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3711
2796
- W BASELINE RD</Location>\n\t\t\t<Latitude>33.377552</Latitude>\n\t\t\t<Longitude>-112.139693</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7572</Id>\n\t\t\t<Verbose>PHOENIX
2797
- PUBLIC LIBRARY CESAR CHAVEZ BRAN</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3711
2798
- W BASELINE RD</Location>\n\t\t\t<Latitude>33.377552</Latitude>\n\t\t\t<Longitude>-112.139693</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7572</Id>\n\t\t\t<Verbose>PHOENIX
2799
- PUBLIC LIBRARY CESAR CHAVEZ BRAN</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3711
2800
1848
  W BASELINE RD</Location>\n\t\t\t<Latitude>33.377552</Latitude>\n\t\t\t<Longitude>-112.139693</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7141</Id>\n\t\t\t<Verbose>PHOENIX
2801
1849
  PUBLIC LIBRARY CHOLLA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10050
2802
- N METRO PKWY E</Location>\n\t\t\t<Latitude>33.576633</Latitude>\n\t\t\t<Longitude>-112.118303</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7141</Id>\n\t\t\t<Verbose>PHOENIX
2803
- PUBLIC LIBRARY CHOLLA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10050
2804
- N METRO PKWY E</Location>\n\t\t\t<Latitude>33.576633</Latitude>\n\t\t\t<Longitude>-112.118303</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7141</Id>\n\t\t\t<Verbose>PHOENIX
2805
- PUBLIC LIBRARY CHOLLA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10050
2806
1850
  N METRO PKWY E</Location>\n\t\t\t<Latitude>33.576633</Latitude>\n\t\t\t<Longitude>-112.118303</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85051</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7311</Id>\n\t\t\t<Verbose>PHOENIX
2807
1851
  PUBLIC LIBRARY DESERT BROOM BRAN</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>CA</Area>\n\t\t\t<Areacode>Carefree</Areacode>\n\t\t\t<Location>24199
2808
- N CAVE CREEK RD</Location>\n\t\t\t<Latitude>33.811921</Latitude>\n\t\t\t<Longitude>-111.955027</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85331</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7311</Id>\n\t\t\t<Verbose>PHOENIX
2809
- PUBLIC LIBRARY DESERT BROOM BRAN</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>CA</Area>\n\t\t\t<Areacode>Carefree</Areacode>\n\t\t\t<Location>24199
2810
1852
  N CAVE CREEK RD</Location>\n\t\t\t<Latitude>33.811921</Latitude>\n\t\t\t<Longitude>-111.955027</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85331</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7142</Id>\n\t\t\t<Verbose>PHOENIX
2811
1853
  PUBLIC LIBRARY DESERT SAGE BRANC</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7602
2812
- W ENCANTO BLVD</Location>\n\t\t\t<Latitude>33.472878</Latitude>\n\t\t\t<Longitude>-112.222880</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85035</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7142</Id>\n\t\t\t<Verbose>PHOENIX
2813
- PUBLIC LIBRARY DESERT SAGE BRANC</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7602
2814
- W ENCANTO BLVD</Location>\n\t\t\t<Latitude>33.472878</Latitude>\n\t\t\t<Longitude>-112.222880</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85035</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7142</Id>\n\t\t\t<Verbose>PHOENIX
2815
- PUBLIC LIBRARY DESERT SAGE BRANC</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7602
2816
1854
  W ENCANTO BLVD</Location>\n\t\t\t<Latitude>33.472878</Latitude>\n\t\t\t<Longitude>-112.222880</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85035</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7143</Id>\n\t\t\t<Verbose>PHOENIX
2817
1855
  PUBLIC LIBRARY HARMON BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>411
2818
- W YAVAPAI ST</Location>\n\t\t\t<Latitude>33.436137</Latitude>\n\t\t\t<Longitude>-112.079454</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7143</Id>\n\t\t\t<Verbose>PHOENIX
2819
- PUBLIC LIBRARY HARMON BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>411
2820
- W YAVAPAI ST</Location>\n\t\t\t<Latitude>33.436137</Latitude>\n\t\t\t<Longitude>-112.079454</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7143</Id>\n\t\t\t<Verbose>PHOENIX
2821
- PUBLIC LIBRARY HARMON BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>411
2822
1856
  W YAVAPAI ST</Location>\n\t\t\t<Latitude>33.436137</Latitude>\n\t\t\t<Longitude>-112.079454</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7144</Id>\n\t\t\t<Verbose>PHOENIX
2823
1857
  PUBLIC LIBRARY IRONWOOD BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4333
2824
- E CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.305220</Latitude>\n\t\t\t<Longitude>-111.990271</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7144</Id>\n\t\t\t<Verbose>PHOENIX
2825
- PUBLIC LIBRARY IRONWOOD BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4333
2826
- E CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.305220</Latitude>\n\t\t\t<Longitude>-111.990271</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7144</Id>\n\t\t\t<Verbose>PHOENIX
2827
- PUBLIC LIBRARY IRONWOOD BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4333
2828
- E CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.305220</Latitude>\n\t\t\t<Longitude>-111.990271</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7144</Id>\n\t\t\t<Verbose>PHOENIX
2829
- PUBLIC LIBRARY IRONWOOD BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4333
2830
- E CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.305220</Latitude>\n\t\t\t<Longitude>-111.990271</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7144</Id>\n\t\t\t<Verbose>PHOENIX
2831
- PUBLIC LIBRARY IRONWOOD BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4333
2832
1858
  E CHANDLER BLVD</Location>\n\t\t\t<Latitude>33.305220</Latitude>\n\t\t\t<Longitude>-111.990271</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85048</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7145</Id>\n\t\t\t<Verbose>PHOENIX
2833
1859
  PUBLIC LIBRARY JUNIPER BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18631
2834
- N 19TH AVE</Location>\n\t\t\t<Latitude>33.654966</Latitude>\n\t\t\t<Longitude>-112.099770</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7145</Id>\n\t\t\t<Verbose>PHOENIX
2835
- PUBLIC LIBRARY JUNIPER BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18631
2836
- N 19TH AVE</Location>\n\t\t\t<Latitude>33.654966</Latitude>\n\t\t\t<Longitude>-112.099770</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7145</Id>\n\t\t\t<Verbose>PHOENIX
2837
- PUBLIC LIBRARY JUNIPER BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18631
2838
1860
  N 19TH AVE</Location>\n\t\t\t<Latitude>33.654966</Latitude>\n\t\t\t<Longitude>-112.099770</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85027</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7186</Id>\n\t\t\t<Verbose>PHOENIX
2839
1861
  PUBLIC LIBRARY MESQUITE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4525
2840
- E PARADISE VILLAGE PKWY N</Location>\n\t\t\t<Latitude>33.605017</Latitude>\n\t\t\t<Longitude>-111.983690</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7186</Id>\n\t\t\t<Verbose>PHOENIX
2841
- PUBLIC LIBRARY MESQUITE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4525
2842
- E PARADISE VILLAGE PKWY N</Location>\n\t\t\t<Latitude>33.605017</Latitude>\n\t\t\t<Longitude>-111.983690</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7186</Id>\n\t\t\t<Verbose>PHOENIX
2843
- PUBLIC LIBRARY MESQUITE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4525
2844
1862
  E PARADISE VILLAGE PKWY N</Location>\n\t\t\t<Latitude>33.605017</Latitude>\n\t\t\t<Longitude>-111.983690</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7185</Id>\n\t\t\t<Verbose>PHOENIX
2845
1863
  PUBLIC LIBRARY OCOTILLO BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>102
2846
- W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392210</Latitude>\n\t\t\t<Longitude>-112.074673</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7185</Id>\n\t\t\t<Verbose>PHOENIX
2847
- PUBLIC LIBRARY OCOTILLO BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>102
2848
- W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392210</Latitude>\n\t\t\t<Longitude>-112.074673</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7185</Id>\n\t\t\t<Verbose>PHOENIX
2849
- PUBLIC LIBRARY OCOTILLO BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>102
2850
1864
  W SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392210</Latitude>\n\t\t\t<Longitude>-112.074673</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85041</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7146</Id>\n\t\t\t<Verbose>PHOENIX
2851
1865
  PUBLIC LIBRARY PALO VERDE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4402
2852
- N 51ST AVE</Location>\n\t\t\t<Latitude>33.501125</Latitude>\n\t\t\t<Longitude>-112.168857</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7146</Id>\n\t\t\t<Verbose>PHOENIX
2853
- PUBLIC LIBRARY PALO VERDE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4402
2854
- N 51ST AVE</Location>\n\t\t\t<Latitude>33.501125</Latitude>\n\t\t\t<Longitude>-112.168857</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7146</Id>\n\t\t\t<Verbose>PHOENIX
2855
- PUBLIC LIBRARY PALO VERDE BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4402
2856
1866
  N 51ST AVE</Location>\n\t\t\t<Latitude>33.501125</Latitude>\n\t\t\t<Longitude>-112.168857</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7627</Id>\n\t\t\t<Verbose>PHOENIX
2857
1867
  PUBLIC LIBRARY SAGUARO BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2808
2858
- N 46TH ST</Location>\n\t\t\t<Latitude>33.479068</Latitude>\n\t\t\t<Longitude>-111.982569</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7627</Id>\n\t\t\t<Verbose>PHOENIX
2859
- PUBLIC LIBRARY SAGUARO BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2808
2860
- N 46TH ST</Location>\n\t\t\t<Latitude>33.479068</Latitude>\n\t\t\t<Longitude>-111.982569</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7627</Id>\n\t\t\t<Verbose>PHOENIX
2861
- PUBLIC LIBRARY SAGUARO BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2808
2862
- N 46TH ST</Location>\n\t\t\t<Latitude>33.479068</Latitude>\n\t\t\t<Longitude>-111.982569</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5157</Id>\n\t\t\t<Verbose>PHOENIX
2863
- PUBLIC LIBRARY YUCCA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5648
2864
- N 15TH AVE</Location>\n\t\t\t<Latitude>33.519413</Latitude>\n\t\t\t<Longitude>-112.091152</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5157</Id>\n\t\t\t<Verbose>PHOENIX
2865
- PUBLIC LIBRARY YUCCA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5648
2866
- N 15TH AVE</Location>\n\t\t\t<Latitude>33.519413</Latitude>\n\t\t\t<Longitude>-112.091152</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5157</Id>\n\t\t\t<Verbose>PHOENIX
1868
+ N 46TH ST</Location>\n\t\t\t<Latitude>33.479068</Latitude>\n\t\t\t<Longitude>-111.982569</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5157</Id>\n\t\t\t<Verbose>PHOENIX
2867
1869
  PUBLIC LIBRARY YUCCA BRANCH</Verbose>\n\t\t\t<Soundex>P521</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5648
2868
1870
  N 15TH AVE</Location>\n\t\t\t<Latitude>33.519413</Latitude>\n\t\t\t<Longitude>-112.091152</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5774</Id>\n\t\t\t<Verbose>PHOENIX
2869
1871
  SPORTS CENTER</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3839
@@ -2871,21 +1873,18 @@ http_interactions:
2871
1873
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85019</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7887</Id>\n\t\t\t<Verbose>PHOENIX
2872
1874
  THEATRE</Verbose>\n\t\t\t<Soundex>P523</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>100
2873
1875
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465929</Latitude>\n\t\t\t<Longitude>-112.072517</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2874
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7887</Id>\n\t\t\t<Verbose>PHOENIX
2875
- THEATRE</Verbose>\n\t\t\t<Soundex>P523</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>100
2876
- E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465929</Latitude>\n\t\t\t<Longitude>-112.072517</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
2877
1876
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5167</Id>\n\t\t\t<Verbose>PHOENIX
2878
1877
  ZOO</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>455
2879
1878
  N GALVIN PKWY</Location>\n\t\t\t<Latitude>33.452277</Latitude>\n\t\t\t<Longitude>-111.948850</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
2880
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5167</Id>\n\t\t\t<Verbose>PHOENIX
2881
- ZOO</Verbose>\n\t\t\t<Soundex>P522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>455
2882
- N GALVIN PKWY</Location>\n\t\t\t<Latitude>33.452277</Latitude>\n\t\t\t<Longitude>-111.948850</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
2883
1879
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7501</Id>\n\t\t\t<Verbose>PIESTEWA
2884
1880
  PEAK PARK</Verbose>\n\t\t\t<Soundex>P231</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2701
2885
1881
  E SQUAW PEAK DR</Location>\n\t\t\t<Latitude>33.536924</Latitude>\n\t\t\t<Longitude>-112.027442</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7970</Id>\n\t\t\t<Verbose>PIMA
2886
1882
  CENTER</Verbose>\n\t\t\t<Soundex>P525</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>(11764)
2887
1883
  # NB N PIMA RD FS PIMA CENTER PARKWY</Location>\n\t\t\t<Latitude>33.560630</Latitude>\n\t\t\t<Longitude>-111.891173</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
2888
1884
  BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
1885
+ </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7987</Id>\n\t\t\t<Verbose>PIMA
1886
+ PARK</Verbose>\n\t\t\t<Soundex>P516</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>(11424)
1887
+ # LAYOVER ON THOMAS RD AT PIMA PARK</Location>\n\t\t\t<Latitude>33.480587</Latitude>\n\t\t\t<Longitude>-111.894814</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
2889
1888
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7569</Id>\n\t\t\t<Verbose>PINNACLE
2890
1889
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>P524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3535
2891
1890
  E MAYO BLVD</Location>\n\t\t\t<Latitude>33.680640</Latitude>\n\t\t\t<Longitude>-112.005712</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -3019,18 +2018,9 @@ http_interactions:
3019
2018
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7919</Id>\n\t\t\t<Verbose>POWER
3020
2019
  RD PARK AND RIDE</Verbose>\n\t\t\t<Soundex>P663</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11460)
3021
2020
  # POWER RD PARK AND RIDE</Location>\n\t\t\t<Latitude>33.470996</Latitude>\n\t\t\t<Longitude>-111.683200</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3022
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7919</Id>\n\t\t\t<Verbose>POWER
3023
- RD PARK AND RIDE</Verbose>\n\t\t\t<Soundex>P663</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11460)
3024
- # POWER RD PARK AND RIDE</Location>\n\t\t\t<Latitude>33.470996</Latitude>\n\t\t\t<Longitude>-111.683200</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3025
2021
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7644</Id>\n\t\t\t<Verbose>PRICE
3026
2022
  101 APACHE BLVD STN</Verbose>\n\t\t\t<Soundex>P62A</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10889)
3027
2023
  # PRICE-101 FWY/APACHE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414754</Latitude>\n\t\t\t<Longitude>-111.888747</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3028
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7644</Id>\n\t\t\t<Verbose>PRICE
3029
- 101 APACHE BLVD STN</Verbose>\n\t\t\t<Soundex>P62A</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10889)
3030
- # PRICE-101 FWY/APACHE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414754</Latitude>\n\t\t\t<Longitude>-111.888747</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3031
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7937</Id>\n\t\t\t<Verbose>PRIEST
3032
- DR WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>P623</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10884)
3033
- # PRIEST DR/WASHINGTON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.442420</Latitude>\n\t\t\t<Longitude>-111.956463</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3034
2024
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7937</Id>\n\t\t\t<Verbose>PRIEST
3035
2025
  DR WASHINGTON LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>P623</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10884)
3036
2026
  # PRIEST DR/WASHINGTON LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.442420</Latitude>\n\t\t\t<Longitude>-111.956463</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
@@ -3042,8 +2032,6 @@ http_interactions:
3042
2032
  N 39TH AVE</Location>\n\t\t\t<Latitude>33.489027</Latitude>\n\t\t\t<Longitude>-112.142894</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
3043
2033
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85019</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5202</Id>\n\t\t\t<Verbose>PUEBLO
3044
2034
  GRANDE MUSEUM</Verbose>\n\t\t\t<Soundex>P142</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4619
3045
- E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.447413</Latitude>\n\t\t\t<Longitude>-111.983356</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5202</Id>\n\t\t\t<Verbose>PUEBLO
3046
- GRANDE MUSEUM</Verbose>\n\t\t\t<Soundex>P142</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4619
3047
2035
  E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.447413</Latitude>\n\t\t\t<Longitude>-111.983356</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5435</Id>\n\t\t\t<Verbose>PYLE
3048
2036
  ADULT RECREATION CENTER</Verbose>\n\t\t\t<Soundex>P434</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>655
3049
2037
  E SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392923</Latitude>\n\t\t\t<Longitude>-111.929847</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -3072,8 +2060,6 @@ http_interactions:
3072
2060
  N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.448238</Latitude>\n\t\t\t<Longitude>-112.073838</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
3073
2061
  BUSINESSES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7585</Id>\n\t\t\t<Verbose>RENTAL
3074
2062
  CAR CENTER</Verbose>\n\t\t\t<Soundex>R534</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1805
3075
- E SKY HARBOR CIRCLE N</Location>\n\t\t\t<Latitude>33.432865</Latitude>\n\t\t\t<Longitude>-112.043226</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7585</Id>\n\t\t\t<Verbose>RENTAL
3076
- CAR CENTER</Verbose>\n\t\t\t<Soundex>R534</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1805
3077
2063
  E SKY HARBOR CIRCLE N</Location>\n\t\t\t<Latitude>33.432865</Latitude>\n\t\t\t<Longitude>-112.043226</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7321</Id>\n\t\t\t<Verbose>RESTHAVEN
3078
2064
  PARK CEMETERY/GLENDALE</Verbose>\n\t\t\t<Soundex>R231</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>6290
3079
2065
  W NORTHERN AVE</Location>\n\t\t\t<Latitude>33.552963</Latitude>\n\t\t\t<Longitude>-112.194773</Longitude>\n\t\t\t<Type>CEM</Type>\n\t\t\t<Typedescription>CEMETARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5038</Id>\n\t\t\t<Verbose>RESTHAVEN
@@ -3089,9 +2075,6 @@ http_interactions:
3089
2075
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5203</Id>\n\t\t\t<Verbose>RIPARIAN
3090
2076
  PRESERVE AT WATER RANCH</Verbose>\n\t\t\t<Soundex>R165</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>2757
3091
2077
  E GUADALUPE RD</Location>\n\t\t\t<Latitude>33.364840</Latitude>\n\t\t\t<Longitude>-111.732903</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3092
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85234</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5203</Id>\n\t\t\t<Verbose>RIPARIAN
3093
- PRESERVE AT WATER RANCH</Verbose>\n\t\t\t<Soundex>R165</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>2757
3094
- E GUADALUPE RD</Location>\n\t\t\t<Latitude>33.364840</Latitude>\n\t\t\t<Longitude>-111.732903</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3095
2078
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85234</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7502</Id>\n\t\t\t<Verbose>RITZ-CARLTON
3096
2079
  PHOENIX</Verbose>\n\t\t\t<Soundex>R322</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2401
3097
2080
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509217</Latitude>\n\t\t\t<Longitude>-112.030114</Longitude>\n\t\t\t<Type>HOTEL</Type>\n\t\t\t<Typedescription>HOTELS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5089</Id>\n\t\t\t<Verbose>RIVERVIEW
@@ -3108,9 +2091,6 @@ http_interactions:
3108
2091
  N MILL AVE</Location>\n\t\t\t<Latitude>33.443338</Latitude>\n\t\t\t<Longitude>-111.948487</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7930</Id>\n\t\t\t<Verbose>ROOSEVELT
3109
2092
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>R214</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10879)
3110
2093
  # ROOSEVELT/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.459821</Latitude>\n\t\t\t<Longitude>-112.073847</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3111
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7930</Id>\n\t\t\t<Verbose>ROOSEVELT
3112
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>R214</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10879)
3113
- # ROOSEVELT/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.459821</Latitude>\n\t\t\t<Longitude>-112.073847</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3114
2094
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5775</Id>\n\t\t\t<Verbose>ROSE
3115
2095
  MOFFORD SPORTS COMPLEX</Verbose>\n\t\t\t<Soundex>R251</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>9833
3116
2096
  N 25TH AVE</Location>\n\t\t\t<Latitude>33.576474</Latitude>\n\t\t\t<Longitude>-112.111939</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -3130,21 +2110,12 @@ http_interactions:
3130
2110
  N 59TH AVE</Location>\n\t\t\t<Latitude>33.574701</Latitude>\n\t\t\t<Longitude>-112.186090</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85302</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7503</Id>\n\t\t\t<Verbose>SAINT
3131
2111
  MARYS WESTSIDE FOOD BANK</Verbose>\n\t\t\t<Soundex>S535</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2831
3132
2112
  N 31ST AVE</Location>\n\t\t\t<Latitude>33.479778</Latitude>\n\t\t\t<Longitude>-112.125715</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3133
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7503</Id>\n\t\t\t<Verbose>SAINT
3134
- MARYS WESTSIDE FOOD BANK</Verbose>\n\t\t\t<Soundex>S535</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2831
3135
- N 31ST AVE</Location>\n\t\t\t<Latitude>33.479778</Latitude>\n\t\t\t<Longitude>-112.125715</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3136
2113
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7504</Id>\n\t\t\t<Verbose>SAINT
3137
2114
  VINCENT DE PAUL SOCIETY</Verbose>\n\t\t\t<Soundex>S531</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>420
3138
2115
  W WATKINS ST</Location>\n\t\t\t<Latitude>33.425841</Latitude>\n\t\t\t<Longitude>-112.078693</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3139
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7504</Id>\n\t\t\t<Verbose>SAINT
3140
- VINCENT DE PAUL SOCIETY</Verbose>\n\t\t\t<Soundex>S531</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>420
3141
- W WATKINS ST</Location>\n\t\t\t<Latitude>33.425841</Latitude>\n\t\t\t<Longitude>-112.078693</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3142
2116
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7906</Id>\n\t\t\t<Verbose>SALT
3143
2117
  RIVER FIELDS</Verbose>\n\t\t\t<Soundex>S436</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7555
3144
2118
  N PIMA RD</Location>\n\t\t\t<Latitude>33.548847</Latitude>\n\t\t\t<Longitude>-111.891275</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3145
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7906</Id>\n\t\t\t<Verbose>SALT
3146
- RIVER FIELDS</Verbose>\n\t\t\t<Soundex>S436</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7555
3147
- N PIMA RD</Location>\n\t\t\t<Latitude>33.548847</Latitude>\n\t\t\t<Longitude>-111.891275</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3148
2119
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7505</Id>\n\t\t\t<Verbose>SALT
3149
2120
  RIVER PROJECT HEADQUARTERS</Verbose>\n\t\t\t<Soundex>S436</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1521
3150
2121
  N PROJECT DR</Location>\n\t\t\t<Latitude>33.444977</Latitude>\n\t\t\t<Longitude>-111.954039</Longitude>\n\t\t\t<Type>BUS</Type>\n\t\t\t<Typedescription>MAJOR
@@ -3153,28 +2124,18 @@ http_interactions:
3153
2124
  N 28TH ST</Location>\n\t\t\t<Latitude>33.487056</Latitude>\n\t\t\t<Longitude>-112.021584</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3154
2125
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7897</Id>\n\t\t\t<Verbose>SAM
3155
2126
  GARCIA WESTERN AVENUE LIBRARY</Verbose>\n\t\t\t<Soundex>S526</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>S
3156
- 4TH ST &amp; E WESTERN AVE</Location>\n\t\t\t<Latitude>33.435243</Latitude>\n\t\t\t<Longitude>-112.345062</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7897</Id>\n\t\t\t<Verbose>SAM
3157
- GARCIA WESTERN AVENUE LIBRARY</Verbose>\n\t\t\t<Soundex>S526</Soundex>\n\t\t\t<Area>AV</Area>\n\t\t\t<Areacode>Avondale</Areacode>\n\t\t\t<Location>S
3158
2127
  4TH ST &amp; E WESTERN AVE</Location>\n\t\t\t<Latitude>33.435243</Latitude>\n\t\t\t<Longitude>-112.345062</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85323</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5316</Id>\n\t\t\t<Verbose>SAN
3159
2128
  MARCOS PARK</Verbose>\n\t\t\t<Soundex>S556</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>712
3160
2129
  W FAIRVIEW ST</Location>\n\t\t\t<Latitude>33.295785</Latitude>\n\t\t\t<Longitude>-111.851597</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85225</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7647</Id>\n\t\t\t<Verbose>SANTAN
3161
2130
  VILLAGE MALL</Verbose>\n\t\t\t<Soundex>S535</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>E
3162
2131
  WILLIAMS FIELD RD &amp; S SAN TAN VILLAGE PKWY</Location>\n\t\t\t<Latitude>33.306955</Latitude>\n\t\t\t<Longitude>-111.742607</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3163
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85295</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7647</Id>\n\t\t\t<Verbose>SANTAN
3164
- VILLAGE MALL</Verbose>\n\t\t\t<Soundex>S535</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>E
3165
- WILLIAMS FIELD RD &amp; S SAN TAN VILLAGE PKWY</Location>\n\t\t\t<Latitude>33.306955</Latitude>\n\t\t\t<Longitude>-111.742607</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3166
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85295</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7367</Id>\n\t\t\t<Verbose>SCC</Verbose>\n\t\t\t<Soundex>S000</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
2132
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85295</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7367</Id>\n\t\t\t<Verbose>SCC</Verbose>\n\t\t\t<Soundex>S000</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
3167
2133
  County</Areacode>\n\t\t\t<Location>9000 E CHAPARRAL RD</Location>\n\t\t\t<Latitude>33.512053</Latitude>\n\t\t\t<Longitude>-111.880349</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
3168
2134
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85256</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5798</Id>\n\t\t\t<Verbose>SCOTTSDALE
3169
2135
  AIRPORT</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>15000
3170
- N AIRPORT DR</Location>\n\t\t\t<Latitude>33.621565</Latitude>\n\t\t\t<Longitude>-111.916801</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5798</Id>\n\t\t\t<Verbose>SCOTTSDALE
3171
- AIRPORT</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>15000
3172
2136
  N AIRPORT DR</Location>\n\t\t\t<Latitude>33.621565</Latitude>\n\t\t\t<Longitude>-111.916801</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7506</Id>\n\t\t\t<Verbose>SCOTTSDALE
3173
2137
  CENTER FOR THE PERFORMING ART</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7380
3174
2138
  N 2ND ST</Location>\n\t\t\t<Latitude>33.491413</Latitude>\n\t\t\t<Longitude>-111.923228</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3175
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7506</Id>\n\t\t\t<Verbose>SCOTTSDALE
3176
- CENTER FOR THE PERFORMING ART</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7380
3177
- N 2ND ST</Location>\n\t\t\t<Latitude>33.491413</Latitude>\n\t\t\t<Longitude>-111.923228</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3178
2139
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7390</Id>\n\t\t\t<Verbose>SCOTTSDALE
3179
2140
  CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>4725
3180
2141
  N SCOTTSDALE RD</Location>\n\t\t\t<Latitude>33.505271</Latitude>\n\t\t\t<Longitude>-111.926110</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
@@ -3193,60 +2154,35 @@ http_interactions:
3193
2154
  / TOWN HALLS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5456</Id>\n\t\t\t<Verbose>SCOTTSDALE
3194
2155
  COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
3195
2156
  County</Areacode>\n\t\t\t<Location>9000 E CHAPARRAL RD</Location>\n\t\t\t<Latitude>33.512091</Latitude>\n\t\t\t<Longitude>-111.880349</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
3196
- COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5456</Id>\n\t\t\t<Verbose>SCOTTSDALE
3197
- COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
3198
- County</Areacode>\n\t\t\t<Location>9000 E CHAPARRAL RD</Location>\n\t\t\t<Latitude>33.512091</Latitude>\n\t\t\t<Longitude>-111.880349</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
3199
2157
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7979</Id>\n\t\t\t<Verbose>SCOTTSDALE
3200
2158
  COMMUNITY COLLEGE PNR</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
3201
2159
  County</Areacode>\n\t\t\t<Location>(12044) # SCC PARK N RIDE OUTER CIRCLE</Location>\n\t\t\t<Latitude>33.509905</Latitude>\n\t\t\t<Longitude>-111.879561</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3202
2160
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
3203
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7979</Id>\n\t\t\t<Verbose>SCOTTSDALE
3204
- COMMUNITY COLLEGE PNR</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>CO</Area>\n\t\t\t<Areacode>Maricopa
3205
- County</Areacode>\n\t\t\t<Location>(12044) # SCC PARK N RIDE OUTER CIRCLE</Location>\n\t\t\t<Latitude>33.509905</Latitude>\n\t\t\t<Longitude>-111.879561</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3206
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
3207
2161
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7087</Id>\n\t\t\t<Verbose>SCOTTSDALE
3208
2162
  FASHION SQUARE</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7014
3209
2163
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.502237</Latitude>\n\t\t\t<Longitude>-111.929263</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3210
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7087</Id>\n\t\t\t<Verbose>SCOTTSDALE
3211
- FASHION SQUARE</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7014
3212
- E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.502237</Latitude>\n\t\t\t<Longitude>-111.929263</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3213
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5725</Id>\n\t\t\t<Verbose>SCOTTSDALE
2164
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5725</Id>\n\t\t\t<Verbose>SCOTTSDALE
3214
2165
  FIESTA</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>N
3215
2166
  90TH ST &amp; E SHEA BLVD</Location>\n\t\t\t<Latitude>33.582533</Latitude>\n\t\t\t<Longitude>-111.886116</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3216
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5125</Id>\n\t\t\t<Verbose>SCOTTSDALE
3217
- HEALTHCARE - OSBORN</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7400
3218
- E OSBORN RD</Location>\n\t\t\t<Latitude>33.487635</Latitude>\n\t\t\t<Longitude>-111.921843</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3219
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5125</Id>\n\t\t\t<Verbose>SCOTTSDALE
2167
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5125</Id>\n\t\t\t<Verbose>SCOTTSDALE
3220
2168
  HEALTHCARE - OSBORN</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7400
3221
2169
  E OSBORN RD</Location>\n\t\t\t<Latitude>33.487635</Latitude>\n\t\t\t<Longitude>-111.921843</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3222
2170
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5126</Id>\n\t\t\t<Verbose>SCOTTSDALE
3223
2171
  HEALTHCARE SHEA</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>9003
3224
2172
  E SHEA BLVD</Location>\n\t\t\t<Latitude>33.582536</Latitude>\n\t\t\t<Longitude>-111.884975</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3225
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85260</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5126</Id>\n\t\t\t<Verbose>SCOTTSDALE
3226
- HEALTHCARE SHEA</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>9003
3227
- E SHEA BLVD</Location>\n\t\t\t<Latitude>33.582536</Latitude>\n\t\t\t<Longitude>-111.884975</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3228
2173
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85260</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7879</Id>\n\t\t\t<Verbose>SCOTTSDALE
3229
2174
  HEALTHCARE THOMPSON PEAK</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7400
3230
2175
  E THOMPSON PEAK PKWY</Location>\n\t\t\t<Latitude>33.669665</Latitude>\n\t\t\t<Longitude>-111.921621</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3231
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85255</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7879</Id>\n\t\t\t<Verbose>SCOTTSDALE
3232
- HEALTHCARE THOMPSON PEAK</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7400
3233
- E THOMPSON PEAK PKWY</Location>\n\t\t\t<Latitude>33.669665</Latitude>\n\t\t\t<Longitude>-111.921621</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3234
2176
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85255</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5205</Id>\n\t\t\t<Verbose>SCOTTSDALE
3235
2177
  HISTORICAL MUSEUM</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7333
3236
2178
  E SCOTTSDALE HEALTHCARE DR</Location>\n\t\t\t<Latitude>33.671874</Latitude>\n\t\t\t<Longitude>-111.922927</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85255</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7386</Id>\n\t\t\t<Verbose>SCOTTSDALE
3237
2179
  MUSEUM OF CONTEMPORARY ART</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7372
3238
2180
  E 2ND ST</Location>\n\t\t\t<Latitude>33.491293</Latitude>\n\t\t\t<Longitude>-111.922551</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7155</Id>\n\t\t\t<Verbose>SCOTTSDALE
3239
2181
  PUBLIC LIBRARY CIVIC CENTER B</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>3839
3240
- N CIVIC CENTER BLVD</Location>\n\t\t\t<Latitude>33.491830</Latitude>\n\t\t\t<Longitude>-111.921734</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7155</Id>\n\t\t\t<Verbose>SCOTTSDALE
3241
- PUBLIC LIBRARY CIVIC CENTER B</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>3839
3242
2182
  N CIVIC CENTER BLVD</Location>\n\t\t\t<Latitude>33.491830</Latitude>\n\t\t\t<Longitude>-111.921734</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7189</Id>\n\t\t\t<Verbose>SCOTTSDALE
3243
2183
  PUBLIC LIBRARY MUSTANG BRANCH</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>10101
3244
- N 90TH ST</Location>\n\t\t\t<Latitude>33.578190</Latitude>\n\t\t\t<Longitude>-111.886187</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7189</Id>\n\t\t\t<Verbose>SCOTTSDALE
3245
- PUBLIC LIBRARY MUSTANG BRANCH</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>10101
3246
2184
  N 90TH ST</Location>\n\t\t\t<Latitude>33.578190</Latitude>\n\t\t\t<Longitude>-111.886187</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5162</Id>\n\t\t\t<Verbose>SCOTTSDALE
3247
2185
  PUBLIC LIBRARY PALOMINO BRANC</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>12575
3248
- E VIA LINDA ST</Location>\n\t\t\t<Latitude>33.589677</Latitude>\n\t\t\t<Longitude>-111.808003</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5162</Id>\n\t\t\t<Verbose>SCOTTSDALE
3249
- PUBLIC LIBRARY PALOMINO BRANC</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>12575
3250
2186
  E VIA LINDA ST</Location>\n\t\t\t<Latitude>33.589677</Latitude>\n\t\t\t<Longitude>-111.808003</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85259</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7521</Id>\n\t\t\t<Verbose>SCOTTSDALE
3251
2187
  RANCH PARK</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>10400
3252
2188
  E VIA LINDA DR</Location>\n\t\t\t<Latitude>33.574465</Latitude>\n\t\t\t<Longitude>-111.856943</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -3255,24 +2191,15 @@ http_interactions:
3255
2191
  E INDIAN BEND RD</Location>\n\t\t\t<Latitude>33.538579</Latitude>\n\t\t\t<Longitude>-111.917149</Longitude>\n\t\t\t<Type>GOLF</Type>\n\t\t\t<Typedescription>GOLF</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85250</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5776</Id>\n\t\t\t<Verbose>SCOTTSDALE
3256
2192
  STADIUM</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7408
3257
2193
  E OSBORN RD</Location>\n\t\t\t<Latitude>33.487621</Latitude>\n\t\t\t<Longitude>-111.919622</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3258
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5776</Id>\n\t\t\t<Verbose>SCOTTSDALE
3259
- STADIUM</Verbose>\n\t\t\t<Soundex>S323</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7408
3260
- E OSBORN RD</Location>\n\t\t\t<Latitude>33.487621</Latitude>\n\t\t\t<Longitude>-111.919622</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3261
2194
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7878</Id>\n\t\t\t<Verbose>SEA
3262
2195
  LIFE ARIZONA</Verbose>\n\t\t\t<Soundex>S416</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>&lt;1854&gt;
3263
2196
  # ARIZONA MILLS MALL</Location>\n\t\t\t<Latitude>33.384984</Latitude>\n\t\t\t<Longitude>-111.962667</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3264
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7878</Id>\n\t\t\t<Verbose>SEA
3265
- LIFE ARIZONA</Verbose>\n\t\t\t<Soundex>S416</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>&lt;1854&gt;
3266
- # ARIZONA MILLS MALL</Location>\n\t\t\t<Latitude>33.384984</Latitude>\n\t\t\t<Longitude>-111.962667</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3267
2197
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5764</Id>\n\t\t\t<Verbose>SEVILLA
3268
2198
  WEST SCHOOL</Verbose>\n\t\t\t<Soundex>S142</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3851
3269
2199
  W MISSOURI AVE</Location>\n\t\t\t<Latitude>33.516728</Latitude>\n\t\t\t<Longitude>-112.142159</Longitude>\n\t\t\t<Type>SM</Type>\n\t\t\t<Typedescription>SCHOOLS:
3270
2200
  MIDDLE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85019</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7362</Id>\n\t\t\t<Verbose>SHEA
3271
2201
  BLVD SR-51 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>S141</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10203
3272
2202
  N 32ND ST</Location>\n\t\t\t<Latitude>33.580754</Latitude>\n\t\t\t<Longitude>-112.010994</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3273
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85028</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7362</Id>\n\t\t\t<Verbose>SHEA
3274
- BLVD SR-51 PARK AND RIDE</Verbose>\n\t\t\t<Soundex>S141</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>10203
3275
- N 32ND ST</Location>\n\t\t\t<Latitude>33.580754</Latitude>\n\t\t\t<Longitude>-112.010994</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3276
2203
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85028</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5318</Id>\n\t\t\t<Verbose>SHEEPHERDERS
3277
2204
  PARK</Verbose>\n\t\t\t<Soundex>S163</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>2455
3278
2205
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.467006</Latitude>\n\t\t\t<Longitude>-111.778468</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85213</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7508</Id>\n\t\t\t<Verbose>SHEMER
@@ -3293,54 +2220,29 @@ http_interactions:
3293
2220
  N CENTER ST</Location>\n\t\t\t<Latitude>33.419366</Latitude>\n\t\t\t<Longitude>-111.831463</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7975</Id>\n\t\t\t<Verbose>SKY
3294
2221
  HARBOR AIRPORT EAST ECONOMY PARKING</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11953)
3295
2222
  # SKYTRAIN - EAST ECONOMY PARKING</Location>\n\t\t\t<Latitude>33.434635</Latitude>\n\t\t\t<Longitude>-111.984962</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
3296
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7975</Id>\n\t\t\t<Verbose>SKY
3297
- HARBOR AIRPORT EAST ECONOMY PARKING</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11953)
3298
- # SKYTRAIN - EAST ECONOMY PARKING</Location>\n\t\t\t<Latitude>33.434635</Latitude>\n\t\t\t<Longitude>-111.984962</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
3299
2223
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7327</Id>\n\t\t\t<Verbose>SKY
3300
2224
  HARBOR AIRPORT TERMINAL 2 EB ONLY</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3200
3301
- E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.436556</Latitude>\n\t\t\t<Longitude>-112.014194</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7327</Id>\n\t\t\t<Verbose>SKY
3302
- HARBOR AIRPORT TERMINAL 2 EB ONLY</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3200
3303
2225
  E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.436556</Latitude>\n\t\t\t<Longitude>-112.014194</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7317</Id>\n\t\t\t<Verbose>SKY
3304
2226
  HARBOR AIRPORT TERMINAL 3 EB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3400
3305
- E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.435884</Latitude>\n\t\t\t<Longitude>-112.006189</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7317</Id>\n\t\t\t<Verbose>SKY
3306
- HARBOR AIRPORT TERMINAL 3 EB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3400
3307
2227
  E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.435884</Latitude>\n\t\t\t<Longitude>-112.006189</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7319</Id>\n\t\t\t<Verbose>SKY
3308
2228
  HARBOR AIRPORT TERMINAL 3 WB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4000
3309
- E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.434975</Latitude>\n\t\t\t<Longitude>-112.006480</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7319</Id>\n\t\t\t<Verbose>SKY
3310
- HARBOR AIRPORT TERMINAL 3 WB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4000
3311
2229
  E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.434975</Latitude>\n\t\t\t<Longitude>-112.006480</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7318</Id>\n\t\t\t<Verbose>SKY
3312
2230
  HARBOR AIRPORT TERMINAL 4 EB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3800
3313
- E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.435879</Latitude>\n\t\t\t<Longitude>-111.997247</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7318</Id>\n\t\t\t<Verbose>SKY
3314
- HARBOR AIRPORT TERMINAL 4 EB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3800
3315
2231
  E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.435879</Latitude>\n\t\t\t<Longitude>-111.997247</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7974</Id>\n\t\t\t<Verbose>SKY
3316
2232
  HARBOR AIRPORT TERMINAL 4 SKYTRAIN</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11952)
3317
2233
  # SKYTRAIN - SKY HARBOR TERMINAL 4</Location>\n\t\t\t<Latitude>33.434520</Latitude>\n\t\t\t<Longitude>-111.996145</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
3318
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7974</Id>\n\t\t\t<Verbose>SKY
3319
- HARBOR AIRPORT TERMINAL 4 SKYTRAIN</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11952)
3320
- # SKYTRAIN - SKY HARBOR TERMINAL 4</Location>\n\t\t\t<Latitude>33.434520</Latitude>\n\t\t\t<Longitude>-111.996145</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
3321
2234
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5009</Id>\n\t\t\t<Verbose>SKY
3322
2235
  HARBOR AIRPORT TERMINAL 4 WB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3700
3323
- E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.434520</Latitude>\n\t\t\t<Longitude>-111.996145</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5009</Id>\n\t\t\t<Verbose>SKY
3324
- HARBOR AIRPORT TERMINAL 4 WB</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3700
3325
2236
  E SKY HARBOR BLVD</Location>\n\t\t\t<Latitude>33.434520</Latitude>\n\t\t\t<Longitude>-111.996145</Longitude>\n\t\t\t<Type>AIRPT</Type>\n\t\t\t<Typedescription>AIRPORT</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7507</Id>\n\t\t\t<Verbose>SKYSONG
3326
2237
  ASU SCOTTSDALE INNOVATION CENTER</Verbose>\n\t\t\t<Soundex>S252</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>7205
3327
2238
  E MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465740</Latitude>\n\t\t\t<Longitude>-111.926112</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
3328
2239
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85257</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7973</Id>\n\t\t\t<Verbose>SKYTRAIN
3329
2240
  TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11786)
3330
2241
  # SKY TRAIN</Location>\n\t\t\t<Latitude>33.447109</Latitude>\n\t\t\t<Longitude>-111.990439</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3331
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7973</Id>\n\t\t\t<Verbose>SKYTRAIN
3332
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11786)
3333
- # SKY TRAIN</Location>\n\t\t\t<Latitude>33.447109</Latitude>\n\t\t\t<Longitude>-111.990439</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3334
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7973</Id>\n\t\t\t<Verbose>SKYTRAIN
3335
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(11786)
3336
- # SKY TRAIN</Location>\n\t\t\t<Latitude>33.447109</Latitude>\n\t\t\t<Longitude>-111.990439</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3337
2242
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7624</Id>\n\t\t\t<Verbose>SMAP</Verbose>\n\t\t\t<Soundex>S510</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>S
3338
2243
  SMITH RD &amp; E APACHE BLVD</Location>\n\t\t\t<Latitude>33.414779</Latitude>\n\t\t\t<Longitude>-111.900489</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7944</Id>\n\t\t\t<Verbose>SMITH
3339
2244
  MARTIN APACHE BLVD LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>S535</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10888)
3340
2245
  # SMITH-MARTIN/APACHE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414738</Latitude>\n\t\t\t<Longitude>-111.901498</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3341
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7944</Id>\n\t\t\t<Verbose>SMITH
3342
- MARTIN APACHE BLVD LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>S535</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10888)
3343
- # SMITH-MARTIN/APACHE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414738</Latitude>\n\t\t\t<Longitude>-111.901498</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3344
2246
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7587</Id>\n\t\t\t<Verbose>SNEDIGAR
3345
2247
  RECREATION CENTER</Verbose>\n\t\t\t<Soundex>S532</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>4490
3346
2248
  S BASHA RD</Location>\n\t\t\t<Latitude>33.238020</Latitude>\n\t\t\t<Longitude>-111.858478</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -3350,75 +2252,18 @@ http_interactions:
3350
2252
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85248</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7522</Id>\n\t\t\t<Verbose>SOCIAL
3351
2253
  SECURITY OFFICE/59TH AVE</Verbose>\n\t\t\t<Soundex>S242</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5907
3352
2254
  W KINGS AVE</Location>\n\t\t\t<Latitude>33.635595</Latitude>\n\t\t\t<Longitude>-112.186574</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3353
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85306</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7522</Id>\n\t\t\t<Verbose>SOCIAL
3354
- SECURITY OFFICE/59TH AVE</Verbose>\n\t\t\t<Soundex>S242</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>5907
3355
- W KINGS AVE</Location>\n\t\t\t<Latitude>33.635595</Latitude>\n\t\t\t<Longitude>-112.186574</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3356
2255
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85306</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7523</Id>\n\t\t\t<Verbose>SOCIAL
3357
2256
  SECURITY OFFICE/7TH AVENUE</Verbose>\n\t\t\t<Soundex>S242</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>250
3358
2257
  N 7TH AVE</Location>\n\t\t\t<Latitude>33.451112</Latitude>\n\t\t\t<Longitude>-112.082558</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3359
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7523</Id>\n\t\t\t<Verbose>SOCIAL
3360
- SECURITY OFFICE/7TH AVENUE</Verbose>\n\t\t\t<Soundex>S242</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>250
3361
- N 7TH AVE</Location>\n\t\t\t<Latitude>33.451112</Latitude>\n\t\t\t<Longitude>-112.082558</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3362
2258
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7524</Id>\n\t\t\t<Verbose>SOCIAL
3363
2259
  SECURITY OFFICE/TATUM</Verbose>\n\t\t\t<Soundex>S242</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>16241
3364
2260
  N TATUM BLVD</Location>\n\t\t\t<Latitude>33.633694</Latitude>\n\t\t\t<Longitude>-111.977800</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3365
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7524</Id>\n\t\t\t<Verbose>SOCIAL
3366
- SECURITY OFFICE/TATUM</Verbose>\n\t\t\t<Soundex>S242</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>16241
3367
- N TATUM BLVD</Location>\n\t\t\t<Latitude>33.633694</Latitude>\n\t\t\t<Longitude>-111.977800</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3368
2261
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3369
2262
  AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3370
2263
  N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3371
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3372
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3373
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3374
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3375
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3376
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3377
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3378
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3379
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3380
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3381
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3382
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3383
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3384
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3385
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3386
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3387
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3388
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3389
- REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7149</Id>\n\t\t\t<Verbose>SOCORRO
3390
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1617
3391
- N 32ND ST</Location>\n\t\t\t<Latitude>33.465729</Latitude>\n\t\t\t<Longitude>-112.012930</Longitude>\n\t\t\t<Type>FRADP</Type>\n\t\t\t<Typedescription>FARE
3392
2264
  REDUCED ALL DAY PASS-$2.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85008</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3393
2265
  AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3394
2266
  W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3395
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3396
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3397
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3398
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3399
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3400
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3401
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3402
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3403
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3404
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3405
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3406
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3407
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3408
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3409
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3410
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3411
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3412
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3413
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3414
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3415
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3416
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3417
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3418
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3419
- LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7150</Id>\n\t\t\t<Verbose>SOCORRO
3420
- AGENCY</Verbose>\n\t\t\t<Soundex>S262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2846
3421
- W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451189</Latitude>\n\t\t\t<Longitude>-112.121262</Longitude>\n\t\t\t<Type>FLADP</Type>\n\t\t\t<Typedescription>FARE
3422
2267
  LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5319</Id>\n\t\t\t<Verbose>SOLANO
3423
2268
  PARK</Verbose>\n\t\t\t<Soundex>S451</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5625
3424
2269
  N 17TH ST</Location>\n\t\t\t<Latitude>33.519252</Latitude>\n\t\t\t<Longitude>-112.044995</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5421</Id>\n\t\t\t<Verbose>SOUTH
@@ -3430,9 +2275,6 @@ http_interactions:
3430
2275
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85042</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5458</Id>\n\t\t\t<Verbose>SOUTH
3431
2276
  MOUNTAIN COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>S355</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7050
3432
2277
  S 24TH ST</Location>\n\t\t\t<Latitude>33.381657</Latitude>\n\t\t\t<Longitude>-112.030830</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
3433
- COLLEGES</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5458</Id>\n\t\t\t<Verbose>SOUTH
3434
- MOUNTAIN COMMUNITY COLLEGE</Verbose>\n\t\t\t<Soundex>S355</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>7050
3435
- S 24TH ST</Location>\n\t\t\t<Latitude>33.381657</Latitude>\n\t\t\t<Longitude>-112.030830</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
3436
2278
  COLLEGES</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5692</Id>\n\t\t\t<Verbose>SOUTH
3437
2279
  MOUNTAIN HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>S355</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5401
3438
2280
  S 7TH ST</Location>\n\t\t\t<Latitude>33.396520</Latitude>\n\t\t\t<Longitude>-112.064638</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -3455,7 +2297,7 @@ http_interactions:
3455
2297
  N GREENFIELD RD</Location>\n\t\t\t<Latitude>33.364807</Latitude>\n\t\t\t<Longitude>-111.738892</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85234</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7192</Id>\n\t\t\t<Verbose>SPECTRUM
3456
2298
  MALL</Verbose>\n\t\t\t<Soundex>S123</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1703
3457
2299
  W BETHANY HOME RD</Location>\n\t\t\t<Latitude>33.524061</Latitude>\n\t\t\t<Longitude>-112.095524</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3458
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5438</Id>\n\t\t\t<Verbose>SQUAW
2300
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5438</Id>\n\t\t\t<Verbose>SQUAW
3459
2301
  PEAK RECREATION CENTER</Verbose>\n\t\t\t<Soundex>S126</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>24TH
3460
2302
  ST &amp; GLENDALE</Location>\n\t\t\t<Latitude>33.538590</Latitude>\n\t\t\t<Longitude>-112.110875</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
3461
2303
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85021</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7054</Id>\n\t\t\t<Verbose>SQUAW
@@ -3464,9 +2306,6 @@ http_interactions:
3464
2306
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5127</Id>\n\t\t\t<Verbose>ST
3465
2307
  JOSEPHS HOSPITAL - MEDICAL CEN</Verbose>\n\t\t\t<Soundex>S322</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>350
3466
2308
  W THOMAS RD</Location>\n\t\t\t<Latitude>33.480288</Latitude>\n\t\t\t<Longitude>-112.078711</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3467
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5127</Id>\n\t\t\t<Verbose>ST
3468
- JOSEPHS HOSPITAL - MEDICAL CEN</Verbose>\n\t\t\t<Soundex>S322</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>350
3469
- W THOMAS RD</Location>\n\t\t\t<Latitude>33.480288</Latitude>\n\t\t\t<Longitude>-112.078711</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3470
2309
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5128</Id>\n\t\t\t<Verbose>ST
3471
2310
  LUKES HOSPITAL</Verbose>\n\t\t\t<Soundex>S342</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1800
3472
2311
  E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451403</Latitude>\n\t\t\t<Longitude>-112.043380</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
@@ -3517,48 +2356,6 @@ http_interactions:
3517
2356
  E VOGEL AVE</Location>\n\t\t\t<Latitude>33.573304</Latitude>\n\t\t\t<Longitude>-112.062938</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3518
2357
  TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3519
2358
  N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3520
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3521
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3522
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3523
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3524
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3525
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3526
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3527
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3528
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3529
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3530
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3531
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3532
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3533
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3534
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3535
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3536
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3537
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3538
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3539
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3540
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3541
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3542
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3543
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3544
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3545
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3546
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3547
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3548
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3549
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3550
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3551
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3552
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3553
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3554
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3555
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3556
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3557
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3558
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3559
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5423</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3560
- TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>8927
3561
- N 3RD ST</Location>\n\t\t\t<Latitude>33.567075</Latitude>\n\t\t\t<Longitude>-112.069173</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3562
2359
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7543</Id>\n\t\t\t<Verbose>SUNNYSLOPE
3563
2360
  YOUTH CENTER</Verbose>\n\t\t\t<Soundex>S524</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1702
3564
2361
  W PEORIA AVE</Location>\n\t\t\t<Latitude>33.582919</Latitude>\n\t\t\t<Longitude>-112.095587</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -3568,60 +2365,30 @@ http_interactions:
3568
2365
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7336</Id>\n\t\t\t<Verbose>SUPERIOR
3569
2366
  COURT/EAST COURT BUILDING</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>101
3570
2367
  W JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447131</Latitude>\n\t\t\t<Longitude>-112.075120</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3571
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7336</Id>\n\t\t\t<Verbose>SUPERIOR
3572
- COURT/EAST COURT BUILDING</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>101
3573
- W JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447131</Latitude>\n\t\t\t<Longitude>-112.075120</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3574
2368
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7332</Id>\n\t\t\t<Verbose>SUPERIOR
3575
2369
  COURT/NORTHEAST REGIONAL CENTER</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18380
3576
2370
  N 40TH ST</Location>\n\t\t\t<Latitude>33.653339</Latitude>\n\t\t\t<Longitude>-111.996242</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3577
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7332</Id>\n\t\t\t<Verbose>SUPERIOR
3578
- COURT/NORTHEAST REGIONAL CENTER</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>18380
3579
- N 40TH ST</Location>\n\t\t\t<Latitude>33.653339</Latitude>\n\t\t\t<Longitude>-111.996242</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3580
2371
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7331</Id>\n\t\t\t<Verbose>SUPERIOR
3581
2372
  COURT/NORTHWEST REGIONAL CENTER</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>SU</Area>\n\t\t\t<Areacode>Surprise</Areacode>\n\t\t\t<Location>14300
3582
2373
  W TIERRA BUENA LN</Location>\n\t\t\t<Latitude>33.627413</Latitude>\n\t\t\t<Longitude>-112.367988</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3583
2374
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85374</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7334</Id>\n\t\t\t<Verbose>SUPERIOR
3584
2375
  COURT/OLD COURTHOUSE</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>125
3585
2376
  W JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447131</Latitude>\n\t\t\t<Longitude>-112.075432</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3586
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7334</Id>\n\t\t\t<Verbose>SUPERIOR
3587
- COURT/OLD COURTHOUSE</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>125
3588
- W JEFFERSON ST</Location>\n\t\t\t<Latitude>33.447131</Latitude>\n\t\t\t<Longitude>-112.075432</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3589
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7963</Id>\n\t\t\t<Verbose>SUPERIOR
3590
- COURT/SOUTH COURT TOWER</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>175
3591
- W MADISON ST</Location>\n\t\t\t<Latitude>33.446054</Latitude>\n\t\t\t<Longitude>-112.076057</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3592
2377
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7963</Id>\n\t\t\t<Verbose>SUPERIOR
3593
2378
  COURT/SOUTH COURT TOWER</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>175
3594
2379
  W MADISON ST</Location>\n\t\t\t<Latitude>33.446054</Latitude>\n\t\t\t<Longitude>-112.076057</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3595
2380
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7333</Id>\n\t\t\t<Verbose>SUPERIOR
3596
2381
  COURT/SOUTHEAST COURT</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>222
3597
2382
  E JAVELINA AVE</Location>\n\t\t\t<Latitude>33.380438</Latitude>\n\t\t\t<Longitude>-111.827357</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3598
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7333</Id>\n\t\t\t<Verbose>SUPERIOR
3599
- COURT/SOUTHEAST COURT</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>222
3600
- E JAVELINA AVE</Location>\n\t\t\t<Latitude>33.380438</Latitude>\n\t\t\t<Longitude>-111.827357</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3601
2383
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85210</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7335</Id>\n\t\t\t<Verbose>SUPERIOR
3602
2384
  COURT/WEST COURT BUILDING</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>111
3603
2385
  S 3RD AVE</Location>\n\t\t\t<Latitude>33.447010</Latitude>\n\t\t\t<Longitude>-112.077714</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3604
- HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7335</Id>\n\t\t\t<Verbose>SUPERIOR
3605
- COURT/WEST COURT BUILDING</Verbose>\n\t\t\t<Soundex>S166</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>111
3606
- S 3RD AVE</Location>\n\t\t\t<Latitude>33.447010</Latitude>\n\t\t\t<Longitude>-112.077714</Longitude>\n\t\t\t<Type>COURT</Type>\n\t\t\t<Typedescription>COURT
3607
2386
  HOUSE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7651</Id>\n\t\t\t<Verbose>SUPERSTITION
3608
2387
  SPRINGS TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11087)
3609
2388
  # SUPERSTITION SPRINGS TRANSIT CENTER</Location>\n\t\t\t<Latitude>33.387856</Latitude>\n\t\t\t<Longitude>-111.688986</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3610
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7651</Id>\n\t\t\t<Verbose>SUPERSTITION
3611
- SPRINGS TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11087)
3612
- # SUPERSTITION SPRINGS TRANSIT CENTER</Location>\n\t\t\t<Latitude>33.387856</Latitude>\n\t\t\t<Longitude>-111.688986</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3613
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7651</Id>\n\t\t\t<Verbose>SUPERSTITION
3614
- SPRINGS TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11087)
3615
- # SUPERSTITION SPRINGS TRANSIT CENTER</Location>\n\t\t\t<Latitude>33.387856</Latitude>\n\t\t\t<Longitude>-111.688986</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3616
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7651</Id>\n\t\t\t<Verbose>SUPERSTITION
3617
- SPRINGS TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11087)
3618
- # SUPERSTITION SPRINGS TRANSIT CENTER</Location>\n\t\t\t<Latitude>33.387856</Latitude>\n\t\t\t<Longitude>-111.688986</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3619
2389
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7226</Id>\n\t\t\t<Verbose>SUPERSTITION
3620
2390
  SPRINGS/PARK AND RIDE</Verbose>\n\t\t\t<Soundex>S162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(10620)
3621
2391
  # SUPERSTITION MALL PNR</Location>\n\t\t\t<Latitude>33.387143</Latitude>\n\t\t\t<Longitude>-111.689528</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3622
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7226</Id>\n\t\t\t<Verbose>SUPERSTITION
3623
- SPRINGS/PARK AND RIDE</Verbose>\n\t\t\t<Soundex>S162</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(10620)
3624
- # SUPERSTITION MALL PNR</Location>\n\t\t\t<Latitude>33.387143</Latitude>\n\t\t\t<Longitude>-111.689528</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3625
2392
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85206</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7292</Id>\n\t\t\t<Verbose>SURPRISE
3626
2393
  AQUATIC CENTER</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>UNK</Area>\n\t\t\t<Areacode>
3627
2394
  </Areacode>\n\t\t\t<Location>N BULLARD AVE &amp; W TIERRA BUENA LN</Location>\n\t\t\t<Latitude>33.627536</Latitude>\n\t\t\t<Longitude>-112.374449</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
@@ -3636,31 +2403,19 @@ http_interactions:
3636
2403
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7385</Id>\n\t\t\t<Verbose>SURPRISE
3637
2404
  PARK AND RIDE</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>SU</Area>\n\t\t\t<Areacode>Surprise</Areacode>\n\t\t\t<Location>13327
3638
2405
  W BELL RD</Location>\n\t\t\t<Latitude>33.638029</Latitude>\n\t\t\t<Longitude>-112.346575</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3639
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85374</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7385</Id>\n\t\t\t<Verbose>SURPRISE
3640
- PARK AND RIDE</Verbose>\n\t\t\t<Soundex>S616</Soundex>\n\t\t\t<Area>SU</Area>\n\t\t\t<Areacode>Surprise</Areacode>\n\t\t\t<Location>13327
3641
- W BELL RD</Location>\n\t\t\t<Latitude>33.638029</Latitude>\n\t\t\t<Longitude>-112.346575</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3642
2406
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85374</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7262</Id>\n\t\t\t<Verbose>SWIFT
3643
2407
  TRUCKING</Verbose>\n\t\t\t<Soundex>S133</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2200
3644
2408
  S 75TH AVE</Location>\n\t\t\t<Latitude>33.427710</Latitude>\n\t\t\t<Longitude>-112.221239</Longitude>\n\t\t\t<Type>OFPK</Type>\n\t\t\t<Typedescription>OFFICE
3645
2409
  PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85043</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7945</Id>\n\t\t\t<Verbose>SYCAMORE
3646
2410
  MAIN ST LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>S256</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(10890)
3647
2411
  # SYCAMORE/MAIN STREET LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414787</Latitude>\n\t\t\t<Longitude>-111.871629</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3648
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7945</Id>\n\t\t\t<Verbose>SYCAMORE
3649
- MAIN ST LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>S256</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(10890)
3650
- # SYCAMORE/MAIN STREET LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.414787</Latitude>\n\t\t\t<Longitude>-111.871629</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3651
2412
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7640</Id>\n\t\t\t<Verbose>SYCAMORE
3652
2413
  MAIN ST TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S256</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1804
3653
2414
  W MAIN ST</Location>\n\t\t\t<Latitude>33.416308</Latitude>\n\t\t\t<Longitude>-111.870312</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3654
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7640</Id>\n\t\t\t<Verbose>SYCAMORE
3655
- MAIN ST TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>S256</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1804
3656
- W MAIN ST</Location>\n\t\t\t<Latitude>33.416308</Latitude>\n\t\t\t<Longitude>-111.870312</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3657
2415
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7626</Id>\n\t\t\t<Verbose>SYMN</Verbose>\n\t\t\t<Soundex>S500</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>N
3658
2416
  SYCAMORE &amp; W MAIN ST</Location>\n\t\t\t<Latitude>33.414864</Latitude>\n\t\t\t<Longitude>-111.869999</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7315</Id>\n\t\t\t<Verbose>SYMPHONY
3659
2417
  HALL</Verbose>\n\t\t\t<Soundex>S515</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>225
3660
2418
  E ADAMS ST</Location>\n\t\t\t<Latitude>33.449317</Latitude>\n\t\t\t<Longitude>-112.071272</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3661
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7315</Id>\n\t\t\t<Verbose>SYMPHONY
3662
- HALL</Verbose>\n\t\t\t<Soundex>S515</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>225
3663
- E ADAMS ST</Location>\n\t\t\t<Latitude>33.449317</Latitude>\n\t\t\t<Longitude>-112.071272</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3664
2419
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5425</Id>\n\t\t\t<Verbose>TARGET
3665
2420
  SHOPPING CENTER</Verbose>\n\t\t\t<Soundex>T623</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1818
3666
2421
  E BASELINE RD</Location>\n\t\t\t<Latitude>33.378432</Latitude>\n\t\t\t<Longitude>-111.908288</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
@@ -3669,21 +2424,12 @@ http_interactions:
3669
2424
  W MORNINGSIDE DR</Location>\n\t\t\t<Latitude>33.648294</Latitude>\n\t\t\t<Longitude>-112.101452</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5324</Id>\n\t\t\t<Verbose>TEMPE
3670
2425
  BEACH PARK</Verbose>\n\t\t\t<Soundex>T511</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>80
3671
2426
  W RIO SALADO PKWY</Location>\n\t\t\t<Latitude>33.429557</Latitude>\n\t\t\t<Longitude>-111.941031</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3672
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5324</Id>\n\t\t\t<Verbose>TEMPE
3673
- BEACH PARK</Verbose>\n\t\t\t<Soundex>T511</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>80
3674
- W RIO SALADO PKWY</Location>\n\t\t\t<Latitude>33.429557</Latitude>\n\t\t\t<Longitude>-111.941031</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3675
2427
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5210</Id>\n\t\t\t<Verbose>TEMPE
3676
2428
  CENTER FOR THE ARTS</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>700
3677
2429
  W RIO SALADO PKWY</Location>\n\t\t\t<Latitude>33.430919</Latitude>\n\t\t\t<Longitude>-111.949211</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3678
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5210</Id>\n\t\t\t<Verbose>TEMPE
3679
- CENTER FOR THE ARTS</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>700
3680
- W RIO SALADO PKWY</Location>\n\t\t\t<Latitude>33.430919</Latitude>\n\t\t\t<Longitude>-111.949211</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3681
2430
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7107</Id>\n\t\t\t<Verbose>TEMPE
3682
2431
  CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>909
3683
2432
  E APACHE BLVD</Location>\n\t\t\t<Latitude>33.414765</Latitude>\n\t\t\t<Longitude>-111.926119</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3684
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7107</Id>\n\t\t\t<Verbose>TEMPE
3685
- CHAMBER OF COMMERCE</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>909
3686
- E APACHE BLVD</Location>\n\t\t\t<Latitude>33.414765</Latitude>\n\t\t\t<Longitude>-111.926119</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3687
2433
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5052</Id>\n\t\t\t<Verbose>TEMPE
3688
2434
  CITY HALL</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>31
3689
2435
  E 5TH ST</Location>\n\t\t\t<Latitude>33.425529</Latitude>\n\t\t\t<Longitude>-111.939437</Longitude>\n\t\t\t<Type>CITY</Type>\n\t\t\t<Typedescription>CITY
@@ -3696,15 +2442,9 @@ http_interactions:
3696
2442
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5062</Id>\n\t\t\t<Verbose>TEMPE
3697
2443
  COURT</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>140
3698
2444
  E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.937546</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3699
- LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5062</Id>\n\t\t\t<Verbose>TEMPE
3700
- COURT</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>140
3701
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.937546</Longitude>\n\t\t\t<Type>GOVT</Type>\n\t\t\t<Typedescription>GOVERNMENT
3702
2445
  LOCAL STATE FEDERAL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5778</Id>\n\t\t\t<Verbose>TEMPE
3703
2446
  DIABLO STADIUM COMPLEX</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>2200
3704
2447
  W ALAMEDA DR</Location>\n\t\t\t<Latitude>33.400077</Latitude>\n\t\t\t<Longitude>-111.974311</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3705
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5778</Id>\n\t\t\t<Verbose>TEMPE
3706
- DIABLO STADIUM COMPLEX</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>2200
3707
- W ALAMEDA DR</Location>\n\t\t\t<Latitude>33.400077</Latitude>\n\t\t\t<Longitude>-111.974311</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3708
2448
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5043</Id>\n\t\t\t<Verbose>TEMPE
3709
2449
  DOUBLE BUTTE CEMETERY</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>2505
3710
2450
  W BROADWAY RD</Location>\n\t\t\t<Latitude>33.407377</Latitude>\n\t\t\t<Longitude>-111.976712</Longitude>\n\t\t\t<Type>CEM</Type>\n\t\t\t<Typedescription>CEMETARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5696</Id>\n\t\t\t<Verbose>TEMPE
@@ -3712,17 +2452,10 @@ http_interactions:
3712
2452
  S MILL AVE</Location>\n\t\t\t<Latitude>33.408652</Latitude>\n\t\t\t<Longitude>-111.939835</Longitude>\n\t\t\t<Type>SH</Type>\n\t\t\t<Typedescription>SCHOOLS:
3713
2453
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5211</Id>\n\t\t\t<Verbose>TEMPE
3714
2454
  HISTORICAL MUSEUM</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>809
3715
- E SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392944</Latitude>\n\t\t\t<Longitude>-111.927637</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5211</Id>\n\t\t\t<Verbose>TEMPE
3716
- HISTORICAL MUSEUM</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>809
3717
2455
  E SOUTHERN AVE</Location>\n\t\t\t<Latitude>33.392944</Latitude>\n\t\t\t<Longitude>-111.927637</Longitude>\n\t\t\t<Type>MUS</Type>\n\t\t\t<Typedescription>MUSEUMS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7542</Id>\n\t\t\t<Verbose>TEMPE
3718
2456
  MARKETPLACE</Verbose>\n\t\t\t<Soundex>T515</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>S
3719
2457
  MCCLINTOCK DR &amp; E RIO SALADO PKWY</Location>\n\t\t\t<Latitude>33.432254</Latitude>\n\t\t\t<Longitude>-111.904625</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3720
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7542</Id>\n\t\t\t<Verbose>TEMPE
3721
- MARKETPLACE</Verbose>\n\t\t\t<Soundex>T515</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>S
3722
- MCCLINTOCK DR &amp; E RIO SALADO PKWY</Location>\n\t\t\t<Latitude>33.432254</Latitude>\n\t\t\t<Longitude>-111.904625</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3723
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7156</Id>\n\t\t\t<Verbose>TEMPE
3724
- PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>T511</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
3725
- S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7156</Id>\n\t\t\t<Verbose>TEMPE
2458
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7156</Id>\n\t\t\t<Verbose>TEMPE
3726
2459
  PUBLIC LIBRARY</Verbose>\n\t\t\t<Soundex>T511</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>3500
3727
2460
  S RURAL RD</Location>\n\t\t\t<Latitude>33.390166</Latitude>\n\t\t\t<Longitude>-111.926403</Longitude>\n\t\t\t<Type>LIB</Type>\n\t\t\t<Typedescription>LIBRARIES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85282</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5780</Id>\n\t\t\t<Verbose>TEMPE
3728
2461
  SPORTS COMPLEX</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(11591)
@@ -3733,15 +2466,9 @@ http_interactions:
3733
2466
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85284</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5129</Id>\n\t\t\t<Verbose>TEMPE
3734
2467
  ST LUKES HOSPITAL</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1500
3735
2468
  S MILL AVE</Location>\n\t\t\t<Latitude>33.412970</Latitude>\n\t\t\t<Longitude>-111.940017</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3736
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5129</Id>\n\t\t\t<Verbose>TEMPE
3737
- ST LUKES HOSPITAL</Verbose>\n\t\t\t<Soundex>T512</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1500
3738
- S MILL AVE</Location>\n\t\t\t<Latitude>33.412970</Latitude>\n\t\t\t<Longitude>-111.940017</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
3739
2469
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7232</Id>\n\t\t\t<Verbose>TEMPE
3740
2470
  TOWN LAKE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>620
3741
2471
  N MILL AVE</Location>\n\t\t\t<Latitude>33.435704</Latitude>\n\t\t\t<Longitude>-111.942768</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3742
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7232</Id>\n\t\t\t<Verbose>TEMPE
3743
- TOWN LAKE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>620
3744
- N MILL AVE</Location>\n\t\t\t<Latitude>33.435704</Latitude>\n\t\t\t<Longitude>-111.942768</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
3745
2472
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7630</Id>\n\t\t\t<Verbose>TEMPE
3746
2473
  TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>200
3747
2474
  E 5TH ST</Location>\n\t\t\t<Latitude>33.425671</Latitude>\n\t\t\t<Longitude>-111.936348</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
@@ -3751,57 +2478,9 @@ http_interactions:
3751
2478
  LOCAL ALL DAY PASS-$4.00</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3752
2479
  TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3753
2480
  E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3754
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3755
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3756
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3757
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3758
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3759
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3760
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3761
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3762
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3763
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3764
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3765
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3766
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3767
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3768
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3769
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3770
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3771
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3772
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3773
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3774
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3775
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3776
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3777
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3778
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3779
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3780
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3781
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3782
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3783
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3784
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3785
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3786
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3787
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3788
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3789
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3790
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3791
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3792
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3793
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3794
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3795
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3796
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7187</Id>\n\t\t\t<Verbose>TEMPE
3797
- TRANSIT STORE</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>202
3798
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425532</Latitude>\n\t\t\t<Longitude>-111.936669</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3799
2481
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7629</Id>\n\t\t\t<Verbose>TEMPE
3800
2482
  TRANSPORTATION CENTER</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>200
3801
2483
  E 5TH ST</Location>\n\t\t\t<Latitude>33.425803</Latitude>\n\t\t\t<Longitude>-111.936351</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3802
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7629</Id>\n\t\t\t<Verbose>TEMPE
3803
- TRANSPORTATION CENTER</Verbose>\n\t\t\t<Soundex>T513</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>200
3804
- E 5TH ST</Location>\n\t\t\t<Latitude>33.425803</Latitude>\n\t\t\t<Longitude>-111.936351</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3805
2484
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5327</Id>\n\t\t\t<Verbose>TEMPE
3806
2485
  WOMANS CLUB PARK</Verbose>\n\t\t\t<Soundex>T515</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1265
3807
2486
  N COLLEGE AVE</Location>\n\t\t\t<Latitude>33.441357</Latitude>\n\t\t\t<Longitude>-111.930811</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7328</Id>\n\t\t\t<Verbose>TENT
@@ -3819,10 +2498,7 @@ http_interactions:
3819
2498
  N 7TH ST</Location>\n\t\t\t<Latitude>33.594606</Latitude>\n\t\t\t<Longitude>-112.065762</Longitude>\n\t\t\t<Type>HOTEL</Type>\n\t\t\t<Typedescription>HOTELS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85020</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5727</Id>\n\t\t\t<Verbose>THE
3820
2499
  PROMENADE</Verbose>\n\t\t\t<Soundex>T165</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>16431
3821
2500
  N SCOTTSDALE RD</Location>\n\t\t\t<Latitude>33.634965</Latitude>\n\t\t\t<Longitude>-111.925455</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3822
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85254</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7927</Id>\n\t\t\t<Verbose>THOMAS
3823
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>T522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10876)
3824
- # THOMAS RD/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.481737</Latitude>\n\t\t\t<Longitude>-112.073831</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3825
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7927</Id>\n\t\t\t<Verbose>THOMAS
2501
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85254</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7927</Id>\n\t\t\t<Verbose>THOMAS
3826
2502
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>T522</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10876)
3827
2503
  # THOMAS RD/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.481737</Latitude>\n\t\t\t<Longitude>-112.073831</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3828
2504
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5427</Id>\n\t\t\t<Verbose>THUNDERBIRD
@@ -3853,7 +2529,7 @@ http_interactions:
3853
2529
  W GIBSON LN</Location>\n\t\t\t<Latitude>33.427099</Latitude>\n\t\t\t<Longitude>-112.126898</Longitude>\n\t\t\t<Type>JAIL</Type>\n\t\t\t<Typedescription>JAILS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85009</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5728</Id>\n\t\t\t<Verbose>TOWN
3854
2530
  AND COUNTRY SHOPPING CENTER</Verbose>\n\t\t\t<Soundex>T553</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2021
3855
2531
  E CAMELBACK RD</Location>\n\t\t\t<Latitude>33.509195</Latitude>\n\t\t\t<Longitude>-112.038426</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
3856
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5429</Id>\n\t\t\t<Verbose>TOWN
2532
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85016</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5429</Id>\n\t\t\t<Verbose>TOWN
3857
2533
  OF FOUNTAIN HILLS</Verbose>\n\t\t\t<Soundex>T511</Soundex>\n\t\t\t<Area>FH</Area>\n\t\t\t<Areacode>Fountain
3858
2534
  Hills</Areacode>\n\t\t\t<Location>16836 E PALISADES BLVD</Location>\n\t\t\t<Latitude>33.607557</Latitude>\n\t\t\t<Longitude>-111.716832</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
3859
2535
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85268</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>6944</Id>\n\t\t\t<Verbose>TOWN
@@ -3876,15 +2552,9 @@ http_interactions:
3876
2552
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85258</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5035</Id>\n\t\t\t<Verbose>TURF
3877
2553
  PARADISE</Verbose>\n\t\t\t<Soundex>T611</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1501
3878
2554
  W BELL RD</Location>\n\t\t\t<Latitude>33.640163</Latitude>\n\t\t\t<Longitude>-112.091456</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3879
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5035</Id>\n\t\t\t<Verbose>TURF
3880
- PARADISE</Verbose>\n\t\t\t<Soundex>T611</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1501
3881
- W BELL RD</Location>\n\t\t\t<Latitude>33.640163</Latitude>\n\t\t\t<Longitude>-112.091456</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3882
2555
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7941</Id>\n\t\t\t<Verbose>UNIVERSITY
3883
2556
  DR RURAL LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10896)
3884
2557
  # UNIVERSITY DR/RURAL LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.421090</Latitude>\n\t\t\t<Longitude>-111.927296</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3885
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7941</Id>\n\t\t\t<Verbose>UNIVERSITY
3886
- DR RURAL LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10896)
3887
- # UNIVERSITY DR/RURAL LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.421090</Latitude>\n\t\t\t<Longitude>-111.927296</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3888
2558
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7529</Id>\n\t\t\t<Verbose>UNIVERSITY
3889
2559
  OF ARIZONA COLLEGE OF MEDICIN</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>550
3890
2560
  E VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451359</Latitude>\n\t\t\t<Longitude>-112.066903</Longitude>\n\t\t\t<Type>SC</Type>\n\t\t\t<Typedescription>SCHOOLS:
@@ -3903,24 +2573,15 @@ http_interactions:
3903
2573
  COLLEGES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7530</Id>\n\t\t\t<Verbose>UNIVERSITY
3904
2574
  OF PHOENIX STADIUM</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>9099
3905
2575
  W MARYLAND AVE</Location>\n\t\t\t<Latitude>33.534589</Latitude>\n\t\t\t<Longitude>-112.263604</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3906
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7530</Id>\n\t\t\t<Verbose>UNIVERSITY
3907
- OF PHOENIX STADIUM</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>9099
3908
- W MARYLAND AVE</Location>\n\t\t\t<Latitude>33.534589</Latitude>\n\t\t\t<Longitude>-112.263604</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3909
2576
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85305</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5329</Id>\n\t\t\t<Verbose>UNIVERSITY
3910
2577
  PARK</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1002
3911
2578
  W VAN BUREN ST</Location>\n\t\t\t<Latitude>33.451414</Latitude>\n\t\t\t<Longitude>-112.086270</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7976</Id>\n\t\t\t<Verbose>UNIVERSITY
3912
2579
  RURAL TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(11937)
3913
2580
  # UNIV RURAL TC NBD LANE STOP 2 MARS N</Location>\n\t\t\t<Latitude>33.420783</Latitude>\n\t\t\t<Longitude>-111.927132</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3914
- CENTERS</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7976</Id>\n\t\t\t<Verbose>UNIVERSITY
3915
- RURAL TRANSIT CENTER</Verbose>\n\t\t\t<Soundex>U516</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(11937)
3916
- # UNIV RURAL TC NBD LANE STOP 2 MARS N</Location>\n\t\t\t<Latitude>33.420783</Latitude>\n\t\t\t<Longitude>-111.927132</Longitude>\n\t\t\t<Type>TC</Type>\n\t\t\t<Typedescription>TRANSIT
3917
2581
  CENTERS</Typedescription>\n\t\t\t<Locality>Y</Locality>\n\t\t\t<Zipcode> </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7621</Id>\n\t\t\t<Verbose>UNRR</Verbose>\n\t\t\t<Soundex>U560</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>E
3918
2582
  UNIVERSITY DR &amp; S RURAL RD</Location>\n\t\t\t<Latitude>33.422041</Latitude>\n\t\t\t<Longitude>-111.926308</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7282</Id>\n\t\t\t<Verbose>US
3919
2583
  AIRWAYS CENTER</Verbose>\n\t\t\t<Soundex>U262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>201
3920
2584
  E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.446785</Latitude>\n\t\t\t<Longitude>-112.071219</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3921
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7282</Id>\n\t\t\t<Verbose>US
3922
- AIRWAYS CENTER</Verbose>\n\t\t\t<Soundex>U262</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>201
3923
- E JEFFERSON ST</Location>\n\t\t\t<Latitude>33.446785</Latitude>\n\t\t\t<Longitude>-112.071219</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
3924
2585
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7533</Id>\n\t\t\t<Verbose>VALLEY
3925
2586
  HO</Verbose>\n\t\t\t<Soundex>V400</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>6850
3926
2587
  E MAIN ST</Location>\n\t\t\t<Latitude>33.492688</Latitude>\n\t\t\t<Longitude>-111.933588</Longitude>\n\t\t\t<Type>HOTEL</Type>\n\t\t\t<Typedescription>HOTELS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85251</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5700</Id>\n\t\t\t<Verbose>VALLEY
@@ -3929,24 +2590,12 @@ http_interactions:
3929
2590
  HIGH</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85013</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7894</Id>\n\t\t\t<Verbose>VALLEY
3930
2591
  METRO MOBILITY CENTER</Verbose>\n\t\t\t<Soundex>V453</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4600
3931
2592
  E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448375</Latitude>\n\t\t\t<Longitude>-111.983205</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3932
- RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7894</Id>\n\t\t\t<Verbose>VALLEY
3933
- METRO MOBILITY CENTER</Verbose>\n\t\t\t<Soundex>V453</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4600
3934
- E WASHINGTON ST</Location>\n\t\t\t<Latitude>33.448375</Latitude>\n\t\t\t<Longitude>-111.983205</Longitude>\n\t\t\t<Type>COMRE</Type>\n\t\t\t<Typedescription>COMMUNITY
3935
2593
  RESOURCES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85034</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7893</Id>\n\t\t\t<Verbose>VALLEY
3936
2594
  YOUTH THEATRE</Verbose>\n\t\t\t<Soundex>V433</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>525
3937
2595
  N 1ST ST</Location>\n\t\t\t<Latitude>33.454461</Latitude>\n\t\t\t<Longitude>-112.072492</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3938
- ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7893</Id>\n\t\t\t<Verbose>VALLEY
3939
- YOUTH THEATRE</Verbose>\n\t\t\t<Soundex>V433</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>525
3940
- N 1ST ST</Location>\n\t\t\t<Latitude>33.454461</Latitude>\n\t\t\t<Longitude>-112.072492</Longitude>\n\t\t\t<Type>PERF</Type>\n\t\t\t<Typedescription>PERFORMING
3941
2596
  ARTS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85004</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7931</Id>\n\t\t\t<Verbose>VAN
3942
2597
  BUREN 1ST AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>V516</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10880)
3943
2598
  # VAN BUREN/1ST AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.452252</Latitude>\n\t\t\t<Longitude>-112.075081</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3944
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7931</Id>\n\t\t\t<Verbose>VAN
3945
- BUREN 1ST AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>V516</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10880)
3946
- # VAN BUREN/1ST AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.452252</Latitude>\n\t\t\t<Longitude>-112.075081</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3947
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7950</Id>\n\t\t\t<Verbose>VAN
3948
- BUREN CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>V516</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10898)
3949
- # VAN BUREN/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.451504</Latitude>\n\t\t\t<Longitude>-112.074014</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
3950
2599
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7950</Id>\n\t\t\t<Verbose>VAN
3951
2600
  BUREN CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>V516</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10898)
3952
2601
  # VAN BUREN/CENTRAL AVE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.451504</Latitude>\n\t\t\t<Longitude>-112.074014</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
@@ -4014,28 +2663,15 @@ http_interactions:
4014
2663
  AFFAIRS SOUTHEAST CLINIC</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>(12184)
4015
2664
  # NB VAL VISTA DR FS MARKET ST</Location>\n\t\t\t<Latitude>33.292872</Latitude>\n\t\t\t<Longitude>-111.755412</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
4016
2665
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
4017
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7985</Id>\n\t\t\t<Verbose>VETERANS
4018
- AFFAIRS SOUTHEAST CLINIC</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>GI</Area>\n\t\t\t<Areacode>Gilbert</Areacode>\n\t\t\t<Location>(12184)
4019
- # NB VAL VISTA DR FS MARKET ST</Location>\n\t\t\t<Latitude>33.292872</Latitude>\n\t\t\t<Longitude>-111.755412</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
4020
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
4021
2666
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7270</Id>\n\t\t\t<Verbose>VETERANS
4022
2667
  HOSPITAL</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>650
4023
2668
  E INDIAN SCHOOL RD</Location>\n\t\t\t<Latitude>33.494713</Latitude>\n\t\t\t<Longitude>-112.065759</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
4024
- AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85012</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7270</Id>\n\t\t\t<Verbose>VETERANS
4025
- HOSPITAL</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>650
4026
- E INDIAN SCHOOL RD</Location>\n\t\t\t<Latitude>33.494713</Latitude>\n\t\t\t<Longitude>-112.065759</Longitude>\n\t\t\t<Type>HOSP</Type>\n\t\t\t<Typedescription>HOSPITALS
4027
2669
  AND CLINICS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85012</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5071</Id>\n\t\t\t<Verbose>VETERANS
4028
2670
  MEMORIAL COLISEUM</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1826
4029
2671
  W MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465879</Latitude>\n\t\t\t<Longitude>-112.098698</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
4030
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5071</Id>\n\t\t\t<Verbose>VETERANS
4031
- MEMORIAL COLISEUM</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1826
4032
- W MCDOWELL RD</Location>\n\t\t\t<Latitude>33.465879</Latitude>\n\t\t\t<Longitude>-112.098698</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
4033
2672
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85007</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7940</Id>\n\t\t\t<Verbose>VETERANS
4034
2673
  WAY COLLEGE AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10895)
4035
2674
  # VETERANS WAY/COLLEGE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.426222</Latitude>\n\t\t\t<Longitude>-111.936477</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
4036
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7940</Id>\n\t\t\t<Verbose>VETERANS
4037
- WAY COLLEGE AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>V365</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>(10895)
4038
- # VETERANS WAY/COLLEGE LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.426222</Latitude>\n\t\t\t<Longitude>-111.936477</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
4039
2675
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7338</Id>\n\t\t\t<Verbose>VIA
4040
2676
  LINDA SENIOR CENTER</Verbose>\n\t\t\t<Soundex>V453</Soundex>\n\t\t\t<Area>SC</Area>\n\t\t\t<Areacode>Scottsdale</Areacode>\n\t\t\t<Location>10440
4041
2677
  E VIA LINDA DR</Location>\n\t\t\t<Latitude>33.574701</Latitude>\n\t\t\t<Longitude>-111.855823</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
@@ -4048,37 +2684,34 @@ http_interactions:
4048
2684
  WASHINGTON ST &amp; N CENTRAL AVE</Location>\n\t\t\t<Latitude>33.448249</Latitude>\n\t\t\t<Longitude>-112.073805</Longitude>\n\t\t\t<Type>LRT</Type>\n\t\t\t<Typedescription>LIGHTRAIL</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85003</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7509</Id>\n\t\t\t<Verbose>WALMART/BELL
4049
2685
  AND 3RD AVENUE</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>330
4050
2686
  W BELL RD</Location>\n\t\t\t<Latitude>33.640221</Latitude>\n\t\t\t<Longitude>-112.078826</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4051
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7510</Id>\n\t\t\t<Verbose>WALMART/BELL
2687
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85023</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7510</Id>\n\t\t\t<Verbose>WALMART/BELL
4052
2688
  AND TATUM</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>4618
4053
2689
  E BELL RD</Location>\n\t\t\t<Latitude>33.640605</Latitude>\n\t\t\t<Longitude>-111.981597</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4054
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7511</Id>\n\t\t\t<Verbose>WALMART/BETHANY
2690
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85032</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7511</Id>\n\t\t\t<Verbose>WALMART/BETHANY
4055
2691
  HOME AND 15TH AVE</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>1607
4056
2692
  W BETHANY HOME</Location>\n\t\t\t<Latitude>33.523727</Latitude>\n\t\t\t<Longitude>-112.094771</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4057
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7512</Id>\n\t\t\t<Verbose>WALMART/BETHANY
2693
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85015</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7512</Id>\n\t\t\t<Verbose>WALMART/BETHANY
4058
2694
  HOME AND 35TH AVENUE</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>6145
4059
2695
  N 35TH AVE</Location>\n\t\t\t<Latitude>33.526322</Latitude>\n\t\t\t<Longitude>-112.134269</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4060
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85017</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7513</Id>\n\t\t\t<Verbose>WALMART/ELLIOT
2696
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85017</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7513</Id>\n\t\t\t<Verbose>WALMART/ELLIOT
4061
2697
  AND PRIEST</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>1380
4062
2698
  W ELLIOT RD</Location>\n\t\t\t<Latitude>33.349103</Latitude>\n\t\t\t<Longitude>-111.962429</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4063
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85284</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7514</Id>\n\t\t\t<Verbose>WALMART/INDIAN
2699
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85284</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7514</Id>\n\t\t\t<Verbose>WALMART/INDIAN
4064
2700
  SCHOOL AND 51ST AVENUE</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>5250
4065
2701
  W INDIAN SCHOOL RD</Location>\n\t\t\t<Latitude>33.494957</Latitude>\n\t\t\t<Longitude>-112.172137</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4066
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7515</Id>\n\t\t\t<Verbose>WALMART/MAIN
2702
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85031</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7515</Id>\n\t\t\t<Verbose>WALMART/MAIN
4067
2703
  AND ALMA SCHOOL</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1305
4068
2704
  W MAIN ST</Location>\n\t\t\t<Latitude>33.414894</Latitude>\n\t\t\t<Longitude>-111.859263</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4069
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7516</Id>\n\t\t\t<Verbose>WALMART/MCDOWELL
2705
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85201</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7516</Id>\n\t\t\t<Verbose>WALMART/MCDOWELL
4070
2706
  AND 75TH AVENUE</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>2020
4071
2707
  N 75TH AVE</Location>\n\t\t\t<Latitude>33.469604</Latitude>\n\t\t\t<Longitude>-112.220698</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4072
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85035</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7517</Id>\n\t\t\t<Verbose>WALMART/STAPLEY
2708
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85035</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7517</Id>\n\t\t\t<Verbose>WALMART/STAPLEY
4073
2709
  AND BASELINE</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>1955
4074
2710
  S STAPLEY DR</Location>\n\t\t\t<Latitude>33.379416</Latitude>\n\t\t\t<Longitude>-111.807254</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4075
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85204</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7518</Id>\n\t\t\t<Verbose>WALMART/THOMAS
2711
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85204</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7518</Id>\n\t\t\t<Verbose>WALMART/THOMAS
4076
2712
  AND 40TH ST</Verbose>\n\t\t\t<Soundex>W456</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3721
4077
2713
  E THOMAS RD</Location>\n\t\t\t<Latitude>33.480430</Latitude>\n\t\t\t<Longitude>-112.001715</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4078
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85018</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7949</Id>\n\t\t\t<Verbose>WASHINGTON
4079
- CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>W252</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10899)
4080
- # WASHINGTON/CENTRAL LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.448405</Latitude>\n\t\t\t<Longitude>-112.073881</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
4081
- RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7949</Id>\n\t\t\t<Verbose>WASHINGTON
2714
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85018</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7949</Id>\n\t\t\t<Verbose>WASHINGTON
4082
2715
  CENTRAL AVE LIGHT RAIL STN</Verbose>\n\t\t\t<Soundex>W252</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>(10899)
4083
2716
  # WASHINGTON/CENTRAL LIGHT RAIL STATION</Location>\n\t\t\t<Latitude>33.448405</Latitude>\n\t\t\t<Longitude>-112.073881</Longitude>\n\t\t\t<Type>LRTSTN</Type>\n\t\t\t<Typedescription>LIGHT
4084
2717
  RAIL STATIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>99999</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5701</Id>\n\t\t\t<Verbose>WASHINGTON
@@ -4093,27 +2726,17 @@ http_interactions:
4093
2726
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85257</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7520</Id>\n\t\t\t<Verbose>WELLS
4094
2727
  FARGO ARENA</Verbose>\n\t\t\t<Soundex>W421</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>600
4095
2728
  S VETERANS WAY</Location>\n\t\t\t<Latitude>33.424310</Latitude>\n\t\t\t<Longitude>-111.932298</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
4096
- VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7520</Id>\n\t\t\t<Verbose>WELLS
4097
- FARGO ARENA</Verbose>\n\t\t\t<Soundex>W421</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>600
4098
- S VETERANS WAY</Location>\n\t\t\t<Latitude>33.424310</Latitude>\n\t\t\t<Longitude>-111.932298</Longitude>\n\t\t\t<Type>SPORT</Type>\n\t\t\t<Typedescription>SPORTS
4099
2729
  VENUES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85281</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7586</Id>\n\t\t\t<Verbose>WEST
4100
2730
  CHANDLER AQUATIC CENTER</Verbose>\n\t\t\t<Soundex>W232</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>250
4101
2731
  S KYRENE RD</Location>\n\t\t\t<Latitude>33.296846</Latitude>\n\t\t\t<Longitude>-111.946810</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
4102
- ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85226</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7586</Id>\n\t\t\t<Verbose>WEST
4103
- CHANDLER AQUATIC CENTER</Verbose>\n\t\t\t<Soundex>W232</Soundex>\n\t\t\t<Area>CH</Area>\n\t\t\t<Areacode>Chandler</Areacode>\n\t\t\t<Location>250
4104
- S KYRENE RD</Location>\n\t\t\t<Latitude>33.296846</Latitude>\n\t\t\t<Longitude>-111.946810</Longitude>\n\t\t\t<Type>MDC</Type>\n\t\t\t<Typedescription>FAMILY
4105
2732
  ATTRACTIONS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85226</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7953</Id>\n\t\t\t<Verbose>WEST
4106
2733
  MESA PARK AND RIDE</Verbose>\n\t\t\t<Soundex>W235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11471)
4107
2734
  # WEST MESA PARK AND RIDE</Location>\n\t\t\t<Latitude>33.381759</Latitude>\n\t\t\t<Longitude>-111.842558</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
4108
2735
  AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
4109
- </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7953</Id>\n\t\t\t<Verbose>WEST
4110
- MESA PARK AND RIDE</Verbose>\n\t\t\t<Soundex>W235</Soundex>\n\t\t\t<Area>ME</Area>\n\t\t\t<Areacode>Mesa</Areacode>\n\t\t\t<Location>(11471)
4111
- # WEST MESA PARK AND RIDE</Location>\n\t\t\t<Latitude>33.381759</Latitude>\n\t\t\t<Longitude>-111.842558</Longitude>\n\t\t\t<Type>PR</Type>\n\t\t\t<Typedescription>PARK
4112
- AND RIDE</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>
4113
2736
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7382</Id>\n\t\t\t<Verbose>WEST
4114
2737
  PLAZA</Verbose>\n\t\t\t<Soundex>W231</Soundex>\n\t\t\t<Area>WI</Area>\n\t\t\t<Areacode>Wickenburg</Areacode>\n\t\t\t<Location>S
4115
2738
  VULTURE MINE RD &amp; W WICKENBURG WAY</Location>\n\t\t\t<Latitude>33.962110</Latitude>\n\t\t\t<Longitude>-112.771781</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4116
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85390</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5332</Id>\n\t\t\t<Verbose>WEST
2739
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85390</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5332</Id>\n\t\t\t<Verbose>WEST
4117
2740
  PLAZA PARK</Verbose>\n\t\t\t<Soundex>W231</Soundex>\n\t\t\t<Area>GL</Area>\n\t\t\t<Areacode>Glendale</Areacode>\n\t\t\t<Location>N
4118
2741
  43RD AVE &amp; W MARYLAND AVE</Location>\n\t\t\t<Latitude>33.531183</Latitude>\n\t\t\t<Longitude>-112.151453</Longitude>\n\t\t\t<Type>PARKS</Type>\n\t\t\t<Typedescription>PARKS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85301</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7340</Id>\n\t\t\t<Verbose>WEST
4119
2742
  VALLEY HOSPITAL</Verbose>\n\t\t\t<Soundex>W231</Soundex>\n\t\t\t<Area>GO</Area>\n\t\t\t<Areacode>Goodyear</Areacode>\n\t\t\t<Location>LITCHFIELD
@@ -4141,7 +2764,7 @@ http_interactions:
4141
2764
  </Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5729</Id>\n\t\t\t<Verbose>WIGWAM
4142
2765
  OUTLET</Verbose>\n\t\t\t<Soundex>W253</Soundex>\n\t\t\t<Area>GO</Area>\n\t\t\t<Areacode>Goodyear</Areacode>\n\t\t\t<Location>N
4143
2766
  LITCHFIELD RD &amp; W MCDOWELL RD</Location>\n\t\t\t<Latitude>33.464370</Latitude>\n\t\t\t<Longitude>-112.358160</Longitude>\n\t\t\t<Type>SHOP</Type>\n\t\t\t<Typedescription>SHOPPING
4144
- MALLS & MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85395</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7246</Id>\n\t\t\t<Verbose>WIGWAM
2767
+ MALLS &amp; MAJOR DEPARTMENT STORES</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85395</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7246</Id>\n\t\t\t<Verbose>WIGWAM
4145
2768
  RESORT</Verbose>\n\t\t\t<Soundex>W256</Soundex>\n\t\t\t<Area>LP</Area>\n\t\t\t<Areacode>Litchfield
4146
2769
  Park</Areacode>\n\t\t\t<Location>300 W WIGWAM BLVD</Location>\n\t\t\t<Latitude>33.493348</Latitude>\n\t\t\t<Longitude>-112.361375</Longitude>\n\t\t\t<Type>HOTEL</Type>\n\t\t\t<Typedescription>HOTELS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85340</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>5702</Id>\n\t\t\t<Verbose>WOODS
4147
2770
  HIGH SCHOOL</Verbose>\n\t\t\t<Soundex>W322</Soundex>\n\t\t\t<Area>PH</Area>\n\t\t\t<Areacode>Phoenix</Areacode>\n\t\t\t<Location>3160
@@ -4178,9 +2801,9 @@ http_interactions:
4178
2801
  # WB E THOMAS NS LITCHFIELD YMCA PARK</Location>\n\t\t\t<Latitude>33.478822</Latitude>\n\t\t\t<Longitude>-112.358161</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
4179
2802
  CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85395</Zipcode>\n\t\t</Landmark>\n\t\t<Landmark>\n\t\t\t<Id>7357</Id>\n\t\t\t<Verbose>YMCA/TEMPE</Verbose>\n\t\t\t<Soundex>Y523</Soundex>\n\t\t\t<Area>TE</Area>\n\t\t\t<Areacode>Tempe</Areacode>\n\t\t\t<Location>7070
4180
2803
  S RURAL RD</Location>\n\t\t\t<Latitude>33.355901</Latitude>\n\t\t\t<Longitude>-111.928535</Longitude>\n\t\t\t<Type>REC</Type>\n\t\t\t<Typedescription>RECREATION
4181
- CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85283</Zipcode>\n\t\t</Landmark>\n\t<Appid>WEB</Appid>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
4182
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
4183
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:GetlandmarksResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
2804
+ CENTERS</Typedescription>\n\t\t\t<Locality>N</Locality>\n\t\t\t<Zipcode>85283</Zipcode>\n\t\t</Landmark>\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
2805
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
2806
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:GetlandmarksResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
4184
2807
  http_version:
4185
- recorded_at: Wed, 14 May 2014 22:17:50 GMT
2808
+ recorded_at: Sat, 14 Jun 2014 00:40:13 GMT
4186
2809
  recorded_with: VCR 2.8.0