From 84cfb098e25a31de3a0e3b070fbb80b9469bfb9e Mon Sep 17 00:00:00 2001 From: Ji Hyun Kong Date: Wed, 25 Jun 2014 20:54:07 -0400 Subject: [PATCH 1/3] some padding and debugging for null thingo --- index.html | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 97fcbae..ff0e409 100644 --- a/index.html +++ b/index.html @@ -6,17 +6,28 @@ + + - + + + + + + + + +
+ + + +
- - - - - - - -
- - - -
- -
- -
- - + }); + diff --git a/jquery.geocomplete.min.js b/jquery.geocomplete.min.js new file mode 100644 index 0000000..fd218ad --- /dev/null +++ b/jquery.geocomplete.min.js @@ -0,0 +1,8 @@ +/** + * jQuery Geocoding and Places Autocomplete Plugin - V 1.5.0 + * + * @author Martin Kleppe , 2012 + * @author Ubilabs http://ubilabs.net, 2012 + * @license MIT License + */ +(function($,window,document,undefined){var defaults={bounds:true,country:null,map:false,details:false,detailsAttribute:"name",autoselect:true,location:false,mapOptions:{zoom:14,scrollwheel:false,mapTypeId:"roadmap"},markerOptions:{draggable:false},maxZoom:16,types:["geocode"],blur:false};var componentTypes=("street_address route intersection political "+"country administrative_area_level_1 administrative_area_level_2 "+"administrative_area_level_3 colloquial_area locality sublocality "+"neighborhood premise subpremise postal_code natural_feature airport "+"park point_of_interest post_box street_number floor room "+"lat lng viewport location "+"formatted_address location_type bounds").split(" ");var placesDetails=("id url website vicinity reference name rating "+"international_phone_number icon formatted_phone_number").split(" ");function GeoComplete(input,options){this.options=$.extend(true,{},defaults,options);this.input=input;this.$input=$(input);this._defaults=defaults;this._name="geocomplete";this.init()}$.extend(GeoComplete.prototype,{init:function(){this.initMap();this.initMarker();this.initGeocoder();this.initDetails();this.initLocation()},initMap:function(){if(!this.options.map){return}if(typeof this.options.map.setCenter=="function"){this.map=this.options.map;return}this.map=new google.maps.Map($(this.options.map)[0],this.options.mapOptions);google.maps.event.addListener(this.map,"click",$.proxy(this.mapClicked,this));google.maps.event.addListener(this.map,"zoom_changed",$.proxy(this.mapZoomed,this))},initMarker:function(){if(!this.map){return}var options=$.extend(this.options.markerOptions,{map:this.map});if(options.disabled){return}this.marker=new google.maps.Marker(options);google.maps.event.addListener(this.marker,"dragend",$.proxy(this.markerDragged,this))},initGeocoder:function(){var options={types:this.options.types,bounds:this.options.bounds===true?null:this.options.bounds,componentRestrictions:this.options.componentRestrictions};if(this.options.country){options.componentRestrictions={country:this.options.country}}this.autocomplete=new google.maps.places.Autocomplete(this.input,options);this.geocoder=new google.maps.Geocoder;if(this.map&&this.options.bounds===true){this.autocomplete.bindTo("bounds",this.map)}google.maps.event.addListener(this.autocomplete,"place_changed",$.proxy(this.placeChanged,this));this.$input.keypress(function(event){if(event.keyCode===13){return false}});this.$input.bind("geocode",$.proxy(function(){this.find()},this));if(this.options.blur===true){this.$input.blur($.proxy(function(){this.find()},this))}},initDetails:function(){if(!this.options.details){return}var $details=$(this.options.details),attribute=this.options.detailsAttribute,details={};function setDetail(value){details[value]=$details.find("["+attribute+"="+value+"]")}$.each(componentTypes,function(index,key){setDetail(key);setDetail(key+"_short")});$.each(placesDetails,function(index,key){setDetail(key)});this.$details=$details;this.details=details},initLocation:function(){var location=this.options.location,latLng;if(!location){return}if(typeof location=="string"){this.find(location);return}if(location instanceof Array){latLng=new google.maps.LatLng(location[0],location[1])}if(location instanceof google.maps.LatLng){latLng=location}if(latLng){if(this.map){this.map.setCenter(latLng)}if(this.marker){this.marker.setPosition(latLng)}}},find:function(address){this.geocode({address:address||this.$input.val()})},geocode:function(request){if(this.options.bounds&&!request.bounds){if(this.options.bounds===true){request.bounds=this.map&&this.map.getBounds()}else{request.bounds=this.options.bounds}}if(this.options.country){request.region=this.options.country}this.geocoder.geocode(request,$.proxy(this.handleGeocode,this))},selectFirstResult:function(){var selected="";if($(".pac-item-selected")["0"]){selected="-selected"}var $span1=$(".pac-container .pac-item"+selected+":first span:nth-child(2)").text();var $span2=$(".pac-container .pac-item"+selected+":first span:nth-child(3)").text();var firstResult=$span1;if($span2){firstResult+=" - "+$span2}this.$input.val(firstResult);return firstResult},handleGeocode:function(results,status){if(status===google.maps.GeocoderStatus.OK){var result=results[0];this.$input.val(result.formatted_address);this.update(result);if(results.length>1){this.trigger("geocode:multiple",results)}}else{this.trigger("geocode:error",status)}},trigger:function(event,argument){this.$input.trigger(event,[argument])},center:function(geometry){if(geometry.viewport){this.map.fitBounds(geometry.viewport);if(this.map.getZoom()>this.options.maxZoom){this.map.setZoom(this.options.maxZoom)}}else{this.map.setZoom(this.options.maxZoom);this.map.setCenter(geometry.location)}if(this.marker){this.marker.setPosition(geometry.location);this.marker.setAnimation(this.options.markerOptions.animation)}},update:function(result){if(this.map){this.center(result.geometry)}if(this.$details){this.fillDetails(result)}this.trigger("geocode:result",result)},fillDetails:function(result){var data={},geometry=result.geometry,viewport=geometry.viewport,bounds=geometry.bounds;$.each(result.address_components,function(index,object){var name=object.types[0];data[name]=object.long_name;data[name+"_short"]=object.short_name});$.each(placesDetails,function(index,key){data[key]=result[key]});$.extend(data,{formatted_address:result.formatted_address,location_type:geometry.location_type||"PLACES",viewport:viewport,bounds:bounds,location:geometry.location,lat:geometry.location.lat(),lng:geometry.location.lng()});$.each(this.details,$.proxy(function(key,$detail){var value=data[key];this.setDetail($detail,value)},this));this.data=data},setDetail:function($element,value){if(value===undefined){value=""}else if(typeof value.toUrlValue=="function"){value=value.toUrlValue()}if($element.is(":input")){$element.val(value)}else{$element.text(value)}},markerDragged:function(event){this.trigger("geocode:dragged",event.latLng)},mapClicked:function(event){this.trigger("geocode:click",event.latLng)},mapZoomed:function(event){this.trigger("geocode:zoom",this.map.getZoom())},resetMarker:function(){this.marker.setPosition(this.data.location);this.setDetail(this.details.lat,this.data.location.lat());this.setDetail(this.details.lng,this.data.location.lng())},placeChanged:function(){var place=this.autocomplete.getPlace();if(!place.geometry){if(this.options.autoselect){var autoSelection=this.selectFirstResult();this.find(autoSelection)}}else{this.update(place)}}});$.fn.geocomplete=function(options){var attribute="plugin_geocomplete";if(typeof options=="string"){var instance=$(this).data(attribute)||$(this).geocomplete().data(attribute),prop=instance[options];if(typeof prop=="function"){prop.apply(instance,Array.prototype.slice.call(arguments,1));return $(this)}else{if(arguments.length==2){prop=arguments[1]}return prop}}else{return this.each(function(){var instance=$.data(this,attribute);if(!instance){instance=new GeoComplete(this,options);$.data(this,attribute,instance)}})}}})(jQuery,window,document); \ No newline at end of file diff --git a/logger.js b/logger.js new file mode 100644 index 0000000..61295b7 --- /dev/null +++ b/logger.js @@ -0,0 +1,4 @@ +$.log = function(message){ + var $logger = $("#logger"); + $logger.html($logger.html() + "\n * " + message ); +} diff --git a/main.css b/main.css new file mode 100644 index 0000000..e34ea9c --- /dev/null +++ b/main.css @@ -0,0 +1,106 @@ +body { + background-color: #fefefe; +} + +#map-wrapper { + width: 100%; + color: rgba(0,0,0,0.8); +} + +@media (min-width:800px){ + #searchRoute { + background-color: #2c2c2c; + text-align: center; + padding: 0.5em; + margin: 1em; + margin-bottom: 0em; + } + + #map-canvas { + margin: 1em; + margin-right: 0em; + width: 60%; + height: 30em; + display: inline; + float: left; + border: solid 2px #2c2c2c; + } + + #messages { + background: #E93C4F; + color: #fefefe; + font-family: "Open Sans"; + font-size: 1em; + width: 30%; + margin: 1em; + padding: 1em; + text-align: center; + display: inline; + float: left; + } +} + +@media (max-width:799px){ + #searchRoute { + background-color: #2c2c2c; + text-align: center; + margin: 1em; + padding: 0.5em; + top: 1em; + } + + #map-canvas { + left: 5%; + width: 90%; + height: 20em; + margin-bottom: 1em; + border: solid 2px #2c2c2c; + } + + #messages { + background: #E93C4F; + color: #fefefe; + font-family: "Open Sans"; + font-size: 1em; + margin-left: 5%; + margin-bottom: 2em; + width: 85%; + padding: 1em; + padding-top: 0.5em; + } +} + +span .messageHeader { + color: #fefefe; +} + +input[type=text] +{ + background-color: #f2f2f2; + color: #2c2c2c; + height: 2.2em; + padding-left:10px; + width: 25%; + border: none; +} + +input[type=submit] +{ + background-color: #027073; + color: #fefefe; + height: 2.5em; + font-family: "Open Sans"; + font-weight: 700; + width: 15%; + border: none; + margin-left: 0.5em; + text-transform:uppercase; +} +input[type=submit]:hover +{ + background-color: #028B8F; +} + +input:focus { + outline: none; +} diff --git a/main.js b/main.js new file mode 100644 index 0000000..cd613e8 --- /dev/null +++ b/main.js @@ -0,0 +1,276 @@ +var map; +directionsService = new google.maps.DirectionsService(); +directionsDisplay = new google.maps.DirectionsRenderer(); + +var outages; +var railStations; + + +function getrailStations() { + + console.log( 'getting rail lines' ); + $.getJSON("rail_lines.json", function(json) { + railStations = json; + }); +}; + +function getOutages() { + console.log( 'getting outages' ); + + $.getJSON("outages.json", function(json) { + outages = json; + }); +}; + +function MyResponse( response ) { + this.response = response; +} + +StopStatus = { + NO_ELEVATOR : 0, + ELEVATOR_WORKING : 1, + ELEVATOR_NOT_WORKING : 2, + toString: function( status ) { + if( status === StopStatus.NO_ELEVATOR ) { + return "no elevator"; + } + else if( status === StopStatus.ELEVATOR_WORKING ) { + return "elevator working"; + } + else if( status === StopStatus.ELEVATOR_NOT_WORKING ) { + return "elevator not working"; + } + + return "no idea what the status is"; + } +}; + +MyResponse.prototype.getWheelchairRoute = function( waypoints ) { + + self = this; + + var legs = this.response.routes[0].legs; + + transitStops = []; + + $.each( legs, function(index, leg ) { + + $.each( leg.steps, function( index, step ) { + var instructions = step.instructions; + + //console.log( 'step: ' + instructions + " transit_detail follows" ); + + if( step.travel_mode == 'TRANSIT' ) { + vehicleType = step.transit.line.vehicle.type; + + console.log( 'outside vehicle type: ' + vehicleType ); + if( vehicleType != 'BUS' && vehicleType != 'TRAM' ) { // is not a bus stop + console.log( step.transit.line.short_name ); + lineShortName = step.transit.line.short_name; + + + //console.log( 'inside vehicle type: ' + vehicleType + ' short line name ' + lineShortName ); + //console.log( step.transit.line ); + departStopName = step.transit.departure_stop.name; + arriveStopName = step.transit.arrival_stop.name; + + departStatus = self.getElevatorStatus( departStopName, lineShortName ); + arriveStatus = self.getElevatorStatus( arriveStopName, lineShortName ); + + console.log( 'departure stop ' + departStopName + "status: " + StopStatus.toString( departStatus ) ); + console.log( 'arriaval stop ' + arriveStopName + " status: " + StopStatus.toString( arriveStatus ) ); + + if( departStatus != StopStatus.ELEVATOR_WORKING && departStatus != null) { + + departureStop = step.transit.departure_stop; + lat = departureStop.location.A; + lng = departureStop.location.k; + self.addXMarker( lng, lat ); + + $('#messages').append('

' + departStopName + '
' + + StopStatus.toString( departStatus ) + '

'); + + self.getClosestStation( lat, lng ); + } + + if( arriveStatus != StopStatus.ELEVATOR_WORKING && arriveStatus != null) { + + arrivalStop = step.transit.arrival_stop; + lat = arrivalStop.location.A; + lng = arrivalStop.location.k; + self.addXMarker( lng, lat ); + + $('#messages').append ('

' + arriveStopName + '
' + + StopStatus.toString( arriveStatus ) + '

'); + + self.getClosestStation( lat, lng ); + } + } + } + else { + //console.log( 'step follows' ); + //console.log( step.instructions ); + } + }); + + } ); +} + +MyResponse.prototype.getClosestStation = function(lat,lng) { + + var url = "http://www3.septa.org/hackathon/locations/get_locations.php?lon="+lng+"&lat="+lat+"&radius=3&jsoncallback=?" + $.getJSON(url,function(result) { + console.log( 'result of getClosestStation' ); + console.log( result ); + }); +} + +MyResponse.prototype.addXMarker = function(lng,lat) { + var image = { + url: 'redx.png', + }; + + var marker = new google.maps.Marker({ + position: new google.maps.LatLng( lng, lat ), + anchor: new google.maps.Point(0, 1000), + map: map, + icon: image, + zIndex: 10000 + }); + + return marker; +} + +MyResponse.prototype.getElevatorStatus = function( stopName, lineShortName ) { + self = this; + + stationObj = this.getSeptaStation( stopName, lineShortName ); + + if( this.hasElevator( stationObj ) ) { + + if( self.isStationOnOutageList( stationObj ) ) { + return StopStatus.ELEVATOR_NOT_WORKING; + } + else { + return StopStatus.ELEVATOR_WORKING; + } + + } else { + return StopStatus.NO_ELEVATOR; + } +} + +// return whether the given station object has an elevator +MyResponse.prototype.hasElevator = function( stationObj ) { + + if(stationObj != null) { + if( stationObj.wheelchair_boarding !== null ) { + return true; + } + } + + return false; +} + +MyResponse.prototype.isStationOnOutageList = function( stationObj ) { + + var onList = false; + $.each( outages, function(index, outage) { + console.log( 'in isStationOnOutageList stationObj:' ); + console.log( stationObj.stop_name ); + if( stationObj.stop_name == outage.stop_name ) { + onList = true; + } + return; //break + } ); + + return onList; +} + +MyResponse.prototype.getGoogleStationLineShortName = function( station ) { + if( station.MFL == 1 ) { + return "MFL"; + } + else if( station.BSS == 1 ) { + return "BSS"; + } + console.log( "could not determine the short name for the following station" ); + console.log( station ); +} +// get the station from railStations json issued by septa +MyResponse.prototype.getSeptaStation = function( stopName, lineShortName ) { + self = this; + foundStation = null; + + $.each( railStations.stations, function( index, station ) { + + if( stopName.toLowerCase() == station.stop_name.toLowerCase() + && lineShortName == self.getGoogleStationLineShortName( station ) ) { + foundStation = station; + return; + } + } ); + + if( foundStation === null ) { + + msg = 'unable to find station in rail lines with name "' + stopName + '" shortName: ' + lineShortName; + console.log( msg ); + $.each( railStations.stations, function( index, station ) { + console.log( stopName + " " + station.stop_name ); + } ); + } + + return foundStation; +} + +// return whether the station has a working elevator +MyResponse.prototype.isElevatorWorking = function( station ) { + return station.wheelchair_boarding !== null; +} + +function loadMap() { + var philadelphia = new google.maps.LatLng(39.9523400,-75.1637900); + var mapOptions = { + zoom: 10, + center: philadelphia + }; + map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); +} + +function getDirections() { + + var startAddress = $('#startAddress').val(); + var endAddress = $('#endAddress').val(); + + $("#messages").empty(); + $("#messages").append("
Stations with Limited Access: " + "
"); + + console.log( "start address: " + startAddress + " end address: " + endAddress ); + + request = { + origin: startAddress, + destination: endAddress, + provideRouteAlternatives: false, + travelMode: google.maps.TravelMode.TRANSIT, + }; + + directionsService.route(request, function(response, status) { + if (status == google.maps.DirectionsStatus.OK) { + + directionsDisplay.setMap(null); + + myRes = new MyResponse( response ); + + directionsDisplay = new google.maps.DirectionsRenderer(); + directionsDisplay.setMap(map); + + myRes.getWheelchairRoute(); + + directionsDisplay.setDirections( myRes.response ); + } + else { + console.log( 'request failed with ' + status ); + console.log( response ); + } + }); +} \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/.gitignore b/ubilabs-geocomplete-7d8228f/.gitignore new file mode 100644 index 0000000..38c51a3 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +_temp +node_modules \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt b/ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt new file mode 100644 index 0000000..7c338b1 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2012 Ubilabs, http://ubilabs.net/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/README.md b/ubilabs-geocomplete-7d8228f/README.md new file mode 100644 index 0000000..e10d5ac --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/README.md @@ -0,0 +1,200 @@ +# $.geocomplete() - Version 1.5 +## jQuery Geocoding and Places Autocomplete Plugin + +An advanced jQuery plugin that wraps the Google Maps API's [Geocoding](https://code.google.com/apis/maps/documentation/javascript/geocoding.html) and [Places Autocomplete](https://code.google.com/apis/maps/documentation/javascript/places.html#places_autocomplete) services. You simply provide an input that lets you search for locations with a nice autocomplete dropdown. Optionally add a container to show an interactive map and a form that will be populated with the address details. + +View the [annotated source](http://ubilabs.github.com/geocomplete/docs/). + +## Basic Usage + +To convert an input into an autocomplete field, simply call the Geocomplete plugin: + +```javascript +$("input").geocomplete(); // Option 1: Call on element. +$.fn.geocomplete("input"); // Option 2: Pass element as argument. +``` + +## Examples + +Here is a list of basic uses: + +* [Simple](http://ubilabs.github.com/geocomplete/examples/simple.html) - Single input with an event logger. +* [Map](http://ubilabs.github.com/geocomplete/examples/map.html) - Adding a map. +* [Location](http://ubilabs.github.com/geocomplete/examples/location.html) - Adding a default location. +* [Form](http://ubilabs.github.com/geocomplete/examples/form.html) - Populate form fields. +* [Attribute](http://ubilabs.github.com/geocomplete/examples/custom_attribute.html) - Using custom attributes to populate data. +* [Multiple results](http://ubilabs.github.com/geocomplete/examples/multiple_results.html) - Handling multiple results from the geocoder. +* [Draggable](http://ubilabs.github.com/geocomplete/examples/draggable.html) - A draggable marker to redefine the position. + +## Requirements + +Make sure you include the Google Maps API with the Places Library before loading this plugin as described [here](https://developers.google.com/maps/documentation/javascript/places#loading_the_library). + +````html + + +``` + +If you use the plugin without showing a map you must display the "[powered by Google](https://developers.google.com/maps/documentation/javascript/places#autocomplete_no_map)" logo under the text field. + +## Trigger Request + +To trigger a geocoding request from outside (eg. when hitting the "find" button), simply trigger the "geocode" event on the element. + +````javascript +$("input").geocomplete(); + +// Trigger geocoding request. +$("button.find").click(function(){ + $("input").trigger("geocode"); +}); +``` + +## Adding a Map Preview + +To link the geocode results with an interactive map, you can pass `map` as an option to the plugin. + +```javascript +$("#my_input").geocomplete({ + map: "#my_map" +}); +``` + +The `map` option might be a selector, a jQuery object or a DOM element. + +## Populate Form Data + +You can pass `details` as an option to specify a container that will be populated when a geocoding request was successful. + +By default the plugin analyses the `name` attribute of the containers child nodes and replaces the content. You can override the `detailsAttribute` to use another attribute such as `data-geo`. + +If the element is an input, the value will be replaced otherwise the plugin overrides the current text. + +**Note**: Some address components such as "country" return an additional `short_name`. You can access them by simply adding `_short` at the end of the type. + +Simple Example: + +```html +
+ Latitude: + Longitude: + Address: +
+``` + +```javascript +$("input").geocomplete({ details: "form" }); +``` + +Advanced Example: + +```html +
+ Latitude: + Longitude: + Address: + Country Code: +
+``` + +```javascript +$("input").geocomplete({ + details: ".details", + detailsAttribute: "data-geo" +}); +``` + +## List of Options + +The following options might be passed to the plugin call. If you omit them, they fall back to the default. + +Example: + +```javascript +$("#my_input").geocomplete({ + map: "#my_map", + mapOptions: { + zoom: 10 + }, + markerOptions: { + draggable: true + }, + details: "#my_form" +}); +``` + +* `map` - Might be a selector, a jQuery object or a DOM element. Default is `false` which shows no map. +* `details` - The container that should be populated with data. Defaults to `false` which ignores the setting. +* `location` - Location to initialize the map on. Might be an address `string` or an `array` with [latitude, longitude] or a `google.maps.LatLng`object. Default is `false` which shows a blank map. +* `bounds` - Whether to snap geocode search to map bounds. Default: `true` if false search globally. Alternatively pass a custom LatLngBounds object +* `detailsAttribute` - The attribute's name to use as an indicator. Default: `"name"` +* `mapOptions` - Options to pass to the `google.maps.Map` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MapOptions). +* `mapOptions.zoom` - The inital zoom level. Default: `14` +* `mapOptions.scrollwheel` - Whether to enable the scrollwheel to zoom the map. Default: `false` +* `mapOptions.mapTypeId` - The map type. Default: `"roadmap"` +* `markerOptions` - The options to pass to the `google.maps.Marker` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions). +* `markerOptions.draggable` - If the marker is draggable. Default: `false`. Set to true to enable dragging. +* `markerOptions.disabled` - Do not show marker. Default: `false`. Set to true to disable marker. +* `maxZoom` - The maximum zoom level to zoom in after a geocoding response. Default: `16` +* `componentRestrictions` - Option for Google Places Autocomplete to restrict results by country. See the [docs](https://developers.google.com/maps/documentation/javascript/places#places_autocomplete) +* `types` - An array containing one or more of the supported types for the places request. Default: `['geocode']` See the full list [here](http://code.google.com/apis/maps/documentation/javascript/places.html#place_search_requests). +* `blur` - Defaults to `false`. When enabled it will trigger the geocoding request whenever the geofield is blured. (See jQuery `.blur()`) + +## Events + +You can subscribe to events of the geocode plugin by using the default jQuery syntax: + +````javascript +$("input") + .geocomplete() + .bind("geocode:result", function(event, result){ + console.log(result); + }); +``` + +The following events are supported: + +* `"geocode:result"` - Geocode was successful. Passes the original result as described [here](http://code.google.com/apis/maps/documentation/javascript/geocoding.html#GeocodingResults). +* `"geocode:error"` - Fired when the geocode returns an error. Passes the current status as listed [here](http://code.google.com/apis/maps/documentation/javascript/geocoding.html#GeocodingStatusCodes). +* `"geocode:multiple"` - Fired immediately after the "result" event if multiple results were found. Passes an array of all results. +* `"geocode:dragged"` - Fired when the marker's position was modified manually. Passes the updated location. +* `"geocode:click"` - Fired when 'click' event occurs on the map. Passes the location where the click had place. + +## Methods and Properties + +You can access all properties and methods of the plugin from outside. Simply add a string as the first argument to the `.geocomplete` method after you initialized the plugin. + +Example: + +````javascript +// Initialize the plugin. +$("input").geocomplete({ map: ".map_canvas" }); + +// Call the find method with the parameter "NYC". +$("input").geocomplete("find", "NYC"); + +// Get the map and set a new zoom level. +var map = $("input").geocomplete("map"); +map.setZoom(3); +``` + +## Address and Places Specific Component Types + +The following types are supported by the geocoder and will be passed to the provided form or container: + +`street_address`, `route`, `intersection`, `political`, `country`, `administrative_area_level_1`, `administrative_area_level_2`, `administrative_area_level_3`, `colloquial_area`, `locality`, `sublocality`, `neighborhood`, `premise`, `subpremise`, `postal_code`, `natural_feature`, `airport`, `park`, `point_of_interest`, `post_box`, `street_number`, `floor`, `room`, `lat`, `lng`, `viewport`, `location`, `formatted_address`, `location_type`, `bounds` + +For more information about address components visit http://code.google.com/apis/maps/documentation/geocoding/#Types + + +Additionally the following details are passed when the Places API was requested: + +`id`, `url`, `website`, `vicinity`, `reference`, `rating`, `international_phone_number`, `icon`, `formatted_phone_number` + +More information can be found here: https://developers.google.com/maps/documentation/javascript/places#place_details_responses + + +## About + +Developed by [Martin Kleppe](http://twitter.com/aemkei) at [Ubilabs](http://ubilabs.net). + diff --git a/ubilabs-geocomplete-7d8228f/build.sh b/ubilabs-geocomplete-7d8228f/build.sh new file mode 100755 index 0000000..3657ae0 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/build.sh @@ -0,0 +1,18 @@ +# sh build.sh + +# minify script +uglifyjs --comments license jquery.geocomplete.js > jquery.geocomplete.min.js + +## create documentation +docco jquery.geocomplete.js +mv docs/jquery.geocomplete.html docs/index.html + +rm -Rf _temp + +mkdir _temp +mkdir _temp/examples + +mv docs _temp +cp jquery.geocomplete.js _temp/ +cp jquery.geocomplete.min.js _temp/ +cp examples/* _temp/examples \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/changelog.txt b/ubilabs-geocomplete-7d8228f/changelog.txt new file mode 100644 index 0000000..8e8499d --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/changelog.txt @@ -0,0 +1,15 @@ +# Changelog - $.geocomplete() + +Version 1.2 + +* Add "bounds" option to search within +* Add "location" options to set default location. + +Version 1.1 + +* Add API to access methods and properties from outside +* Add events for draggable marker + +Version 1.0 + +* Initial version \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/examples/api.html b/ubilabs-geocomplete-7d8228f/examples/api.html new file mode 100644 index 0000000..8987fab --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/api.html @@ -0,0 +1,49 @@ + + + + $.geocomplete() + + + + + +
+ + +
+ +
+ + Call: + + + + + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/bounds.html b/ubilabs-geocomplete-7d8228f/examples/bounds.html new file mode 100644 index 0000000..b0b7ba6 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/bounds.html @@ -0,0 +1,47 @@ + + + + $.geocomplete() + + + + + +
+ + +
+ +
+ +

Try searching for "Google". Results should be biased within Sydney.
For further details on result biasing: http://code.google.com/apis/maps/documentation/javascript/places.html#adding_autocomplete

+ + + + + + + + + + + \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/examples/country_limit.html b/ubilabs-geocomplete-7d8228f/examples/country_limit.html new file mode 100644 index 0000000..1ced31a --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/country_limit.html @@ -0,0 +1,46 @@ + + + + $.geocomplete() + + + + + +
+ + +
+ +
+ +

Try searching for somewhere. All results should be within Germany.
+ For further details on result limiting via country: http://code.google.com/apis/maps/documentation/javascript/places.html#adding_autocomplete and read about 'componentRestrictions'.
+ The Geocoder can also be limited by region: https://developers.google.com/maps/documentation/javascript/reference#GeocoderRequest +

+ + + + + + + + + + + \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/examples/custom_attribute.html b/ubilabs-geocomplete-7d8228f/examples/custom_attribute.html new file mode 100644 index 0000000..c4d5e8a --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/custom_attribute.html @@ -0,0 +1,57 @@ + + + + $.geocomplete() + + + + + + +
+ +
+ + + +
    +
  • Location:
  • +
  • Route:
  • +
  • Street Number:
  • +
  • Postal Code:
  • +
  • Locality:
  • +
  • Country Code:
  • +
  • State:
  • +
+ +
+ + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/draggable.html b/ubilabs-geocomplete-7d8228f/examples/draggable.html new file mode 100644 index 0000000..cac7e82 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/draggable.html @@ -0,0 +1,75 @@ + + + + $.geocomplete() + + + + + + +
+ +
+ + + +
+ + + + + + + + +
+ + +
+ + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/form.html b/ubilabs-geocomplete-7d8228f/examples/form.html new file mode 100644 index 0000000..4abe92d --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/form.html @@ -0,0 +1,112 @@ + + + + $.geocomplete() + + + + + + +
+ +
+ + + +
+

Address-Details

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/location.html b/ubilabs-geocomplete-7d8228f/examples/location.html new file mode 100644 index 0000000..9d777f0 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/location.html @@ -0,0 +1,36 @@ + + + + GeoComplete + + + + + +
+ +
+ +
+ + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/logger.js b/ubilabs-geocomplete-7d8228f/examples/logger.js new file mode 100644 index 0000000..61295b7 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/logger.js @@ -0,0 +1,4 @@ +$.log = function(message){ + var $logger = $("#logger"); + $logger.html($logger.html() + "\n * " + message ); +} diff --git a/ubilabs-geocomplete-7d8228f/examples/map.html b/ubilabs-geocomplete-7d8228f/examples/map.html new file mode 100644 index 0000000..ded9d1a --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/map.html @@ -0,0 +1,64 @@ + + + + GeoComplete + + + + + +
+ + +
+ + + +
+ +
Log:
+ + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/multiple_results.html b/ubilabs-geocomplete-7d8228f/examples/multiple_results.html new file mode 100644 index 0000000..0360643 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/multiple_results.html @@ -0,0 +1,53 @@ + + + + $.geocomplete() + + + + + +
+ +
+ + +
+ +
    + + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/simple.html b/ubilabs-geocomplete-7d8228f/examples/simple.html new file mode 100644 index 0000000..88de4af --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/simple.html @@ -0,0 +1,58 @@ + + + + $.geocomplete() + + + + + +
    + + +
    + +
    + Examples: + Hamburg, Germany + 3rr0r + Hauptstraße +
    + +
    Log:
    + + + + + + + + + + + diff --git a/ubilabs-geocomplete-7d8228f/examples/styles.css b/ubilabs-geocomplete-7d8228f/examples/styles.css new file mode 100644 index 0000000..c30b5c7 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/examples/styles.css @@ -0,0 +1,31 @@ +body { + color: #333; +} + +body, input, button { + line-height: 1.4; + font: 13px Helvetica,arial,freesans,clean,sans-serif; +} + + +a { + color: #4183C4; + text-decoration: none; +} + +#examples a { + text-decoration: underline; +} + +#geocomplete { width: 200px} + +.map_canvas { + width: 600px; + height: 400px; + margin: 10px 20px 10px 0; +} + +#multiple li { + cursor: pointer; + text-decoration: underline; +} \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/jquery.geocomplete.js b/ubilabs-geocomplete-7d8228f/jquery.geocomplete.js new file mode 100644 index 0000000..f97e9c3 --- /dev/null +++ b/ubilabs-geocomplete-7d8228f/jquery.geocomplete.js @@ -0,0 +1,500 @@ +/** + * jQuery Geocoding and Places Autocomplete Plugin - V 1.5.0 + * + * @author Martin Kleppe , 2012 + * @author Ubilabs http://ubilabs.net, 2012 + * @license MIT License + */ + +// # $.geocomplete() +// ## jQuery Geocoding and Places Autocomplete Plugin - V 1.5.0 +// +// * https://github.com/ubilabs/geocomplete/ +// * by Martin Kleppe + +(function($, window, document, undefined){ + + // ## Options + // The default options for this plugin. + // + // * `map` - Might be a selector, an jQuery object or a DOM element. Default is `false` which shows no map. + // * `details` - The container that should be populated with data. Defaults to `false` which ignores the setting. + // * `location` - Location to initialize the map on. Might be an address `string` or an `array` with [latitude, longitude] or a `google.maps.LatLng`object. Default is `false` which shows a blank map. + // * `bounds` - Whether to snap geocode search to map bounds. Default: `true` if false search globally. Alternatively pass a custom `LatLngBounds object. + // * `autoselect` - Automatically selects the highlighted item or the first item from the suggestions list on Enter. + // * `detailsAttribute` - The attribute's name to use as an indicator. Default: `"name"` + // * `mapOptions` - Options to pass to the `google.maps.Map` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MapOptions). + // * `mapOptions.zoom` - The inital zoom level. Default: `14` + // * `mapOptions.scrollwheel` - Whether to enable the scrollwheel to zoom the map. Default: `false` + // * `mapOptions.mapTypeId` - The map type. Default: `"roadmap"` + // * `markerOptions` - The options to pass to the `google.maps.Marker` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions). + // * `markerOptions.draggable` - If the marker is draggable. Default: `false`. Set to true to enable dragging. + // * `markerOptions.disabled` - Do not show marker. Default: `false`. Set to true to disable marker. + // * `maxZoom` - The maximum zoom level too zoom in after a geocoding response. Default: `16` + // * `types` - An array containing one or more of the supported types for the places request. Default: `['geocode']` See the full list [here](http://code.google.com/apis/maps/documentation/javascript/places.html#place_search_requests). + + var defaults = { + bounds: true, + country: null, + map: false, + details: false, + detailsAttribute: "name", + autoselect: true, + location: false, + + mapOptions: { + zoom: 14, + scrollwheel: false, + mapTypeId: "roadmap" + }, + + markerOptions: { + draggable: false + }, + + maxZoom: 16, + types: ['geocode'], + blur: false + }; + + // See: [Geocoding Types](https://developers.google.com/maps/documentation/geocoding/#Types) + // on Google Developers. + var componentTypes = ("street_address route intersection political " + + "country administrative_area_level_1 administrative_area_level_2 " + + "administrative_area_level_3 colloquial_area locality sublocality " + + "neighborhood premise subpremise postal_code natural_feature airport " + + "park point_of_interest post_box street_number floor room " + + "lat lng viewport location " + + "formatted_address location_type bounds").split(" "); + + // See: [Places Details Responses](https://developers.google.com/maps/documentation/javascript/places#place_details_responses) + // on Google Developers. + var placesDetails = ("id url website vicinity reference name rating " + + "international_phone_number icon formatted_phone_number").split(" "); + + // The actual plugin constructor. + function GeoComplete(input, options) { + + this.options = $.extend(true, {}, defaults, options); + + this.input = input; + this.$input = $(input); + + this._defaults = defaults; + this._name = 'geocomplete'; + + this.init(); + } + + // Initialize all parts of the plugin. + $.extend(GeoComplete.prototype, { + init: function(){ + this.initMap(); + this.initMarker(); + this.initGeocoder(); + this.initDetails(); + this.initLocation(); + }, + + // Initialize the map but only if the option `map` was set. + // This will create a `map` within the given container + // using the provided `mapOptions` or link to the existing map instance. + initMap: function(){ + if (!this.options.map){ return; } + + if (typeof this.options.map.setCenter == "function"){ + this.map = this.options.map; + return; + } + + this.map = new google.maps.Map( + $(this.options.map)[0], + this.options.mapOptions + ); + + // add click event listener on the map + google.maps.event.addListener( + this.map, + 'click', + $.proxy(this.mapClicked, this) + ); + + google.maps.event.addListener( + this.map, + 'zoom_changed', + $.proxy(this.mapZoomed, this) + ); + }, + + // Add a marker with the provided `markerOptions` but only + // if the option was set. Additionally it listens for the `dragend` event + // to notify the plugin about changes. + initMarker: function(){ + if (!this.map){ return; } + var options = $.extend(this.options.markerOptions, { map: this.map }); + + if (options.disabled){ return; } + + this.marker = new google.maps.Marker(options); + + google.maps.event.addListener( + this.marker, + 'dragend', + $.proxy(this.markerDragged, this) + ); + }, + + // Associate the input with the autocompleter and create a geocoder + // to fall back when the autocompleter does not return a value. + initGeocoder: function(){ + + var options = { + types: this.options.types, + bounds: this.options.bounds === true ? null : this.options.bounds, + componentRestrictions: this.options.componentRestrictions + }; + + if (this.options.country){ + options.componentRestrictions = {country: this.options.country}; + } + + this.autocomplete = new google.maps.places.Autocomplete( + this.input, options + ); + + this.geocoder = new google.maps.Geocoder(); + + // Bind autocomplete to map bounds but only if there is a map + // and `options.bindToMap` is set to true. + if (this.map && this.options.bounds === true){ + this.autocomplete.bindTo('bounds', this.map); + } + + // Watch `place_changed` events on the autocomplete input field. + google.maps.event.addListener( + this.autocomplete, + 'place_changed', + $.proxy(this.placeChanged, this) + ); + + // Prevent parent form from being submitted if user hit enter. + this.$input.keypress(function(event){ + if (event.keyCode === 13){ return false; } + }); + + // Listen for "geocode" events and trigger find action. + this.$input.bind("geocode", $.proxy(function(){ + this.find(); + }, this)); + + // Trigger find action when input element is blured out. + // (Usefull for typing partial location and tabing to the next field + // or clicking somewhere else.) + if (this.options.blur === true){ + this.$input.blur($.proxy(function(){ + this.find(); + }, this)); + } + }, + + // Prepare a given DOM structure to be populated when we got some data. + // This will cycle through the list of component types and map the + // corresponding elements. + initDetails: function(){ + if (!this.options.details){ return; } + + var $details = $(this.options.details), + attribute = this.options.detailsAttribute, + details = {}; + + function setDetail(value){ + details[value] = $details.find("[" + attribute + "=" + value + "]"); + } + + $.each(componentTypes, function(index, key){ + setDetail(key); + setDetail(key + "_short"); + }); + + $.each(placesDetails, function(index, key){ + setDetail(key); + }); + + this.$details = $details; + this.details = details; + }, + + // Set the initial location of the plugin if the `location` options was set. + // This method will care about converting the value into the right format. + initLocation: function() { + + var location = this.options.location, latLng; + + if (!location) { return; } + + if (typeof location == 'string') { + this.find(location); + return; + } + + if (location instanceof Array) { + latLng = new google.maps.LatLng(location[0], location[1]); + } + + if (location instanceof google.maps.LatLng){ + latLng = location; + } + + if (latLng){ + if (this.map){ this.map.setCenter(latLng); } + if (this.marker){ this.marker.setPosition(latLng); } + } + }, + + // Look up a given address. If no `address` was specified it uses + // the current value of the input. + find: function(address){ + this.geocode({ + address: address || this.$input.val() + }); + }, + + // Requests details about a given location. + // Additionally it will bias the requests to the provided bounds. + geocode: function(request){ + if (this.options.bounds && !request.bounds){ + if (this.options.bounds === true){ + request.bounds = this.map && this.map.getBounds(); + } else { + request.bounds = this.options.bounds; + } + } + + if (this.options.country){ + request.region = this.options.country; + } + + this.geocoder.geocode(request, $.proxy(this.handleGeocode, this)); + }, + + // Get the selected result. If no result is selected on the list, then get + // the first result from the list. + selectFirstResult: function() { + //$(".pac-container").hide(); + + var selected = ''; + // Check if any result is selected. + if ($(".pac-item-selected")['0']) { + selected = '-selected'; + } + + // Get the first suggestion's text. + var $span1 = $(".pac-container .pac-item" + selected + ":first span:nth-child(2)").text(); + var $span2 = $(".pac-container .pac-item" + selected + ":first span:nth-child(3)").text(); + + // Adds the additional information, if available. + var firstResult = $span1; + if ($span2) { + firstResult += " - " + $span2; + } + + this.$input.val(firstResult); + + return firstResult; + }, + + // Handles the geocode response. If more than one results was found + // it triggers the "geocode:multiple" events. If there was an error + // the "geocode:error" event is fired. + handleGeocode: function(results, status){ + if (status === google.maps.GeocoderStatus.OK) { + var result = results[0]; + this.$input.val(result.formatted_address); + this.update(result); + + if (results.length > 1){ + this.trigger("geocode:multiple", results); + } + + } else { + this.trigger("geocode:error", status); + } + }, + + // Triggers a given `event` with optional `arguments` on the input. + trigger: function(event, argument){ + this.$input.trigger(event, [argument]); + }, + + // Set the map to a new center by passing a `geometry`. + // If the geometry has a viewport, the map zooms out to fit the bounds. + // Additionally it updates the marker position. + center: function(geometry){ + + if (geometry.viewport){ + this.map.fitBounds(geometry.viewport); + if (this.map.getZoom() > this.options.maxZoom){ + this.map.setZoom(this.options.maxZoom); + } + } else { + this.map.setZoom(this.options.maxZoom); + this.map.setCenter(geometry.location); + } + + if (this.marker){ + this.marker.setPosition(geometry.location); + this.marker.setAnimation(this.options.markerOptions.animation); + } + }, + + // Update the elements based on a single places or geoocoding response + // and trigger the "geocode:result" event on the input. + update: function(result){ + + if (this.map){ + this.center(result.geometry); + } + + if (this.$details){ + this.fillDetails(result); + } + + this.trigger("geocode:result", result); + }, + + // Populate the provided elements with new `result` data. + // This will lookup all elements that has an attribute with the given + // component type. + fillDetails: function(result){ + + var data = {}, + geometry = result.geometry, + viewport = geometry.viewport, + bounds = geometry.bounds; + + // Create a simplified version of the address components. + $.each(result.address_components, function(index, object){ + var name = object.types[0]; + data[name] = object.long_name; + data[name + "_short"] = object.short_name; + }); + + // Add properties of the places details. + $.each(placesDetails, function(index, key){ + data[key] = result[key]; + }); + + // Add infos about the address and geometry. + $.extend(data, { + formatted_address: result.formatted_address, + location_type: geometry.location_type || "PLACES", + viewport: viewport, + bounds: bounds, + location: geometry.location, + lat: geometry.location.lat(), + lng: geometry.location.lng() + }); + + // Set the values for all details. + $.each(this.details, $.proxy(function(key, $detail){ + var value = data[key]; + this.setDetail($detail, value); + }, this)); + + this.data = data; + }, + + // Assign a given `value` to a single `$element`. + // If the element is an input, the value is set, otherwise it updates + // the text content. + setDetail: function($element, value){ + + if (value === undefined){ + value = ""; + } else if (typeof value.toUrlValue == "function"){ + value = value.toUrlValue(); + } + + if ($element.is(":input")){ + $element.val(value); + } else { + $element.text(value); + } + }, + + // Fire the "geocode:dragged" event and pass the new position. + markerDragged: function(event){ + this.trigger("geocode:dragged", event.latLng); + }, + + mapClicked: function(event) { + this.trigger("geocode:click", event.latLng); + }, + + mapZoomed: function(event) { + this.trigger("geocode:zoom", this.map.getZoom()); + }, + + // Restore the old position of the marker to the last now location. + resetMarker: function(){ + this.marker.setPosition(this.data.location); + this.setDetail(this.details.lat, this.data.location.lat()); + this.setDetail(this.details.lng, this.data.location.lng()); + }, + + // Update the plugin after the user has selected an autocomplete entry. + // If the place has no geometry it passes it to the geocoder. + placeChanged: function(){ + var place = this.autocomplete.getPlace(); + + if (!place || !place.geometry){ + if (this.options.autoselect) { + // Automatically selects the highlighted item or the first item from the + // suggestions list. + var autoSelection = this.selectFirstResult(); + this.find(autoSelection); + } + } else { + // Use the input text if it already gives geometry. + this.update(place); + } + } + }); + + // A plugin wrapper around the constructor. + // Pass `options` with all settings that are different from the default. + // The attribute is used to prevent multiple instantiations of the plugin. + $.fn.geocomplete = function(options) { + + var attribute = 'plugin_geocomplete'; + + // If you call `.geocomplete()` with a string as the first parameter + // it returns the corresponding property or calls the method with the + // following arguments. + if (typeof options == "string"){ + + var instance = $(this).data(attribute) || $(this).geocomplete().data(attribute), + prop = instance[options]; + + if (typeof prop == "function"){ + prop.apply(instance, Array.prototype.slice.call(arguments, 1)); + return $(this); + } else { + if (arguments.length == 2){ + prop = arguments[1]; + } + return prop; + } + } else { + return this.each(function() { + // Prevent against multiple instantiations. + var instance = $.data(this, attribute); + if (!instance) { + instance = new GeoComplete( this, options ); + $.data(this, attribute, instance); + } + }); + } + }; + +})( jQuery, window, document ); diff --git a/ubilabs-geocomplete-v1.5.1-8-g7d8228f.tar.gz b/ubilabs-geocomplete-v1.5.1-8-g7d8228f.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..01330a303a565ed7126f87cb61aaaa95ec741f23 GIT binary patch literal 13318 zcmV+hH2KRPiwFP!000001MFRWSKG$Y@89|q`-nal$T9K@7!n7##{rZ0T;8tjv`-#R zkG;0mwh~!#^#XBw`rYr$?5-@y#*lH=~t0<)6DF*Y9(;I~Lp) z!4D6Al;GIi-KD>9OMao4|l|U$L0NSYb1QIgQ+Vbv84>5_)s!%J?!mOZ(slLJGcI;d*Cms57mKH$KQPY zubO{rT&csm?kesv;BGWj85nw+H3_PMU#J_@uHI4hO6OIdp?I7!Z9Kpp9FAju< zR4|UBAFxokE^=_7-!#^F@2Cw(F{Y@{NU4bA-i-Z8b|j#pVH|iMQrI+HA5=yXKZ-$w zT(J4jcU}Jmh6W-%+rbfqHN)t@E#CL91&u{cw&zFCRoMlcfa!cz)va*Mq3?ZRNQHr1 zP%lpnCqVJAc)Z8~-B101gSyg?Bayg&p)t#HP4R=M&ti3Ta9*`U9?#9?DDkPI4-c}`O)e7sApY1mzc_E6pR_YeyX}x(?V8`{d`r8IkT>zIB!)B^?Kfi0x zC6HH#e~voMi*o~Xa&&RtX~Ag$M%n5lq(3*?jRLE;nr&3bN$UdGqdI}&f|vl^c|&qR zRkO^DKodNF-)_wNa@?q&0HC|5l@ZeAcig_BYB{9seuky-Gg* z!=>u(bNqjVV~zc2rRIKPlWnn|AQWLFC|gxyZH;~WcPxS#dyB0wa8lH`bol_HKs}BU zTDTUE9M3T75Gd?x?hPPlDB>yIg2=!lb`$VvNI~MQ?~h!;&hWf`*<26VRU+k=4TK*d z;14(#)`*%~AgjoyPFS1(O)&!xiXZtk4+nuWjfx}9#TrKwcawU2wWQ16BxFkbNWz-@ z-Q_9Xn-KkjYX_UK4}Q!-2d;xA0{_~vG4w(}odWzIod7||X4p#bU@(SI9x&G*a2Zn( zsW8qw3fXCm+kro|{Tt6>7gKBs@p%Ti2MmP}0Kt|B5HEyd|3*rTM8E+F0T_V6Nw|f= zCTeONiun-Dr?E>2j6~yH0aw6LAs{Va>xK~5e{#eP-MZo)fCg$F`f)H&YE41M5paq7 zq}Y_Pp=!h8Ca?l4d&5I#z}|;^Bmgq_*#B!0L~}hs-w{k^6)<#!3$Rn^c7XVV3~Me# znI7PvUavQwJ>$m>llYpOS^Iy@Sh1+o$;vf$ggoJ=a0Oa{W&CIjy$p%w^EyRXsj*AI zv6>1nEdxLtOAgQx8gk<^M;4)Byb}`SaR8%Xgczz%>Hq|a2<`>DYU2p+tyrNr7fCTf zt%5Dqh9v|a zg)!QiGLa3~JGltf5`2>GDiAQe;JZlp)DImw!?qsIpd!oQ;A{mpzl7a3+ zc(JBLb)hp|SM~y3AUK5{s>Rrs%~==>4oszCWUK^XV44eqv*O3_pOO!xWd~BoKSD@D z{or88-B6f^`$fs~Fw6YouNa%tzRda(A7@JcuIGfuQU8T_D;t(T_pq?%8NbAUqPEBe{;H{d6Gz1wTi2 zB*KV7O{A`Imf!|3LAo#301Pz5n7tuJ7G&qbV`C?Zq`koSz*KFM!Qzd4Z!-x-nkzL? zE67yNR+So(m_oCEpWtK|5M%Th7J6$Tq3nl6o!Ybpt~2GOgf{fL)DI3;1Quhk&&YDN9M2Q27HO4#(n*7({+hfZqzH`m&zl zqb(d?oTVlRbdkgc3^VK)JhNeZ$P7whqs4)RQ!#Lcvn(vT1#qExEwjWMU>e2)u>5cs zyU?XKvm^?p7A6M}I17aY*gcO=L~kBkbaf`_MaTwY$F&)j{X>F-fso59X@}!ydYnFB zvcOS3R*yG{jXhO014ceH2vUNf=VMe$4~wMOKKSq08(hLKsTkcOEOGgRpcgOB{YbocQDbd?GRLxLLcWKgB;=m)s zY0F|7cUceoT@ZCit#hq#niUj0K_90a0GDg0*CiU91vy$!vYLiyHpK#&#C94EN~9`7 z0iuvYFz-|Fff0nZ8e?orWqU<-VzOD* z!}eH@2LYe;WVfzdwJHk$(bT&8Me3)gkRPF3SiGmeLhA2Mb#c~rIUo_Ovpy^EpqP6Vs#gAjmHt!U^NHhKG#W{ z?E4$ysVpEhk*P2#XEce9>mj+=BzmeiXge?qevs~+iS5juGDBt0$WQ&G@$iUnc_9Kd7C!q{2T%S|iWYYW$?Rs|Xvgjc-8 zTucelgD&sn25f;W@KFGjgqxdd;ZZJ0#yxL@cZj#L;52t>RXG9hvjefMY3mN6u~4{9 zPeuT#9Qq(dopLdn%)i&PAmJ0tOscnKCP-xKJcCs-d*fHjP#_@EaN08-LGB@m!d>NGT^v8#3Ec-MdFeGj8vD8hH8 z$L^}WD9i4i{eOQ-Kkk})8G=}2xOx>`rLA;n&^Man=rHlk)@ZcC3S>qch)PJCNd zS1to|;E^Lz>t9t5P%G2qHnpB8O63id7f6>RAy_2E224ZT0`IS|4jrZ+rK`xW7rCm(1$eP(CLDSrt?#mnw@lO|20GwpTkF1XLLp-ct>h2}w z`za3q0b^gy^AAVnts-Pmwjf(6&TmDOq%f#n$bRsts<=txPUD&f)Z&2M#u_0Xuta+R z7Kkx6wzD-;%7#*p$=g)_a|Y~4BL{}?av|TAQ8nW#(dnn3!4TV|Y?w{Q<)dX=KD>g^ zoTQ96XJ8vbM7l`PE3jVRV=@9is8$;a^7wc@^<9`wNbB)L!4mulXcw#l7*YDug?{ob zX{}pceY>*y_O_G*TKF{vE23L?30D~OgkT)0^PAF8%)EW2- z$Sk_3JE8;s7r^;Y;19aQod8u$jls)EB2Y=!A9hJI5b!mpZr}e*GNdxSc+v;x4i|>5 z?*~$;06DSmoQPb=W#JFj&9#su(MGa-@hIJ(i{^kAR90&kCmN4Ao}@(g!~6IkW=T!+ z+5uO|zA%U+k)yb#Ow_0+^-ovY;@n_WYD*@oj4^T98v5eXH=ck)3jRHZCM^!g!fr$# zIx3`|2Izliij#bWPB<1S5@Yqa>`-?)hQX%h!5QQgn`vPfXL}foH8-_B%DnwBwwjbx(m-> zJrUv4#Cz}mS+)PGA3LsXh2wACV|3U1Kh@px!v3$F%JcrO$2is?&t`g}!8jTE=;4g1 z&>oLmIQtl~tu6JMAYxS7yp)t8;v`=Ws zUBtHXCIox&na&LZV&7J4$mIJh#^jUj1nMO9JK2?BXaTCtV0z2IB-t(ZRSq{?A7_*4UArWypkbdqE9jz7@2B zDLWtmW=b?-rXO$1A~}L|$J5O;iZRngP=wrzTenhT%32J<2Hfx`lcPy0he{<$ncW$R zP}Li-G?m|5lonJ%K`L!w*YfgHPsS4*tJZ(w!@g0*UGcxP`2O$SZfWQF{ohA8?lu3A zD^P6xN*QW~*x+f-5ouS2!rBWZ_)ubLu}LP)j@uIAy2 z^45M)wm)1T2BZ$zW1g4_SXjF{qT3re2J`=X&0f^>*3*B019_d_oSNQYdYcgbk$=t$ z!D~ferc;4p+1j(pIxmn2Jk5KNxn(WOB0jF}k=hu)*eatUJ?B5>_FC$z=33e|7dN%& zW3e!r-28){vZM@4b5<6ze6#2Mx{xoI-YHWV)@qrVQtB${WRQgvC1X+mkYasyaf8T4 zxl~}KRPR##BQ2)PTe8Zu&DU-h$E$y(=Ny&^`5elVLXGWnrR;~~ZhT_V5)vUBtR6Bb+lB%-1UEWNH@DZ^7{VixL-3@wLTVq%20%8b#5CkoH{g-qb z89HlO1!dqyW+Eh7x))rU6W)P#(paZl{t|%m)WPZb`0mHO@SlEJfxeXUsR%$>Gv%+WSSgv!2sgM}IQ{H(1f0JU8@F)1)rBK_d_&pwH>* zYj=qxdt27DSoK1()YF5rMI9*%ea6m@i=7d`?pAkS0dy`|JJoWvvinqEG+FQKwpf2U z5W4$}LH{(z{qWziPng_a#$EVtd-409JEgt7XZ-gF$DbYlp(Dm?3+?IE1Rxj$LU^Wj z)3o#XcK}FsG_JAjQfd16H5n!{{~pL${=F`-mvjx@s>?{CDu!t{>Fc z+N)QubSvMXO0gKq!lb~Or}mC7`|^J*c;a#eH*Y&RI?wu^T(@TT8H{o z<;7R*lMP51+Tj-bf%X~VmQOFo=P7Ap{0g!*?fz!xw5NEHJhM4`1)EFSntsa%0#f_d zSFku$TjH0G9`CFm{*o^gtWpMFro$EQ3M^%|U&NVRl12SDqty92`x>PBIM0`}W!&^v zIKU4rySx0W61vf?PmEW5km&YdEc-suqNHUolBE9yAJ{(daWDLr{czhC%eVvo?UZ-& z|Nn;y0Kn(xzmIYJ?eL$1cX*P;ch9)+F>qnITxM_ZyBRlpR$%AihJEmZPw?x*Ljgps z&@@Wnec>MJ&q4v}p!50tdw)?Y6Vxumo1=_?zhWzZjqI3T6Ic|G6l{k6y6816{HI-0wt+ z{`?=H60BC4=`6)1T5?S7%P&4H)>BN*4cV0Z54KI-y;YJ@WOw=+f-dU!W>o1soXtqn zu_&9;|FNv7xEuy{t|qR5)01b10f9DgER@0MXm2Tz-dVicZ zw{zV5)J~f$rpp=RouU=MyIKa`)x@Z>JKb=*xBGvY&qnrta1GbZ%UEOo_kO#d;J^0v zdr$7||2ueYVE_NMsy}v+>-QS_Z;x@<#H{w|etipOlIdNXm*9RN99fT#DvQk*)saJm z(TN6r3EOB7!!G1fdg^F@KMn}kQ2xu1-mZ)_^8ZQiS$zJ}Uhiq|{`|MQc((8qcbHmk z7QP0NI5@9pGUDvp;=z|QJopb*3grta1?}LEonp6W{r9+dShV1mP{a`2=I1{ler3-_ z^ItD_y=56|=Kucwv)uV#_xS(2c<%MTAOGwxq@r`lIbQVg=L0Qq;J`M|KN-9}UQEwB z8sX`nHDR)UTa1Q_8M@8>?|-Xe@3-sH?@y;src1tkGFVLJLdqa{BK3AtHF$z&Y@ezw z*n0k1eSYx!$ME)ESN?hE%I`oSHuP_Gi;OFc?vZKnQ8x#qF>tzWvKbQ~Vwx2-;A>gZ z3h+fM`3n5`tFONJip!T|o0jITPFdFCB_-;e-nP-R?x-4{&o5Ae@)vRA#!)M(&)vi9 zqmopl6@wd>hY+o;HeR+3WrL7z@2sxF4e(Fzhgo)K&u02x?(X=_%UGlT?fvdaa{kBD z-jjR#?=GI7JO1bA1at9vqUe8CX==T@b3+y*%Iubv=Nud7gxtO6v_f;brQ)<@%Fdlv zYMqN)?!q%p=msjgQW`Q=h1lRetaqw$RD+WXxvg(zaz*L5Gvut8vcMJkFiHR|#<0)U zPV^osNzR|8%3GR#Fqu^2({Jjw>(NZ2RhmVvlS8;Q-vQThx@VHP*$Eri{Cw1`yHI5| zTL0-n`&$P8{mXj)Pj4^v|Jv|sz(=i`!1|1z3x+#250pc|Ja|rDL$!2-&c5da0izA!KiaKt*Y5zJnNjm zDn9Pu&quRrIy|F79t?uApZ5NB|6`(vLhI3Kby80S#zO(;n8k=i%A2GFnO;q?mYm$$ z^)94p?+Hb1JqW|afSP=N#!+GLLRh6!o}kIGn4VPKdV2m?lFuH$9?l=hAKl5t1hkch zkLfb_-z1k^;>+LsfS!2#7)d;Iw@053=NF4(GFzlgk4=G+`1oprK6~)MYkpfD5K`mQ z`m*Eh(Cv`?01dS|1-%gD3%5khdf>nDgk!yUQ#Xn6tZCE{!8*pKbSWh#e^~TEH1?r& zpQHT4qmT#1tQu7(^LpAr%USxVKK=*1!^`Fe#fvXKFCYn4saw2|!hn3Aw90;Qc`-b> zz+d9g>n9CI?bl#jRi*6VV3mcw~Yf$&; zKJr;L$CIypneHNXDAdIv0*N8t3Of8}MfvbJ+mQYbP+t>OHLgyF8YJ%ba2(@ zy1g7pP-mwYX*A{$_f$VUC%Df&xwhj5#qnq`{x0l2xgZ|e@%M|0PX5NbR>x3rQTFwU z);V>%+)ClfIw<;h>_@*Cp0Nd>$)%(SE4u0(YQpEj7JYlWhj4_i z8y?looP+hlDTEiVpU`FU{GNyB0=jpET?}J8oL8?4;?Al#8%}3)enZ#2(oinIl$kLX zkB0CW2JX+eye16g4y#kna);P%&nQj`yJP_^9^mD&F!ZNTHQ;gEHykM3w=+ZL783o! z-)>9Y0{>$bgCYJL=MwNVaLeL^sDE8CbDb?lBW}V=Jn`M#=YET0(p^LvpOpT&tL08N zQ}ymY>-x2J3Ud5lRN$+E0`F||drxys??S2dXmoi|RilXUsxjTUO9SN-;TI}E=9Ddh z`8-z&{6u%%r>9y~WM6c|1p|Z!O5u6bmV`O(M)TGi4Hahm2}aA*HyAMUzU$8E!4`db zCS8dsP+a(9`jW22Cd{e5Fwe~xQIMPK~L=&9$pjfp;$5(eGoZA-|$MM;bQ%+XW(~@9dGEBnLs*x5!EhsmO0jPjZcKXyf^4a69%)wSfFUmta2sL=d<+wBS-N^F$s2$M zDE@+M&RIpOBj`?}A+5aV7^Q}3M0c?w0(-@`Jx^$PqJ1>)NA>?KK&7Jhg$BJBCIH@3 z8l%O1Tu(3R8t;0qUJp?pSsd$66X*{M_inG`gn*duB$*CMfg+!J^pPZoPfOn(FV#X>JG68g% z>mcg)F;x%-YjOdct6e?>v0V5LwBNEFMk?INd;v_%R!gu@qc2JfrNY3~+v3Jj=xTAz z0sxJlu7}KSb*ne?YJA!zSyo&(9Vc0R-b0g>Hwa7ik{$Z@Tl!&(OAa!q0lAdgm0uzKK1qrXw{(FOo6zpYu>bTtur0dolNU_jZE4Rk%`m~GVl;r zG^myS3^?-^#c$?=-b0i5B#f2$qQ;nhQh^<|Rc$j^mw=7Iniz7Ed8EXEy#&1;48N}C z{|4>d%OP~r35cROnzfRU?^Hqp=ODqx-UQXG3%ov)J9S!rKRg9pAut6%bkJ6}XqD9) z5Qmrp>o^1+9iX!3I{9;2eUpBMHncyme2H4=&b92%9P*fJLL4|6=P5KmG_ z%WN7^7QW{t&h2-6q)grTdGH{~8((>Y%whJhl6Jg&Vh${bzj}WKKK?WV=z5T=1?_+p zv;jyOR)yYydaP_9iEV8tZ5Q%>Cdu1L`+aS;iT<{Kv4xZ4%~e~IevIF%(+=g`Noslf zf>8^4b#gHnpI4_V%12ctQ+zZ(K7yVas7*j_h?rpmyGZAbW)G*3P9CH>Wa*95O#9z! z$$iwbK(_RGe3aUpEQaCPl@Ud9K^M1oX6FM|Z1t3grviTu;~u;a582B!8)O|TzmAj5 z*%??`9a%rQ`6qd)pK}v|}d@hG7)x0j`Pt84jWHmgsDC;;bV|Kob) z*u~ziHYEqB6PBVGPt6dY;i7XqfXNA(`#3}3w611kI?5*VfUz@v>~)a{M?X8fMuf4l z9t<CdJnpMF$1Q!fTg2SH?6BFYs=m5s;dbaPwf!wV}<}nj++f>@w74;r{2C3 z&jMd@D?<}hmph7YSXT^;4gj){0Az|YVo9n(uATu%snu~km&4{zKBQ-kO_mM~s`gD< zGz(K^0@+kShDKKe^e8N$U7x-E?W`it6RpQr6YPDo0zgsr<|;LDa7;QZYp7#bDVf1M zDIh?K5DlQ-Lkbm`Ro$Is0u1Z4bjoP2L7MieuF7^+&|NyG__bTffD4fUacv^K9e1JF zAViPAypDE_uvafZ$45^lw2ya?GS

    3AwPR_2QftMc!vP^DBXP3b9|wDSc5XnUi|T zb~d?%Wb}-#^TK)BHqigYa?j}?6u5Be?DI(B){K6VyS&M`RU&8^ zyPCf29i_~_tjLt;PNsOxnI{`(vpNz89{p)9c$F-N=7I>52@MgSk9K|_>zDP6tjIKT zBGf;t>+g!i#0hnAtafqJYg`w7`CI%ulj>v$>lp4EqoOf$#t9+`7E{trm{ny?@R~%) zaNrGRDkM7ad&y#N4t11d2M!4E_HD4-Apm#BO!=sJax3%9iC3Oo+FEzsp0Vl!`O9=ei-J>$zIk;%@h zIYS8oJ%DtOVm-C69)>`U@z>a4S^{7F9hV^K^VXIcLXLNYRwvZ7LB~EFRbm>2s*Yio zzlwUtHAWkE==h!m`Xzk0_n|7 zef)T<-Re#TCy$)B)ZAWTB)qE_h~Vu*m%I4*qB{8whhi|k%Cy7UY+4c`K^|#>*3QfA zC)-C>;@YBIy6t3?Ot*4hcudLmj1Zb#Q~xczcdN(oo?&|nS1Af{(858VI1sv!^I$x` zcyw|x9G$lJc3O(bKa305dlv=l+X8%JL4>fh7&uu1VvyHrT4He!z8@gyY*g8%pLrg@ z>QP4=+Hs+p+YzuicFUqwJfcVpPMDuAMr@kgz5#0A`ESW2`Glqtw^30~9wh)Xg|_?W zFymnX+ zGmfYqTV_juXAlHr@+^U`; zm&RBxC1ss;fs~a9NfEQ@>|`cQWNgTR-tGyzgc(?+qT}A>qp{^YH?gTX8tLA*6Pgi` zyeM-Kpg}h43ll$AXa>0cCP{_@qt68T%e-GBFu&0Hf}buk0kJQ5q4Rzlw`W8$Qz?Z$ zGBvbZvsa7&!P%fv2d?$(>R1qStMd1-V?HE)KV~7sqS{s!3S(weh*87 z@v5lZ=UO^bohdkKqbuoN`E;q@h!N8};ZiLy5J6Lut1(!uv6JZ9!y}&xVdjJ%$s{u# zE|Y^^1X-F`YeYVppwFi=pc0y;>d^}uej_ItRS#Yrxq+p>mRAN|oGvQr+6b1S5wr; zGzu;etLPOYYZahzM(`rs$`Wf^T52St)SK(cgqv9x9~7;tcKl(x=t#4rlGw0rgR9$6lMF-_gW~hBH>5Tv{?`qr~yZ{$)6= zLUlkdpA~%oMFhkCY47VYQcwf(Qy}L0uR`^A|tlXfT@>Mo`ShtIIrj`;)$Xc@CEOJ4~(M@l_|UHUya=Y=H(78 zsg!SAdsS#SCw2w_J)CQoJGUcIu>1JAu67__b!`Ut2H*n%CL2Ez?YnReSm^jy*BElj z#EEa!M+)o&K3tT@?;;{BBpHW?b&C@Gdj%JAl6M9&vyJG?Pz%Aa`m&$UNQ#@M@S~^9wf;U1!oHSYsC=3-i zBYqBC=Os{5RDRt2I~|@8z}vWr1-dMxg2*~t2p4GCVVspr2PUv+;Yz86Qnf6Pm#Zd@j;~H|>CF%oy#Do4uS8XNM;cZe6KJU&j zM7xXK)pi}xDSGzmcJTm9GnT3hSS{a|;&p_&?F9}VX`M^>vUiluV^=1oj%Hn0tfZs4 zN;+|7t0X{74bBJH8OvscpZ@Xq@_=DM9nblZ&+7xt5Q^c_qQ=ftGYkqEc{s*71cEd7Opa0Q&wwIp&xc9sL`}3dg z;`vpc|6xzl5P{^*(lGY44XrJ&#Zg1CVT!+|U|I|%;9ymapbh@=v9l67Yoca}nDg{- zHWMg&O#!mKryUy@>rzQTtc!a@hAwJgj|9J`xRvq5wzQHh;nn%d>$fXel{?QIi%RBjSl zc8#lnQUOI6h^EnGVYg%UOwWe_WE=GZ#f!BhOf2aI8y#kQ!bM-1zOc={=CvYdGzVJg zl9=M|%Cf{6{s&wjbKg7pc&Z3rmr2rKkLF=}EAy2uW-6DtX%hEWG9tMEDKD!c`K5li zgo<{yYX-di@WbUjD6=;gc+`@mq2rjg*?>!exS&=L4is@r5CtUD(V|wC2JAr7f-oIu z3I^%e7@ejGX+=RbnLrT}9nxrRVpc#EChWI0(I*+A4NnT)sa_?O-TuCj6}stPE(^wR zCUlwm?jtai&UNEg*(BT|jIt<`7>iw3+HR|C?NYK`46SJLp%l?(E$!7taSXwqyDn$~ z#xuMByPl%s1lMyK>0rI^rTovM<3b7|k)^6r*tc%qRH6uQAl)89x~w`PrT4daM)8{u zKI8I8fNL%?5d#_YzXksJ== z{My&LyDtB~eH%jzVep%d?n9-(^kjaM!29sS1dg6h=tM!7yo}^-ggI}}wU^BjQg522 zD^Z9WFLQ~SV3|lz;wwPnx^$-q?PxOS9#h$BA~4U0_F(59Msq)+X`sQSfRwS(3{Ji_Uw2CaB=7R4CT7V1ew@ONn@)(=P2jqU)`i0P zCvf3vjPA8Z=9UJR8&_;O9M|pSmT&SD8E8(C<2Kt@t=UE(PAR?E;HEr*#$987KZi>F# zSORB&n^Dpm;x%FX1QnS;^3v5~2?WyB-Xk7my-a|PO`fL|*r=&G7A%-lOfiC>8+Ei2 zWef{c4k%MBpvd$X0Js*o7wIwz+f%e&8DsT4M6XN$dhVN3p)W!O<}R z1A@Cwp>Io(Zz13prkjIWjbO5tL9#+G z4(CcySUCHZfUYuFE0$e3U{$03V}(G)W?g>jI_OgXO+s1@?X(#o@du@31l6<|6$Ue< z5+6ue+)-=;ZiqKp2@@L3J2{jPLM`M9kh00piZp0 z8hFli0+1=C?kPORTSXxz#;%Y7cBN@(&V~q&GQoFT2f&W9mBKnmqYVKP)?BmO=H(Jl z#M`%&i1w?yrJBL5@uIT-9|J* Date: Fri, 11 Jul 2014 00:07:39 -0400 Subject: [PATCH 3/3] layout and description change --- .DS_Store | Bin 0 -> 6148 bytes README.md | 5 +- assets/main.css | 124 + main.js => assets/main.js | 44 +- assets/nope (copy).png | Bin 0 -> 13743 bytes assets/nope.png | Bin 0 -> 1327 bytes assets/outages.json | 1 + assets/rail_lines.json | 1 + redx.jpeg => assets/redx.jpeg | Bin assets/redx.png | Bin 0 -> 2243 bytes demo/.DS_Store | Bin 0 -> 6148 bytes demo/js/maps.js | 71 + demo/make_geojson.py | 21 + demo/rail-stops.html | 96 + demo/rail-stops.txt | 154 + demo/rail_stops.csv | 154 + demo/railgeo.json | 1 + demo/speech-demo.html | 98 + demo/styles/map.css | 1 + index.html | 40 +- main.css | 106 - nope (copy).png | Bin nope.png | Bin outages.json | 0 rail_lines.json | 0 redx.png | Bin stops.txt | 13489 ++++++++++++++++ ubilabs-geocomplete-7d8228f/.gitignore | 3 - ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt | 20 - ubilabs-geocomplete-7d8228f/README.md | 200 - ubilabs-geocomplete-7d8228f/build.sh | 18 - ubilabs-geocomplete-7d8228f/changelog.txt | 15 - ubilabs-geocomplete-7d8228f/examples/api.html | 49 - .../examples/bounds.html | 47 - .../examples/country_limit.html | 46 - .../examples/custom_attribute.html | 57 - .../examples/draggable.html | 75 - .../examples/form.html | 112 - .../examples/location.html | 36 - .../examples/logger.js | 4 - ubilabs-geocomplete-7d8228f/examples/map.html | 64 - .../examples/multiple_results.html | 53 - .../examples/simple.html | 58 - .../examples/styles.css | 31 - .../jquery.geocomplete.js | 500 - ubilabs-geocomplete-v1.5.1-8-g7d8228f.tar.gz | Bin 13318 -> 0 bytes 46 files changed, 14265 insertions(+), 1529 deletions(-) create mode 100644 .DS_Store mode change 100644 => 100755 README.md create mode 100755 assets/main.css rename main.js => assets/main.js (87%) mode change 100644 => 100755 create mode 100755 assets/nope (copy).png create mode 100755 assets/nope.png create mode 100755 assets/outages.json create mode 100755 assets/rail_lines.json rename redx.jpeg => assets/redx.jpeg (100%) mode change 100644 => 100755 create mode 100755 assets/redx.png create mode 100644 demo/.DS_Store create mode 100644 demo/js/maps.js create mode 100755 demo/make_geojson.py create mode 100644 demo/rail-stops.html create mode 100644 demo/rail-stops.txt create mode 100644 demo/rail_stops.csv create mode 100644 demo/railgeo.json create mode 100644 demo/speech-demo.html create mode 100644 demo/styles/map.css mode change 100644 => 100755 index.html delete mode 100644 main.css mode change 100644 => 100755 nope (copy).png mode change 100644 => 100755 nope.png mode change 100644 => 100755 outages.json mode change 100644 => 100755 rail_lines.json mode change 100644 => 100755 redx.png create mode 100755 stops.txt delete mode 100644 ubilabs-geocomplete-7d8228f/.gitignore delete mode 100644 ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt delete mode 100644 ubilabs-geocomplete-7d8228f/README.md delete mode 100755 ubilabs-geocomplete-7d8228f/build.sh delete mode 100644 ubilabs-geocomplete-7d8228f/changelog.txt delete mode 100644 ubilabs-geocomplete-7d8228f/examples/api.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/bounds.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/country_limit.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/custom_attribute.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/draggable.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/form.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/location.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/logger.js delete mode 100644 ubilabs-geocomplete-7d8228f/examples/map.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/multiple_results.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/simple.html delete mode 100644 ubilabs-geocomplete-7d8228f/examples/styles.css delete mode 100644 ubilabs-geocomplete-7d8228f/jquery.geocomplete.js delete mode 100644 ubilabs-geocomplete-v1.5.1-8-g7d8228f.tar.gz diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..bd73d1fd3eca9d244c60f02edeb943d91316eaee GIT binary patch literal 6148 zcmeHKO-lnY5Pi`e3LflH@RC2!gI?@$DfQslKcKr?MTkVGz3)HQ_mUA@+>=mInJJSu znaNDD51J1EVZHA!fCYd#RTyMUh}@H*BO5FXrN%v4?6AZmwiAVZqf2W)$DZqcLc-_u zXLQJT#tZ#hyi%9ALXQcPf1=LhIXA`(2mXoD&IkaR!_LXTTY7 z1`ff19WnEhLlpO#&VV!Ury0=x5UIk(aHv?e4mP?zD?SrSXzMa8jE0TjP>~TzsHw!7 z8tjP?YC8SV#x;gR#hQ*#W@a6m`Qz~t%Ix&VG900)=&dv042&5#uHA*s|7-qbCLj6Z z6z@3$&cHuoAj~$mn>9bm&ekuVr?WOv@2C=u8)Q&uk1hf1XdgK%!5WXUIj%7rDyoY7 RC7tLOfkKEk&cF{a@D5c-ETjMc literal 0 HcmV?d00001 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 27c3130..9b08c89 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ Wheel Chair Accessible Google Maps ================================== +http://summer-of-open-source.github.io/wheel-chair-accessible-google-maps/ http://nowheelchair.jimsmiley.us @@ -16,4 +17,6 @@ The data is out there, but wheelchair accessible data is in one location, and el Data on outages was taken from [James Tyack](http://www.tyack.net/)'s accessibility site [Unlock Philly](http://www.unlockphilly.com). -Data on wheel chair accessibility was taken from [Septa's website](http://www3.septa.org/hackathon/). \ No newline at end of file +Data on wheel chair accessibility was taken from [Septa's website](http://www3.septa.org/hackathon/). + +Voice over demo can be found at http://nowheelchair.jimsmiley.us/demo/speech-demo.html. diff --git a/assets/main.css b/assets/main.css new file mode 100755 index 0000000..a1a2a36 --- /dev/null +++ b/assets/main.css @@ -0,0 +1,124 @@ +body { + background-color: #F8F7F5; +} + +@media (min-width:900px){ + #info { + text-align: center; + padding: 1em; + margin-bottom: 0em; + width: 35%; + padding-left: 1.5em; + position: absolute; + left: 0; + margin: 0; + } + + #searchRoute { + background: rgba(255,255,255,0.8); + padding: 0.5em; + width: 50%; + position: fixed; + top: 1em; + right: 1em; + } + + #map-canvas { + margin: 0; + width: 60%; + height: 100%; + position: absolute; + right:0; + bottom: 0; + z-index: -1; + } +} + +@media (max-width:899px){ + #info { + color: #028B8F; + text-align: center; + padding: 1.5em; + top: 1.5em; + } + + #searchRoute { + padding: 0.5em; + width: 100%; + margin-top: -1em; + margin-bottom: 1em; + text-align: center; + } + + + #map-canvas { + margin: 0; + width: 100%; + height: 30em; + bottom: 0; + z-index: -1; + } +} + +#info > span { + background: rgba(0,0,0,0.8); + padding: 0.5em; + color: #fefefe !important; + font-family: "Open Sans"; +} + +input[type=text] +{ + background-color: #f2f2f2; + color: #2c2c2c; + height: 2.2em; + padding-left:10px; + width: 33%; + border: solid 1px #e0e0e0; +} + +input[type=submit] +{ + background-color: #027073; + color: #fefefe; + height: 2.5em; + font-family: "Open Sans"; + font-weight: 700; + width: 20%; + border: none; + margin: 0.5em; + text-transform:uppercase; +} +input[type=submit]:hover +{ + background-color: #028B8F; +} + +input:focus { + outline: none; +} + +#info > p { + font-family: "Open Sans"; + color: #3e3e3e; + line-height: 1.2em; + margin: 0; + padding: 1em; + padding-top: 0em; +} + +#info > p > a { + color: #028B8F; + text-decoration: none; +} + +#info > p > a:hover { + text-decoration: underline; +} + +#info > h2 { + font-family: "Open Sans"; + color: #027073; + margin-top: 0.5em; + line-height: 1.2em; +} \ No newline at end of file diff --git a/main.js b/assets/main.js old mode 100644 new mode 100755 similarity index 87% rename from main.js rename to assets/main.js index cd613e8..9d84189 --- a/main.js +++ b/assets/main.js @@ -4,6 +4,7 @@ directionsDisplay = new google.maps.DirectionsRenderer(); var outages; var railStations; +var showStations= true; function getrailStations() { @@ -83,11 +84,11 @@ MyResponse.prototype.getWheelchairRoute = function( waypoints ) { if( departStatus != StopStatus.ELEVATOR_WORKING && departStatus != null) { departureStop = step.transit.departure_stop; - lat = departureStop.location.A; - lng = departureStop.location.k; - self.addXMarker( lng, lat ); + lat = departureStop.location.lat(); + lng = departureStop.location.lng(); + self.addXMarker(lat,lng); - $('#messages').append('

    ' + departStopName + '
    ' + $('#info').append('

    ' + departStopName + '
    ' + StopStatus.toString( departStatus ) + '

    '); self.getClosestStation( lat, lng ); @@ -96,11 +97,11 @@ MyResponse.prototype.getWheelchairRoute = function( waypoints ) { if( arriveStatus != StopStatus.ELEVATOR_WORKING && arriveStatus != null) { arrivalStop = step.transit.arrival_stop; - lat = arrivalStop.location.A; - lng = arrivalStop.location.k; - self.addXMarker( lng, lat ); + lat = arrivalStop.location.lat(); + lng = arrivalStop.location.lng(); + self.addXMarker( lat,lng ); - $('#messages').append ('

    ' + arriveStopName + '
    ' + $('#info').append ('

    ' + arriveStopName + '
    ' + StopStatus.toString( arriveStatus ) + '

    '); self.getClosestStation( lat, lng ); @@ -164,9 +165,9 @@ MyResponse.prototype.getElevatorStatus = function( stopName, lineShortName ) { MyResponse.prototype.hasElevator = function( stationObj ) { if(stationObj != null) { - if( stationObj.wheelchair_boarding !== null ) { - return true; - } + if( stationObj.wheelchair_boarding != null ) { + return true; + } } return false; @@ -232,18 +233,31 @@ function loadMap() { var philadelphia = new google.maps.LatLng(39.9523400,-75.1637900); var mapOptions = { zoom: 10, - center: philadelphia + center: philadelphia, + disableDefaultUI: true }; map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); } +function stationToggle() { + console.log("toggle"); + showStations = !showStations; + + /* if(showStations) { + $("#messages").css("height", ""); + } else { + $("#messages").css("height", "1.5em"); + }*/ +} + function getDirections() { var startAddress = $('#startAddress').val(); var endAddress = $('#endAddress').val(); + //$('html, body').animate({scrollTop:$(document).height()}, 'slow'); - $("#messages").empty(); - $("#messages").append("
    Stations with Limited Access: " + "
    "); + $("#info").empty(); + $("#info").append("

    Stations with Limited Access " + "

    "); console.log( "start address: " + startAddress + " end address: " + endAddress ); @@ -273,4 +287,4 @@ function getDirections() { console.log( response ); } }); -} \ No newline at end of file +} diff --git a/assets/nope (copy).png b/assets/nope (copy).png new file mode 100755 index 0000000000000000000000000000000000000000..958d94a4e7113d34be856bed857fd07a45c6a40e GIT binary patch literal 13743 zcmZ{LbyQT}6Zq2Iuyl7yce4u!(&5rADcvHlNH+qDq_9Ybv=$$QS;*FdnhzuKxEh*jLT<|KfvgW&PbjAj$B@ z5H-`#m7m2SZ*0syCagaR_sP^`Q$2v=8^7aZt4^fmw}td{ymq#kccVA5fpe;cX7g4z7Fpo(n724kgk zT?t{^;(|frgTERvSIG2V_7_>t@LqtJtT-GPh>3BeaXPR&FgsKSB$e-&2E)%75B*gj!bA)Rle$V6Zy5b`Rp^L;8#2Tq69R$I`O90px{ zY>m&M*i&sh%2pbbC(3Ih|3HH1O+u`fRA-`;fCvm{_x;ho0FY(ZbBre`$_k)Dwz^ur z0aIaSx38VV7WNsK5`+5$8)jVo%p&$_a3XU!KF0zr!Tchs1Z9h2j2<2NAjx(iOEs5{ zNFj=jVn4g#Jte1Xr`Z6*jQsk?#IpXm^HIKA%ToQBgm_V&`F8Y2NiHga%kmNwr3GI0 zM9I^>-`a@DmEg!?NWU}i!6j8UpRXLDKbhB8_#HHf`GB#?9NC+A=j{D*myWici9Bgu z+n$%p7>_fHL1X)-^f$`Gp46At*Xl|R54Js!t76?mNg+3xz?K!xcnY?6wU=D^8PMV) z)zUUL{rQ#Tq9t^$%NUw&jK&V#}k&*aMtkZ9X^A=8BS+e~iAiTRZBly*aY zLqA7Nv+@2+@9{*m&=)8BwGtvQ zDN2F`LwTZwgL$Wb*RycS=Jz;}NwMRD9EY()=DC6FrmPTkDS?aSB5O3IxO>Y|e$s{K_@G5RoB247lBZO52l7=;d`qoRs3BCqRiooVr+tt{+g%}X53TUOj{f(BCJH~@!mg+`JQUOG1n&BeVzjF@OJ!>_ zuzWu2ew4j%qVdH$b;@~YorTu9S~ra)ChzRT7OyI|L(u-{LAEhBkN)KP z+6K4*W>u-TM4BcZWo6ufp6!hyW8{km1vh-b1vd$TC zm0y6wetGd{BJ>o}$_iddQ_oj<*nqMaab4hBauRMy-YeA?ub9r(ZbKxj^M8J2xY+9@ z+axCt-bp0NyiEGZEq+G!vWcXV?21&U(bgvRg^OPK>S{9oAG3SfQ=?=bvv&5r*#NiK z>j}o{w)j!seLvlBP%y?jZUw7vwOd_1QAJpy-EksG@5qI}F&-+L>zWXlOO9UR^kOrq z`)SZDvJo9dZhSutqim1x>C!%I;W~d@JvgI``d>_Bb|zoP`ryVVn{< zhe@p|`Goc-fA2AYw;C1KatPBbB3HIPlE&@|W|HVD z^$LU%Uy0ZDElB=B;*7ka-HWvo|Oh5(z9TU-Z=S%oeRCM>4ZINsXVJne4(vnyw=~75UJbn zL3s8|HJT>p1&a{iMElP zMzxENt6PpMcP>BXrwKKTyUnQ1_1Iq3CU!Js;7qA0#DtY|ndV{j;glegw%wD}xvXCq zsvh1(J7tcuXS5+{|7Jv2q)GP?K7u)@li(`H#;6Tfu$a(umvv!YsaRJN>gI6uDJ1VJ zB;QTS7+QaaqLwmM+8kDiSq z6~p3&X^hrVF-Tog3=Pj@<$>^TjNiE*`{-~ki^&vKsfI=+sT@d2G5>0W)g)xUcg$es ztJo*b888b)3%s+BOA@EJl0Iem-AdI-7{^1kOEzBZXL_VfJxCsm20C?4}Q5#!&? zyp*q;E<=BN$$BJsx9wsehj@IDvZn0*A4*2&cOrbF53;71ykrxkPF?9SQ*(-nr%IGb z3#8g~-wVQ@jMRjw=%ih7_TB|>3=}aZtF!6j1#`1be`DI2>q^FaX0o%18LXQRE6x!A zY0^rbdv!&iqw{z7Z7T+Pbq!Z;*FbH7-B^O`%7^-yNpMDlMdF;-KN1e&u(UpL#JPSmIWxHQSQeV1=Bne~pq7TB$!}O;y0REQ`DnZF{Xs znY+m{l~vAY+7$0da4cB%%$txiajYO-E|w!IzTJI+)u+4XF?b8m=7y=Sizq%pu^n0>)5P9up_J^$(25b^xxI0ICa%oy^DOYOq2$5X7BY_>t z{I^wdZv!9GB`r+x_43ETg3eDb6-p1&ZV_o;{SNiX6LL{;BLvEVXv6Pu5u<~DB=`Sp z3>G9ZXuhlN|E@V5gQMeoPa(j#h1`8Z38^FL#Jvt=)fP?Ff7t1nxOR@A$?ts&Rp7E{ zB~3D`Sh5ezxYAiM)^bQ- z58U=*`7}+iID)*Q_9b3B)3|);jsC_u+|^|2(o}b#rg}?_Vu;XGYU`FSOX}Kc*gYaf zdji_t9{Kohv*j(juBY?ZbxDnV92GOYe#Cm}bUU*}&P8qey?$G(9RKzo-+~-AOCm$z zy0=)K;))Th8|yP;NIL=a*pnvYY%?qN_u{iKL{aXAWch9B?+@#^Uq0sUI;)X4#PPY` zsJGBG!1?yi+_YO;Mm{Id6fZwiSI&d!OPn6p*H5*RTyH7k2?a(WvT-)^8Au|qo?E+o zt=JcvZ}8x8J{p|#e=LiU>pp5+ud43CKk*WNiS-XF)n9jfG=`1xeVOZ_@%h$7vO8aO zpy}fNa}k)4^bK#cMyqmv>On$Bai8`S$E)Hm+?Fhn7@etJ8Z7CW@CspzsSuO?Wc{6= zD6LU%!H(kNSI4-enpm!w8rE$^LWxXgu9#1=*Lqk%MTAWFU$0wRV3hjMy=@-);yJ<` z$i1QFa0-3w*kmLF-3}69llr$W&!KDyO*T6H-!lv5nI}yHgO)AweK~(+8xDVi*$ZRvneS5XXwm5bE3xQhX z8>zu8iSt3OR13d?gcivXiIK)J4Wfd5t(g1Sng66>)7kuG-*8K0-t~FpxoZ@zzQ#pu z>oe+8vyGRkcC^C71=?-Tnl@YQN8Oyi=DRk|+cb?~Ldcqw;V7>*jZ4XcFHo6ZJZ+Go zY&6XA3+6h6Vj%ydQg-sO&-3o*InZ5{`J?Zji8lK4l(D4b*Z*PWowzmQTffMlXAV{rCzfuPS6#yv49CyF z`R)*E)>G97k;HGa}Q?Oy}X_}dcuEk0cj!*zII|*Tv?cgEHezTFDiw0 zm4Fu|H?Wqg)&ol`)^ZJBR)${PFKA2lCdlVFPX?N@KBR3Rcb6&UHlvcIOItQz)Cm?# z*K3~rgs*;N=vaH@^~ZI-Ws_`2v?p5f7pKH}2H|dtxRP;MD!fWTWD_)0Gfi&OGkH=U zdcu}uCu|AK&oh7ON<*)~NTP=)K7D+N=KNe+>TRYI1uwJgy~#u@)0tf!>V00PkzGz! z7rt2A3syqJYGjqKb$yCZI3?Q9tTsS5oighhLT-kftxWh>zL3pytwYDfIK!Vcs>yv= z+;zh(wV&;h(r&b9LgF2%&gb+O+(y3zc^+A8ibgDPv~6E8w)m7|pGt2;p+)Mp-%t#> zzGUrGc%`Awd)0AtCVtWoCnZVzEa&X;Belr7ec@ik)z422^S1>@dl6ui(MXjvxQE+sW%E(VDgT(gvCrgyH&3}Si~F#vj6`rM-R2EF-Wzf61WXvDVd1~gn=2`=n% zlQV}*&j_R5H@`iyLe>g@nvyt9i<64=s;`S;9}b-CjxiI*>YQ?HiAN?U3;Z% z)}63K?ZM=T?NHco|G?J5qTLc^VevG?&?(xj0Wus$cttIM{YL8EVtwB6O$x$EO>*fy zR3TxJNeds*m}`l1q_=$A2pa7Wh2)&#oN}jsSQeHR?<8|1sN<|6hBtvSZ)tR1wmMUe zCD-ta)H(Ji_ukQYb<2d52LI(pI53hYEi#YHHcJ?m4=p4Hp) z9j93p(u@m+&g&&v9zBJ~8)hE#5oZ`tp-DbbT<6;Ah^FdA`>q2KtR`ogxp?u}bRlyGw5bZwgPMCe90w(b&iyoMGnaVewz zEQwu#Dq?eCV$%cL^O2W=Y+ijGFL4Ii6Ywc9fqKHy8vT)4(N9Bt54B7;eskEvH_L9y z|Av@B8PEA(n+^vl47#b3ig4HH@sXM!8Y-#wE2-MtVr0z_HMN4tWo>#o)@q7+iqO}T zneMjPYpWVS41eLsr&$3<0z4ibeiR$_TVxBcS0Wl5Ma9eRsKqCkYRK*oaYHPH^qZ~ zeO~+;DWUU`KCphmm1XI{N0=bHWz(QjJKLh zS+qnw+LcVOZ3_?nHN~lClA@GVAw}{Z`7<_l=u{%unLMrWJg=Lp;M8ZR!}hiqr4+yZ zmcYm)#RsJFAN+lm+jBe-OMM$yob;g3%QhdbPRVd2FOes;Z}r(wCnn4zG<5MOjV968{O!fhjR=6q{Ni$u%ycop_pA8CsqHy%MsnV#*a)NP_BIo4wJC0X4z!;B^ zMI$+S!aP;IEczNvbQTtf#&nGuHm#4k{mG^$Y=^7(&8dY=Ytnk^7A7fmk4;z~+;&U~ zH_Q>=X4SR`GvC0B@qsjgMQ3WI z=R?fz_+#>7wcA*rNEe&<4nf>_r?(iy!D#>5GNI4?EvBI#{s()4s?@}?jH|DshUbnZ zdSAT)bZi29kS-Pb$ke_x1z~~}U__xS$TO#B>&4rDb9AHfjp$RBa45xvkmwp zz6%lpKzE=-2K#6T%;z5AjT0=DlSpMMG1}DCf2GW=kfR2SB+X=zZX`YNlGZm>b{TxqFC_EF`QG0i?YxVxPBf{NU3&4RR#%lr3ZF#PCG>`xbAGN?`+* z@hf4v7H|eMNsEmDk6zk4FYXnB0|K?i4$p>Sq;PX{noDz=$~PYBN|FjJBk-i!wJAPy z(AJXmQFXe>G45gK=(6wWLuiB(UxO3m07p6SB% z4b?qCFWVJ$va7b|b%6CdAPpCQJ3nj>%5ICpqs^U!kxvp--6Tkx=&Xu=`~>slIT~*L z#_Igemv#%9o!&&z|8N`G0r%o`2I$n1V!93L4_8haMm=qPS*&s}uF$~t`@^B}>XHRk zN~UhIQ}3J?ok=MOs%B8=*gv5Ash7!XxL`aE-eN3QsfFEy*;l6^UfsdWe>i`mB(8mJ z{~SI^y6KUlaX@-0Z~WK%mYVSUI0Fz{KldaSa9TBSJ5)8{=qU>RTkvm-@H>3MWl2_A z3C`f6`$EnId;7W2Qc^*;S@2S+VCHcZjtewHM&3}+wrM(5yX_&pzL=Mi*om%o`+}mU z1}f3Y6#50=oE$SxH^#-q;S;1loL^6a%TgkfQ#lT*KpBL10L?5x>-c}DRy-5JEX2d4 zQj3u)N(-#6#tL|B^1QT$&$BP5wq}TK;|MhxYLZgPQ4lo^8c!vaAmD;gW#zi`D_S>+ zvlmE4sYX^%12Gb33PT@tG$_M4UB0SL#Dl3}X&AZ8R{m;&_g3GVST8 z-~sS*KeUIm?O>z!K9{{O(QiA8z%W~_1I%r9lCKmr=H0~HPpZ5;&ZJKX$@D(!92amI zV8?fq>dV~|lQt1{57_FE1KPyCfn4CKADE&M!=zh^2@buXW3rcW zM{toA7g*jA(_lPlw(4dU0Clo?3L`S~r+Y75WgN-!SB+r^`cw4(TJ zsbkwjC!v=x-Bab*j~sxEq)!EBCEI0*h4reUQ_Qhi=oBKdWB>Bm746;9F|(!9*}hQaq3AA81Z!mBCRY)hAaU? zwSQM(-!M4m|9fg2^#eshkiLc|%TjTc8i4koTXbA{71#uDISVyOv7#a_Cp-1w)0|K^ zlf-?_2OW-qi@@{%b!?3`fqw(u&L{0#q3CEE2IkToMTP0?`C-pH$pkMU$csm&?dK)f zg9k)CtP67tyGS#)m1ZJOU!w7^rMp+Wa6AB+_0(ZQ5Ty-ZJBq-}kz0;tY`{8;)xt7^ zhfXtUqdataki$s?_UuT{%Q8Vu6M_t)rEK7(B6b3u5>WF>PeAK@JMHDZQY0YO#dTHHMM3M+OdbS}^{rK4;vF0Y&b!)961;R>vza;|G&jW}ld3cD) z^o!z_qZX(COU((@h*mDz?QMwSkMyjY2=#!^vt(jK) z?OCDiAA%m^y@zjVu7B#}f<3blsc%fqMzC3?WV+ok&u z1w!s%|D!T2y7QsKo~5aU3)YIBor!sF=uTcW3eeH#vNZS~9qA{UelYL^FJ(P#vu;dD zvW<6Eb^r(ZhKMjMR0M6PgA8I2u{8HeEA|s7gV|8l4~>kq*qhh~l>Z7QRHfAu-s55z z6P;H+mb7j=)C^?)Fu>#1#vF>VxMXb?-+>gSBRzILU(;7hJRG!3DA1YEm87N>X1w9- zZ?VVe7k@-x&L}#5V2>4Tg9;%mEY@yogyd?NNVbD$g^A)hE;De(@dZ(c5$h;ih2h)4 zo;Pnbsw%;K7`>2!O7I5K%;yWH6(9t~fpKB)K`A2se4KA(@3e=L3N5XPBjP0Wgi+AC z60Z!K`|f>1LI>Xdf&?4T57=tPF62MAOBg}ao#$fE>2?uw5dJgOMiSK;yI>~-OMz>p zlFCvG6RlbjF9u+2y)r=0}#BzH#gQrz^lZkzXVv>W`@mmy*v#z<8!z2SZQyXy<44~`vJK9?$KaXr&u zyjI7XTe89}R~WBB=k0sVN0onHjXyYI^(RMevMw)vSH|pSd8Yr0a&r2cA#KrDf`qvo zWE^sZOzo>6xCc{lX2Gs4@K1&<_KCRSkK*Y2{sy5cd0++l2Ob+YA!U}= zMrK>K*c8o%Yq9_nQvI0lo`*@_B+*=UnzLCqIFg0{j2Cj2C#-bmbmX%64E3!)FHZk? zAbNg4AhLrU6G~iv#Vf!+$E`$wxM*o2^Chm$-IbN1fOs<3mS311CmWipYb2Wo zviN9CW;MJ~lezRMk1^{Iiumpu-Hn-$XG1+)lMI9g1H;|fU4ZpWWE^qI2gb;M>RlG3 z>eFB_pVf-^SshSYBLKCJrs%yj0MGyg5$+at&R>E(-xd zK}&~vtZ1rcVVEzik`P`QW`FYh3E0c2Vy1Sm1 z8kMAYRTrA@JDI-OvU`Q8guucLuasFLg*pA%|;~rP52K4gLCxi&$=cW8XqfbH~T8g?TC$|%T z%1r_l8NUpYCVh=8lvQ-$)Ud+xnOU69f};cc$>9-+0j@oMON-D4lVYBV`iiwG!>a0> z9nH3AC3tpod!sEVk}TKiso^X8xJN!3&^cRaMRvm{i?`9r-T)gs;f5!w>Ss^3*tuyM ze0$hY!-fs=y57k6JV*nefgesUzwj>54!L~lzmnC@rc7FFsIG}~;jhrq=CDNjk!qAd z5kl%yf7=&ePYuiMq3sDGL%kR%X}6=0YAcI$9JIzCty!7&=s?6G4=T#R?(m1X$MK65 zMj|3-7aOMtf6y?-aE!tRGb50H_hC&z7O;#dQx@6A!&qNlCM^dKV#JABtK)>dvN37} zh_{G9NhNjT%kW*s-vBW=33BAm1?DfbM1`Z}NnYrBx;oofw3j?O$!+}v@evk^ z&gT;uFR&q?oo^5t{?FRpN4M5+RHO0db{(#I``xMnwYCG?D`*#K&W)Qm1do=MLpFZC z8k-JHc`=;R0xY?)5IiieliZ-|0bGQX?R)0o4mN5pg@g=+_k<2f($pT}_`eMM6%?JS zHeiT=rr4jG5H+>7RhFjV9@W1#cec4Wl>cklgzT)>o%uae@DlyEwT5%nZ(!9H=MHpb z2V~9B^731QeLpiC8~;w&AAcwf{ZP;#Sp7B*M_}N>K(GI0@3LgK z*K1VGoV`5g*fIE*R8^Vh@<4ju0R-({H6W8W z#6znqoY+C)aO*!}Uda5+4Z^v2x)@j8ZtRIm>%be>ujS$^1c($!naECc|C<*BRB(kx zvDj-YO9khyhyl6Mjr0a~ZT6&d;)-#GL97@zUAeok{|cTQr&j+V2tezERL?&x^T-T_ zuLozW`3h7tg3Wi{^?+`FOO&#GFera+VaFi92TbXK@wUr1*D%Ws8ug$#pXmg{b?Rn? zk_FBWc3~>Ge#06WMGRR+DW00GzTI_(00ljjcPxMsTT&TWe+4e?)t-yO2l2YjC1bt;^pPs3o-jMTC7H@uT4v(P7|eTW}1{smKN`%58ib zI-yR{BLNg@n|TY4ZrRWUCE-u_yuC!4n7<0)&>~;&$;3KY@PZ+7nrRnCZ>U$dOD_%Ac z@@s8yB*jqp$gi5>>*uib>12v8xc5X5m zVD=KE2BH01N>eJqM8+ATi7MqbBS98k-Yy@xgwV+o!(H4Eb5*;IbtB0;H(Fs{B4l1* zP0i52yi={jqf%E7TXVb#(3}%iE zy2W)mqpJhS`p5F7!NEcC39O(9Y8uBsyJgw`6{+8rFF+3~!515Z>R?@jUphY`_Kc(l zls|5PIG_XF;hjETrTFCxq5dAAT<}8bL)REaNICPrAqzYgUJ9WD)BdwMlnp&=FY9S! zPU#PJGJPJ%#a3^IIc=SBMh$KW-V}#Xs)cxeawyo$x2X8c?-p59#R@V(P6Q8&mDkq{ zUBC13Fd`YB@xDzxuoma8v4`^B$vC^W^T__AG7SD$btaonzW0(}?s|Vj>2=7;AS_Cc zSuoLD*Plo*`RTPv&cD3&{8c*)C7Z${H4&kD@jXtd>6R9a3E2%R?Y1u; zCBBa)<{5q8B&oqO{z7aj&ifIjHia$N#nx*0@~;*piHod&*loZn{VzJI$y?f)o^H8| zH<$rNocXI>ggZJ-rE`GU|7e#jI;jl$DWTfIx}r_^cIMRDj}A3{ElR2$C}^ zDt4C1qJ{458w{Z+wk6;DOWwx$AlLF^WR+P0E$)lEV^CiTiotomz6_ox{%vhP_gTXd z(>ex`^hj0Nr!m`rqs~KM#aceUO;8qo(0M|)_=TrzE# z+XvbDv}CgmD6&Lbet8=gPFER8`b*RC0<`nAp6x!aHd(t(Uz1y&=N$`G6aG)G5)uU$24DcfQ?YrO0Ix&8ve01zO7+Cw${|GDuo?HTP)tjf%D~Tg2cUh zFK4Ztx^O%~(zRD@=@*nC-! zVG0ye|3+bq~_Bt4ypHlR+~n?I{77dmQ&sSi~BglNkuwwU;)VtvC6+U~w#C(TEd zF{64EeIx*kmHzKEVIQNVDD+Y_(CKUE^G?aIgzvWdk0xSs9~;iY`Cg z+C`BlqNoTr&Ro5O<+y-9#ZwMX77-yUJUr*~rp# z78LE`n(GeYnKLk)S^QOF?KD&sZfLUJuT7 z)nDGelQ>FUBhK7kY@C3O5OYbJ@@xKkTZ&9G?qbrIAEM1iR2v$eStVoU0{EP z8Kv2+lEL}!sfNLPIK?C!0|-Q{T&8&J=)E*J_dyr;G})P7OJYjCX&}%Hmd$S z?7ky0^PYDlD^w}<^AYLJuW%AK&+{ZJ60{O)>d8gq!PoD!%SDc#+H`uNUmrih0LzTu zd&~C=Pz=p6fr`?M!+(RB?f8FI%YB(cDY+$`f(}tFm<<0Wt@Jzl?xV%{2w%QG{fd># z#gG}ED%C=2v1q5!J*Kxi=Vb}#k#*I{+*M%- zhw;=dT*!_+vSN7XCFcMqnMB$1t(>i~{M^e`&PJzHX+Kn-9H_!e?X(I-Jd=Ij3;FgF zLdXWd)#fvJaG+<}3cTUpAv3z*Tkoazh5;#5GxEL4|*&^>Ld{5%1!OW4t2jE zE9l#1?H&d{kN}8fyyo9-}NHA$>tflYK%NsVM!|`yq zK+?SE&Qk`KNK(k7c=+ZV-}pz%P>dk@zBfD%9{Z+}&kJui;rb{V?9Q^{V~- z>l(^}WCr{|<2q)HFNtQw8h3`n@kLmc^qW?b2I9!TI8?D zj*RE}s0y=N`L^SROz7Zi7Qg=5*VSH==5D-apWIy0?<-75{=fyJ-(vhjvN>?qoF&w2 zBDD|QQMZOhA4adFg1V|`hK%pAUAQElKQR-&8eGr?S}bj%qwvx-aK7KI$cr@qeY8W> zrZfJhyLRnY8fLs4n=3SN>P#tHiFXV#GVj^Ty0B?$ZMVrxijzE|ekC(dGsSs~$>`K( zn9!#j2$|~T$J+W>H>D;evlK%%8y&-!|MRui&<)h4Y?j=9uj76iQVO3^kxw;V;mnrH^jKQ8myMo##)ygaEPMD3pi{+U4 z-*wvWX1a~SL~OJD&RX83U8E^J5KgFa>@kij}szRD=%Hhn02A@6|eQG?b#!jD8I)be`94G^aB|z8j5ZfHN zopaZ+m--N(Xg;(T1Wl7a4 zibGVlq?m(V=f}pF;mvhkelpE_Fxw#5Xg>IZNm$`V#s{$QoVN_Fya_adi}OUbL|=7T<=6pD)Nb86)A*ckxZCYi^KJS z+8Lg!Of|^sO^Q~zQ#g{FgWo-=Gb(J(b=&u55eSzdv(N>)o3jQZ!mgAqRitD^V5BoO zn_t-4yqJ>j?6VE!(QibQIR}3sLVEZCYdQOI*ot|L0Ee8pLkG?&MP=@6ANMS749vIP zsbqhd=J=N%NemoK;tqtu0-YTKUF4noU4R=%TvSY4SX5S6T-H=nMqW%*UQ|jL_#-N6 zcU<%J|3P@}o{DJ0Dxz0^yT zh7S=vHAR=P3*l%420~jQjG8A$NT;L{Eu9#%DbmK~(!*K1)@;A?%{k{g3qHPc*4}6D z|K5A;wf<{G6c7h7Ai%xAoxnn%6=(#;f!~22fqvjC;IP0+{T9hFSCkXjVqiP4rNFv| zfNj7&fs0vzMpFPnlK8cLO61+WcI(cF=(92bKoShk^CLuq5`D`n`Ft0IPum zRl0Wx?99A_2HYSw%ol?sN9X!Wmd-xN$*1Rv4 z$ty1`W`b*8CZ;HN79sw+8XIzA7)37l59;boq{nUX=CP-l<2ss^>&NjA9GUI>Ag zfM0drl|%ka0qzBG~ME0 zpk9!Y{KkMEjCy6Pe9p^jSsbmvN5C_tX@P@dQqFzZZJw9M#{VGjb&eIk4(u?h+Z^;! z|8aj{o|nZYtc?^nmY0DSjOq>t2a6uJn$RES(zeG+(;)+SOab{K2~aPqTtY5#gES^` zS^sCnhBieMU-b^)4WoY8!TWVwoC!~6Voh-H@wUjS739-Fxa@GyQxK$27cRw`eF0P) zTqgxxgo1ns_#&WCdkTPT(Eqb>5E(Ys8~6q82fndm<^k#8F7rANYu@VR*)rIPB$FHs zKxRGet>(Eea+8_LC@|e~u@ZRRKtM9y6L`E@>~{Y%{7Z&^u8NhZ45?xou)5xeV0Ln0 zK!P_pc)Qw8>YUdDS6SSiZf!Hl0}f(W5=dYk@V9AtA_QsX>NW1JTVOoW#u>n0W{|a- zeU(KR0CQD;L^KVE%obNP z9(yM_Ah4(`GOF|3M8MX8ch%LsYEur+>ch0N%{Xqf61Bc$khkg_X`!`KU{}@3g65-L zHZO3{TLxn`atgS;Nd&{y%3uMaLq1HeNaJm1?v64m}Xy`( z!c`kdvIXnOW002ovPDHLkV1ngASL6Ty literal 0 HcmV?d00001 diff --git a/assets/outages.json b/assets/outages.json new file mode 100755 index 0000000..ea56f55 --- /dev/null +++ b/assets/outages.json @@ -0,0 +1 @@ +[{"_id":{"stationId":"21532","outageStart":"2014-05-31 16:27:16 UTC"},"duration":41,"isActive":true,"outageEnd":null,"stop_name":"30th St Station","line_code":"MFL"},{"_id":{"stationId":"20967","outageStart":"2014-05-31 15:10:51 UTC"},"duration":118,"isActive":true,"outageEnd":null,"stop_name":"Oregon Station","line_code":"BSS"}] \ No newline at end of file diff --git a/assets/rail_lines.json b/assets/rail_lines.json new file mode 100755 index 0000000..3274262 --- /dev/null +++ b/assets/rail_lines.json @@ -0,0 +1 @@ +{"line":"ALL","stations":[{"_id":"21531","stop_name":"8th St & Market St","stop_lat":"39.951129","stop_lon":"-75.153506","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"21532","stop_name":"30th St Station","stop_lat":"39.95477","stop_lon":"-75.183264","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null,"elevatorOutage":{"line":"Market Frankford Line","station":"30th Street","elevator":"Street to Mezzanine","message":"No access to/from station","message_html":"
    • No access to/from station
    ","alternate_url":"http://www.septa.org/service/accessible_septa/alt_service_mfl.html"},"outageTracker":{"_id":{"stationId":"21532","outageStart":"2014-05-31 17:13:35 UTC"},"duration":0,"isActive":true,"outageEnd":null,"stop_name":"30th St Station","line_code":"MFL"}},{"_id":"30519","stop_name":"Ardmore Junction Station","stop_lat":"39.996262","stop_lon":"-75.303695","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"PATCO240","stop_name":"Lindenwold","stop_lat":"39.83389","stop_lon":"-75.00056","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO241","stop_name":"Ashland (Voorhees)","stop_lat":"39.85856","stop_lon":"-75.009199","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO242","stop_name":"Woodcrest/Cherry Hill","stop_lat":"39.8695145128","stop_lon":"-75.0106787682","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO243","stop_name":"Haddonfield","stop_lat":"39.8970285235","stop_lon":"-75.0366640091","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO244","stop_name":"Westmont (Haddon Twp)","stop_lat":"39.907117","stop_lon":"-75.046775","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO245","stop_name":"Collingswood","stop_lat":"39.913561","stop_lon":"-75.064561","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO246","stop_name":"Ferry Ave (Camden)","stop_lat":"39.922852992","stop_lon":"-75.091906786","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO247","stop_name":"Broadway (Camden)","stop_lat":"39.94319792","stop_lon":"-75.1202845573","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO248","stop_name":"City Hall (Camden)","stop_lat":"39.9450733307","stop_lon":"-75.1211535931","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO249","stop_name":"8th & Market St","stop_lat":"39.951181","stop_lon":"-75.1532","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO250","stop_name":"9-10th & Locust St","stop_lat":"39.9472365695","stop_lon":"-75.1568698883","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO251","stop_name":"12-13th & Locust St","stop_lat":"39.947731","stop_lon":"-75.160797","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"PATCO252","stop_name":"15-16th & Locust St","stop_lat":"39.948417","stop_lon":"-75.166208","location_type":null,"parent_station":null,"zone_id":null,"wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":null,"PATCO":"1"},{"_id":"60","stop_name":"Allegheny Station","stop_lat":"39.996444","stop_lon":"-75.113345","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"61","stop_name":"Frankford Transportation Center","stop_lat":"40.023427","stop_lon":"-75.077197","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"82","stop_name":"Olney Transportation Center","stop_lat":"40.039066","stop_lon":"-75.144737","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"140","stop_name":"Erie Station","stop_lat":"40.009172","stop_lon":"-75.151226","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"142","stop_name":"Allegheny Station","stop_lat":"40.001536","stop_lon":"-75.152887","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"152","stop_name":"A T and T Station","stop_lat":"39.905379","stop_lon":"-75.173709","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"217","stop_name":"Margaret & Orthodox Station","stop_lat":"40.016734","stop_lon":"-75.083955","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"353","stop_name":"Girard Station","stop_lat":"39.968841","stop_lon":"-75.13611","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"416","stop_name":"69th St Transportation Center MFL East","stop_lat":"39.96232","stop_lon":"-75.258555","location_type":null,"parent_station":"31034","zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":"1","PATCO":null},{"_id":"428","stop_name":"2nd St Station ","stop_lat":"39.949822","stop_lon":"-75.14371","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"797","stop_name":"Somerset Station","stop_lat":"39.99138","stop_lon":"-75.122596","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"838","stop_name":"Erie Torresdale Station","stop_lat":"40.00586","stop_lon":"-75.096133","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"1272","stop_name":"Logan Station","stop_lat":"40.030671","stop_lon":"-75.14658","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1273","stop_name":"Wyoming Station","stop_lat":"40.024569","stop_lon":"-75.147892","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1274","stop_name":"Hunting Park Station","stop_lat":"40.016897","stop_lon":"-75.14953","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1276","stop_name":"Susquehanna Dauphin Station","stop_lat":"39.98704","stop_lon":"-75.156097","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1277","stop_name":"Cecil B. Moore Station","stop_lat":"39.978591","stop_lon":"-75.157843","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1278","stop_name":"Fairmount Station","stop_lat":"39.966959","stop_lon":"-75.160391","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1279","stop_name":"Spring Garden Station","stop_lat":"39.962338","stop_lon":"-75.161388","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1280","stop_name":"Race Vine Station","stop_lat":"39.957039","stop_lon":"-75.162601","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1281","stop_name":"City Hall Station","stop_lat":"39.952473","stop_lon":"-75.164106","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1282","stop_name":"Walnut Locust Station","stop_lat":"39.948716","stop_lon":"-75.164498","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1283","stop_name":"Lombard South Station","stop_lat":"39.944095","stop_lon":"-75.165424","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1284","stop_name":"Ellsworth Federal Station","stop_lat":"39.936191","stop_lon":"-75.167141","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1285","stop_name":"Tasker Morris Station","stop_lat":"39.929786","stop_lon":"-75.168475","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1286","stop_name":"Snyder Station","stop_lat":"39.924309","stop_lon":"-75.169617","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"1392","stop_name":"15th St Station","stop_lat":"39.952502","stop_lon":"-75.165298","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"1892","stop_name":"Bridgeport Station","stop_lat":"40.104964","stop_lon":"-75.348141","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":"0","MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1895","stop_name":"Gulph Mills Station","stop_lat":"40.070838","stop_lon":"-75.342325","location_type":null,"parent_station":"31031","zone_id":"2","wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1900","stop_name":"Stadium Station ","stop_lat":"40.032681","stop_lon":"-75.340776","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1902","stop_name":"Roberts Rd Station ","stop_lat":"40.021383","stop_lon":"-75.33027","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1908","stop_name":"Beechwood Brookline Station","stop_lat":"39.986521","stop_lon":"-75.291495","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1917","stop_name":"Parkview Station","stop_lat":"39.968982","stop_lon":"-75.274804","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1918","stop_name":"Township Line Rd Station","stop_lat":"39.974791","stop_lon":"-75.281572","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1919","stop_name":"Penfield Station Manoa Rd","stop_lat":"39.981015","stop_lon":"-75.283992","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1921","stop_name":"Wynnewood Rd Station","stop_lat":"39.993382","stop_lon":"-75.298229","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1923","stop_name":"Ardmore Av Station","stop_lat":"39.999918","stop_lon":"-75.309467","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1924","stop_name":"Haverford Station ","stop_lat":"40.009821","stop_lon":"-75.315158","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1925","stop_name":"Bryn Mawr Station ","stop_lat":"40.018075","stop_lon":"-75.323419","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1927","stop_name":"Garrett Hill Station","stop_lat":"40.027957","stop_lon":"-75.336396","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1929","stop_name":"Villanova Station ","stop_lat":"40.034049","stop_lon":"-75.344037","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1930","stop_name":"Radnor Station","stop_lat":"40.042061","stop_lon":"-75.353617","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1931","stop_name":"County Line Station","stop_lat":"40.050108","stop_lon":"-75.347376","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1932","stop_name":"Matsonford Station","stop_lat":"40.058215","stop_lon":"-75.339455","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1934","stop_name":"Hughes Park Station","stop_lat":"40.081392","stop_lon":"-75.34902","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":null,"MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"1935","stop_name":"DeKalb St Station","stop_lat":"40.098736","stop_lon":"-75.352065","location_type":null,"parent_station":null,"zone_id":"2","wheelchair_boarding":"0","MFL":null,"BSS":null,"NHSL":"1","PATCO":null},{"_id":"2439","stop_name":"North Philadelphia","stop_lat":"39.9939","stop_lon":"-75.154582","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"2440","stop_name":"Chinatown Station","stop_lat":"39.955251","stop_lon":"-75.152794","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"2446","stop_name":"Millbourne Station","stop_lat":"39.964365","stop_lon":"-75.252314","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2447","stop_name":"63rd St Station","stop_lat":"39.962741","stop_lon":"-75.246743","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2448","stop_name":"60th St Station","stop_lat":"39.961991","stop_lon":"-75.240757","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2449","stop_name":"56th St Station","stop_lat":"39.961007","stop_lon":"-75.232847","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2450","stop_name":"52nd St Station","stop_lat":"39.960012","stop_lon":"-75.224889","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2451","stop_name":"46th St Station","stop_lat":"39.958646","stop_lon":"-75.213922","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2452","stop_name":"40th St Station","stop_lat":"39.957161","stop_lon":"-75.202034","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2453","stop_name":"34th St Station","stop_lat":"39.955848","stop_lon":"-75.191504","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2455","stop_name":"13th St Station","stop_lat":"39.952021","stop_lon":"-75.161462","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2456","stop_name":"11th St Station","stop_lat":"39.951648","stop_lon":"-75.158346","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2457","stop_name":"8th St Station","stop_lat":"39.951066","stop_lon":"-75.153519","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2458","stop_name":"5th St Station","stop_lat":"39.950485","stop_lon":"-75.148892","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2459","stop_name":"Spring Garden Station","stop_lat":"39.960399","stop_lon":"-75.140408","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2460","stop_name":"Berks Station","stop_lat":"39.978679","stop_lon":"-75.133542","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2461","stop_name":"York Dauphin Station","stop_lat":"39.986191","stop_lon":"-75.132011","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2462","stop_name":"Huntingdon Station","stop_lat":"39.988759","stop_lon":"-75.127463","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2463","stop_name":"Tioga Station","stop_lat":"40.000238","stop_lon":"-75.106392","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"2464","stop_name":"Church Station","stop_lat":"40.01091","stop_lon":"-75.088628","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"20845","stop_name":"69th St Transportation Center MFL West","stop_lat":"39.962428","stop_lon":"-75.258555","location_type":null,"parent_station":"31034","zone_id":"2","wheelchair_boarding":"1","MFL":"1","BSS":null,"NHSL":null,"PATCO":null},{"_id":"20965","stop_name":"Fern Rock Transportation Center","stop_lat":"40.04185","stop_lon":"-75.136745","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"20966","stop_name":"Girard Station","stop_lat":"39.971401","stop_lon":"-75.159417","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":null,"MFL":null,"BSS":"1","NHSL":null,"PATCO":null},{"_id":"20967","stop_name":"Oregon Station","stop_lat":"39.916753","stop_lon":"-75.171285","location_type":null,"parent_station":null,"zone_id":"1","wheelchair_boarding":"1","MFL":null,"BSS":"1","NHSL":null,"PATCO":null,"elevatorOutage":{"line":"Broad Street Subway / Broad Ridge Spur","station":"Oregon","elevator":"Street Level","message":"No access to/from station","message_html":"
    • No access to/from station
    ","alternate_url":"http://www.septa.org/service/accessible_septa/alt_service_bsl.html"},"outageTracker":{"_id":{"stationId":"20967","outageStart":"2014-05-31 17:13:37 UTC"},"duration":0,"isActive":true,"outageEnd":null,"stop_name":"Oregon Station","line_code":"BSS"}},{"_id":"30520","stop_name":"Norristown Transportation Center","stop_lat":"40.113468","stop_lon":"-75.345161","location_type":null,"parent_station":"31038","zone_id":"2","wheelchair_boarding":"1","MFL":null,"BSS":null,"NHSL":"1","PATCO":null}]} \ No newline at end of file diff --git a/redx.jpeg b/assets/redx.jpeg old mode 100644 new mode 100755 similarity index 100% rename from redx.jpeg rename to assets/redx.jpeg diff --git a/assets/redx.png b/assets/redx.png new file mode 100755 index 0000000000000000000000000000000000000000..d9f9c1a582869d45da72838532a90eee60dca6f8 GIT binary patch literal 2243 zcmV;!2t4T&=82vA8x zK~zY`eOFs-6xSL4&YaoVS+Do%-LGP#%#>4XJ>cke$MH`?$~QL z;Yh#!Gov~4o&Waz=K$3)5Uc3lM-cgAYy6dumUR^0X>T~YC#|lY|IHVTff(@dJ-q;c zKctlv?=Eiq^vJRfYp^N&+g}Bs&i|hHi*^=(UjT{T_J+O7d+z*JYtuq-2wb>w38SMI zcRV*)e(QFi(O44O#`4(PRJXCad&R-dmX3rXQRE7FoV#@9*ySrXw*QP{+Q*{)rAO;+@=Yp!CFrJyv@f!tC-oNhQ zeVv(>I3x)!fO;w;5pU??u$E+V`g^b25CbuQ9<_lV1K|yA$pfoatlpfekHV2)~=pKeUz*$Ex555ZMrm^D#$?PeN@(rt1B3vC0I6yS0l^puA>gqXB-KV&Ku+4r?>!u8$OPK!6RHRX z!9pPj&w~)6;^uimBnd{LfYI~kU>~;IjB7E>17zYj#wsBi7z1_gaE!&Yfl6M zfGnf2sWli6M`W%j;HnDYc@^ub77E5@g>#fO4Wq-u5TSrJR=V{P9WvPUN2oIvPo*|k zIW17uG(^&ANR&bVl??!ZuY~|)8G;Z9N&!MHlF7hxVpb7`8FPc;w57 ze|M5T($&#(xNA{Qq_(a}t+hf_)oj^SYSzKk@&9B;u3g^xVxE1nH?6{QEbJ`I{$H98 zxUVS$04SANN~M7SJT^C`wYoZoAM0u!NCM!V*T@)i0Q?{59E%5HK%H8LXR`)&#jvq= zQO}{S_N8$mNpPwJGAG7D%<3v>h^p%efRGZzxqqL-=){$E{Te@2n@2M-9*6-7Rj}ih zg@HKP*xk~3uy=89f)WDLG-uuFOBKMcRZ%4lQGMpF3n4fbwX{P5wms{l&%1ange}WkItKf?mL&)wFp9<5`1uz3bzD==eiy3UglF6EJP*waT4j|6Hm$R# zFCI3$kzH|uBNjlnL{#j^Ie4uOTkdUXd$X_Sju;3*DVLiC@~y1Z^XPH@TyS0iw=6U+ zXbH(oJh9TwoqSQ_V*|0-qtC{riRMGg`tFQNvJCCUjY>--1fX;dXA?=PY{qwgZHD`q z?R%r@1tlCtER(^di)ZnV$t&x2>NrK;j7xWQ#2bhDy803X1cmF@XJc6hCaNrqi+eN6vfHOx$dpi z)%TWZ;>N@T@=hsR;#R%l0(zl{nL;W-YPTH0jWDBUM>A(j){K}pjp zAimrDofA?a4oQM#Ss0s`fJvE_^U7P9#qCTeb}CK6xS7qODVdzxi)-ta5ICh0Jj(*5 za<^o8&hD&stJ-?z4gcKad9VxvW8>p+DA#YY;!FM0{FCn$@LA5%*A^wmwk-=&`TT5X zzGRrTg$eERKhuqh_>>F2G9C@R-8!QUTW= z4miWnaQHE1c_GVjDsCrp*;pb3hUZ{Z&mRB#l(B;zv*E5G_Ax49NnEMxm1-6cLg2VA zZcb05M4ah7H=f$5i4XTADIDg_u+WgnN7l>Mg?csg?GOU8ZW?pIB|@Ot2Cfxv?H!)d zUwBnOqX6)+0~5OWUP3Y-NQGjZwA%Px#xOoL1rd}AlaBsWzs8Rbrc_v-I|J&Uu|G1! z$U18NEfA2Oi^(CBOcPEA{1BmnGB)!p{)1OU5YWX literal 0 HcmV?d00001 diff --git a/demo/.DS_Store b/demo/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0OpenStreetMap contributors, CC-BY-SA, Imagery © Mapbox', + maxZoom: 18 + }).addTo(map); + + var marker = L.marker([39.9524384, -75.1636757]).addTo(map); + + marker.bindPopup("wheelchairs cannot
    navigate transfers here").openPopup(); + + String.prototype.splitCSV = function(sep) { + for (var foo = this.split(sep = sep || ","), x = foo.length - 1, tl; x >= 0; x--) { + if (foo[x].replace(/"\s+$/, '"').charAt(foo[x].length - 1) == '"') { + if ((tl = foo[x].replace(/^\s+"/, '"')).length > 1 && tl.charAt(0) == '"') { + foo[x] = foo[x].replace(/^\s*"|"\s*$/g, '').replace(/""/g, '"'); + } else if (x) { + foo.splice(x - 1, 2, [foo[x - 1], foo[x]].join(sep)); + } else foo = foo.shift().split(sep).concat(foo); + } else foo[x].replace(/""/g, '"'); + } return foo; + }; + + +var url = "http://localhost:8888/wheel-chair-accessible-google-maps/demo/rail-stops.txt" +var txtFile = new XMLHttpRequest(); +txtFile.open("GET", url, true); +txtFile.onreadystatechange = function() +{ + if (txtFile.readyState === 4) { // document is ready to parse. + if (txtFile.status === 200) { // file is found + allText = txtFile.responseText; + //lines is an array + // console.log(allText) + + lines = txtFile.responseText.split("\n"); + + $.each( lines, function( index, line ){ + var elements = line.splitCSV(); + var stopID = elements[0] + var stopName = elements[1] + var stopDesc = elements[2] + var stopLong = elements [3] + var stopLat = elements[4] + var zone = elements[5] + var point = [stopLong, stopLat] + // console.log(point); + var marker = L.marker([stopLong, stopLat]).addTo(map); + // marker.bindPopup(stopName).openPopup(); + var popup = L.popup(); + + function onMarkerClick(e) { + alert("You clicked the map at " + stopName); + } + + marker.on('click', onMarkerClick); + }); + + } + } + } + txtFile.send(null); + + // function onMapClick(e) { + // popup + // .setLatLng(e.latlng) + // .setContent("You clicked the map at " + stopName) + // .openOn(map); + // } + + // map.on('click', onMapClick); \ No newline at end of file diff --git a/demo/make_geojson.py b/demo/make_geojson.py new file mode 100755 index 0000000..40bb9fe --- /dev/null +++ b/demo/make_geojson.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +import csv +import geojson +from geojson import FeatureCollection, Feature, Point + +inf = csv.reader(open('rail_stops.csv', 'rb')) +my_feats = [] # list of features +for ln in inf: + print(ln) + props = { 'stop': ln[1], 'full name': ln[2] } + + # Point((lon, lat)) + pt = Point((float(ln[4]), float(ln[3]))) + feat = Feature(geometry=pt, id=ln[0], properties=props) + my_feats.append(feat) + +coll = FeatureCollection(my_feats) +outf = open('railgeo.json', 'wb') +outf.write(geojson.dumps(coll, sort_keys=True)) +outf.close() diff --git a/demo/rail-stops.html b/demo/rail-stops.html new file mode 100644 index 0000000..e9d9cc8 --- /dev/null +++ b/demo/rail-stops.html @@ -0,0 +1,96 @@ + + + rail stops + + + + + + + + + + + +
    + + + + + + + diff --git a/demo/rail-stops.txt b/demo/rail-stops.txt new file mode 100644 index 0000000..b29ef81 --- /dev/null +++ b/demo/rail-stops.txt @@ -0,0 +1,154 @@ +90001,Cynwyd,Cynwyd Line,40.0066667,-75.2316667,2 +90002,Bala,Cynwyd Line,40.0011111,-75.2277778,2 +90003,Wynnefield Avenue,Cynwyd Line,39.99,-75.2255556,1 +90004,30th Street Station,All Regional Rail Lines,39.9566667,-75.1816667,C +90005,Suburban Station,All Regional Rail Lines,39.9538889,-75.1677778,C +90006,Market East,All Regional Rail Lines,39.9525,-75.1580556,C +90007,Temple University,All Regional Rail Lines,39.9813889,-75.1494444,C +90008,North Broad,Multiple Lines,39.9922222,-75.1538889,1 +90009,Wayne Junction,Multiple Lines,40.0222222,-75.16,1 +90201,Newark,Wilmington Newark Line,39.6705556,-75.7527778,4 +90202,Churchman's Crossing,Wilmington Newark Line,39.695,-75.6725,4 +90203,Wilmington,Wilmington Newark Line,39.7372222,-75.5511111,4 +90204,Claymont,Wilmington Newark Line,39.7977778,-75.4522222,4 +90205,Marcus Hook,Wilmington Newark Line,39.8216667,-75.4194444,3 +90206,Highland Avenue,Wilmington Newark Line,39.8336111,-75.3933333,3 +90207,Chester,Wilmington Newark Line,39.8497222,-75.36,3 +90208,Eddystone,Wilmington Newark Line,39.8572222,-75.3422222,3 +90209,Crum Lynne,Wilmington Newark Line,39.8719444,-75.3311111,3 +90210,Ridley Park,Wilmington Newark Line,39.8805556,-75.3222222,3 +90211,Prospect Park - Moore,Wilmington Newark Line,39.8883333,-75.3088889,2 +90212,Norwood,Wilmington Newark Line,39.8916667,-75.3016667,2 +90213,Glenolden,Wilmington Newark Line,39.8963889,-75.29,2 +90214,Folcroft,Wilmington Newark Line,39.9005556,-75.2797222,2 +90215,Sharon Hill,Wilmington Newark Line,39.9044444,-75.2708333,2 +90216,Curtis Park,Wilmington Newark Line,39.9080556,-75.265,2 +90217,Darby,Wilmington Newark Line,39.9130556,-75.2544444,2 +90218,Allegheny,Manayunk Norristown Line,40.0036111,-75.1647222,1 +90219,East Falls,Manayunk Norristown Line,40.0113889,-75.1919444,1 +90220,Wissahickon,Manayunk Norristown Line,40.0166667,-75.2102778,2 +90221,Manayunk,Manayunk Norristown Line,40.0269444,-75.225,2 +90222,Ivy Ridge,Manayunk Norristown Line,40.0341667,-75.2355556,2 +90223,Miquon,Manayunk Norristown Line,40.0586111,-75.2663889,2 +90224,Spring Mill,Manayunk Norristown Line,40.0741667,-75.2861111,3 +90225,Conshohocken,Manayunk Norristown Line,40.0722222,-75.3086111,3 +90226,Norristown T.C.,Manayunk Norristown Line,40.1127778,-75.3441667,3 +90227,Main Street,Manayunk Norristown Line,40.1172222,-75.3486111,3 +90228,Norristown,Manayunk Norristown Line,40.1202778,-75.3475,3 +90301,Elwyn,Media Elwyn Line,39.9075,-75.4116667,3 +90302,Media,Media Elwyn Line,39.9144444,-75.395,3 +90303,Moylan-Rose Valley,Media Elwyn Line,39.9061111,-75.3886111,3 +90304,Wallingford,Media Elwyn Line,39.9036111,-75.3719444,3 +90305,Swarthmore,Media Elwyn Line,39.9022222,-75.3508333,3 +90306,Morton-Rutledge,Media Elwyn Line,39.9077778,-75.3288889,2 +90307,Secane,Media Elwyn Line,39.9158333,-75.3097222,2 +90308,Primos,Media Elwyn Line,39.9216667,-75.2983333,2 +90309,Clifton-Aldan,Media Elwyn Line,39.9266667,-75.2902778,2 +90310,Gladstone,Media Elwyn Line,39.9327778,-75.2822222,2 +90311,Lansdowne,Media Elwyn Line,39.9375,-75.2708333,2 +90312,Fernwood-Yeadon,Media Elwyn Line,39.9397222,-75.2558333,2 +90313,Angora,Media Elwyn Line,39.9447222,-75.2386111,1 +90314,49th Street,Media Elwyn Line,39.9436111,-75.2166667,1 +90315,Noble,West Trenton Line,40.1044444,-75.1241667,3 +90316,Rydal,West Trenton Line,40.1075,-75.1105556,3 +90317,Meadowbrook,West Trenton Line,40.1113889,-75.0925,3 +90318,Bethayres,West Trenton Line,40.1166667,-75.0683333,3 +90319,Philmont,West Trenton Line,40.1219444,-75.0436111,3 +90320,Forest Hills,West Trenton Line,40.1277778,-75.0205556,3 +90321,Somerton,West Trenton Line,40.1305556,-75.0119444,3 +90322,Trevose,West Trenton Line,40.1402778,-74.9825,3 +90323,Neshaminy,West Trenton Line,40.1469444,-74.9616667,3 +90324,Langhorne,West Trenton Line,40.1608333,-74.9125,4 +90325,Woodbourne,West Trenton Line,40.1925,-74.8891667,4 +90326,Yardley,West Trenton Line,40.2352778,-74.8305556,4 +90327,West Trenton,West Trenton Line,40.2577778,-74.8152778,NJ +90401,Airport Terminal E F,Airport Line,39.8794444,-75.2397222,4 +90402,Airport Terminal C D,Airport Line,39.8780556,-75.24,4 +90403,Airport Terminal B,Airport Line,39.8772222,-75.2413889,4 +90404,Airport Terminal A,Airport Line,39.8761111,-75.2452778,4 +90405,Eastwick,Airport Line,39.8927778,-75.2438889,1 +90406,University City,Multiple Lines,39.9480556,-75.1902778,C +90407,Fern Rock T C,Multiple Lines,40.0405556,-75.1347222,1 +90408,Melrose Park,Multiple Lines,40.0594444,-75.1291667,2 +90409,Elkins Park,Multiple Lines,40.0713889,-75.1277778,2 +90410,Jenkintown Wyncote,Multiple Lines,40.0927778,-75.1375,3 +90411,Glenside,Multiple Lines,40.1013889,-75.1536111,3 +90412,Ardsley,Warminster Line,40.1141667,-75.1530556,3 +90413,Roslyn,Warminster Line,40.1208333,-75.1341667,3 +90414,Crestmont,Warminster Line,40.1333333,-75.1186111,3 +90415,Willow Grove,Warminster Line,40.1438889,-75.1141667,3 +90416,Hatboro,Warminster Line,40.1761111,-75.1025,4 +90417,Warminster,Warminster Line,40.1952778,-75.0891667,4 +90501,Thorndale,Paoli Thorndale Line,39.9927778,-75.7636111,4 +90502,Downingtown,Paoli Thorndale Line,40.0022222,-75.7102778,4 +90503,Whitford,Paoli Thorndale Line,40.0147222,-75.6380556,4 +90504,Exton,Paoli Thorndale Line,40.0191667,-75.6227778,4 +90505,Malvern,Paoli Thorndale Line,40.0363889,-75.5155556,4 +90506,Paoli,Paoli Thorndale Line,40.0430556,-75.4827778,4 +90507,Daylesford,Paoli Thorndale Line,40.0430556,-75.4605556,3 +90508,Berwyn,Paoli Thorndale Line,40.0480556,-75.4422222,3 +90509,Devon,Paoli Thorndale Line,40.0472222,-75.4227778,3 +90510,Strafford,Paoli Thorndale Line,40.0494444,-75.4030556,3 +90511,Wayne,Paoli Thorndale Line,40.0458333,-75.3866667,3 +90512,St. Davids,Paoli Thorndale Line,40.0438889,-75.3725,3 +90513,Radnor,Paoli Thorndale Line,40.0447222,-75.3588889,3 +90514,Villanova,Paoli Thorndale Line,40.0383333,-75.3416667,3 +90515,Rosemont,Paoli Thorndale Line,40.0277778,-75.3266667,3 +90516,Bryn Mawr,Paoli Thorndale Line,40.0219444,-75.3163889,3 +90517,Haverford,Paoli Thorndale Line,40.0138889,-75.2997222,2 +90518,Ardmore,Paoli Thorndale Line,40.0083333,-75.2902778,2 +90519,Wynnewood,Paoli Thorndale Line,40.0027778,-75.2725,2 +90520,Narberth,Paoli Thorndale Line,40.0047222,-75.2613889,2 +90521,Merion,Paoli Thorndale Line,39.9986111,-75.2513889,2 +90522,Overbrook,Paoli Thorndale Line,39.9894444,-75.2494444,2 +90523,North Hills,Lansdale Doylestown Line,40.1119444,-75.1694444,3 +90524,Oreland,Lansdale Doylestown Line,40.1183333,-75.1838889,3 +90525,Fort Washington,Lansdale Doylestown Line,40.1358333,-75.2122222,3 +90526,Ambler,Lansdale Doylestown Line,40.1536111,-75.2247222,3 +90527,Penllyn,Lansdale Doylestown Line,40.17,-75.2441667,3 +90528,Gwynedd Valley,Lansdale Doylestown Line,40.1847222,-75.2569444,3 +90529,North Wales,Lansdale Doylestown Line,40.2141667,-75.2772222,4 +90530,Pennbrook,Lansdale Doylestown Line,40.2302778,-75.2816667,4 +90531,Lansdale,Lansdale Doylestown Line,40.2427778,-75.285,4 +90532,Fortuna,Lansdale Doylestown Line,40.2594444,-75.2661111,4 +90533,Colmar,Lansdale Doylestown Line,40.2683333,-75.2544444,4 +90534,Link Belt,Lansdale Doylestown Line,40.2738889,-75.2466667,4 +90535,Chalfont,Lansdale Doylestown Line,40.2877778,-75.2097222,4 +90536,New Britain,Lansdale Doylestown Line,40.2975,-75.1797222,4 +90537,Delaware Valley College,Lansdale Doylestown Line,40.2972222,-75.1616667,4 +90538,Doylestown,Lansdale Doylestown Line,40.3063889,-75.1302778,4 +90701,Trenton,Trenton Line,40.2177778,-74.755,NJ +90702,Levittown-Tullytown,Trenton Line,40.1402778,-74.8169444,4 +90703,Bristol,Trenton Line,40.1047222,-74.8547222,4 +90704,Croydon,Trenton Line,40.0936111,-74.9066667,3 +90705,Eddington,Trenton Line,40.0830556,-74.9336111,3 +90706,Cornwells Heights,Trenton Line,40.0716667,-74.9522222,3 +90707,Torresdale,Trenton Line,40.0544444,-74.9844444,3 +90708,Holmesburg Jct,Trenton Line,40.0327778,-75.0236111,2 +90709,Tacony,Trenton Line,40.0233333,-75.0388889,2 +90710,Bridesburg,Trenton Line,40.0105556,-75.0697222,2 +90711,North Philadelphia Amtrak,Trenton Line,39.9972222,-75.155,1 +90712,Wister,Chestnut Hill East Line,40.0361111,-75.1611111,1 +90713,Germantown,Chestnut Hill East Line,40.0375,-75.1716667,1 +90714,Washington Lane,Chestnut Hill East Line,40.0508333,-75.1713889,2 +90715,Stenton,Chestnut Hill East Line,40.0605556,-75.1786111,2 +90716,Sedgwick,Chestnut Hill East Line,40.0627778,-75.1852778,2 +90717,Mount Airy,Chestnut Hill East Line,40.0652778,-75.1908333,2 +90718,Wyndmoor,Chestnut Hill East Line,40.0733333,-75.1966667,2 +90719,Gravers,Chestnut Hill East Line,40.0775,-75.2016667,2 +90720,Chestnut Hill East,Chestnut Hill East Line,40.0811111,-75.2072222,2 +90801,Chestnut Hill West,Chestnut Hill West Line,40.0763889,-75.2083333,2 +90802,Highland,Chestnut Hill West Line,40.0705556,-75.2111111,2 +90803,St. Martins,Chestnut Hill West Line,40.0658333,-75.2044444,2 +90804,Allen Lane,Chestnut Hill West Line,40.0575,-75.1947222,2 +90805,Carpenter,Chestnut Hill West Line,40.0511111,-75.1913889,2 +90806,Upsal,Chestnut Hill West Line,40.0425,-75.19,2 +90807,Tulpehocken,Chestnut Hill West Line,40.0352778,-75.1869444,2 +90808,Chelten Avenue,Chestnut Hill West Line,40.03,-75.1808333,1 +90809,Queen Lane,Chestnut Hill West Line,40.0233333,-75.1780556,1 +90810,North Philadelphia,Chestnut Hill West Line,39.9977778,-75.1563889,1 +90811,Olney,Fox Chase Line,40.0333333,-75.1227778,1 +90812,Lawndale,Fox Chase Line,40.0513889,-75.1030556,2 +90813,Cheltenham,Fox Chase Line,40.0580556,-75.0927778,2 +90814,Ryers,Fox Chase Line,40.0641667,-75.0863889,2 +90815,Fox Chase,Fox Chase Line,40.0763889,-75.0833333,2 \ No newline at end of file diff --git a/demo/rail_stops.csv b/demo/rail_stops.csv new file mode 100644 index 0000000..e5d3f7f --- /dev/null +++ b/demo/rail_stops.csv @@ -0,0 +1,154 @@ +90001,Cynwyd,Cynwyd Line,40.0066667,-75.2316667,2 +90002,Bala,Cynwyd Line,40.0011111,-75.2277778,2 +90003,Wynnefield Avenue,Cynwyd Line,39.99,-75.2255556,1 +90004,30th Street Station,All Regional Rail Lines,39.9566667,-75.1816667,C +90005,Suburban Station,All Regional Rail Lines,39.9538889,-75.1677778,C +90006,Market East,All Regional Rail Lines,39.9525,-75.1580556,C +90007,Temple University,All Regional Rail Lines,39.9813889,-75.1494444,C +90008,North Broad,Multiple Lines,39.9922222,-75.1538889,1 +90009,Wayne Junction,Multiple Lines,40.0222222,-75.16,1 +90201,Newark,Wilmington Newark Line,39.6705556,-75.7527778,4 +90202,Churchman's Crossing,Wilmington Newark Line,39.695,-75.6725,4 +90203,Wilmington,Wilmington Newark Line,39.7372222,-75.5511111,4 +90204,Claymont,Wilmington Newark Line,39.7977778,-75.4522222,4 +90205,Marcus Hook,Wilmington Newark Line,39.8216667,-75.4194444,3 +90206,Highland Avenue,Wilmington Newark Line,39.8336111,-75.3933333,3 +90207,Chester,Wilmington Newark Line,39.8497222,-75.36,3 +90208,Eddystone,Wilmington Newark Line,39.8572222,-75.3422222,3 +90209,Crum Lynne,Wilmington Newark Line,39.8719444,-75.3311111,3 +90210,Ridley Park,Wilmington Newark Line,39.8805556,-75.3222222,3 +90211,Prospect Park - Moore,Wilmington Newark Line,39.8883333,-75.3088889,2 +90212,Norwood,Wilmington Newark Line,39.8916667,-75.3016667,2 +90213,Glenolden,Wilmington Newark Line,39.8963889,-75.29,2 +90214,Folcroft,Wilmington Newark Line,39.9005556,-75.2797222,2 +90215,Sharon Hill,Wilmington Newark Line,39.9044444,-75.2708333,2 +90216,Curtis Park,Wilmington Newark Line,39.9080556,-75.265,2 +90217,Darby,Wilmington Newark Line,39.9130556,-75.2544444,2 +90218,Allegheny,Manayunk Norristown Line,40.0036111,-75.1647222,1 +90219,East Falls,Manayunk Norristown Line,40.0113889,-75.1919444,1 +90220,Wissahickon,Manayunk Norristown Line,40.0166667,-75.2102778,2 +90221,Manayunk,Manayunk Norristown Line,40.0269444,-75.225,2 +90222,Ivy Ridge,Manayunk Norristown Line,40.0341667,-75.2355556,2 +90223,Miquon,Manayunk Norristown Line,40.0586111,-75.2663889,2 +90224,Spring Mill,Manayunk Norristown Line,40.0741667,-75.2861111,3 +90225,Conshohocken,Manayunk Norristown Line,40.0722222,-75.3086111,3 +90226,Norristown T.C.,Manayunk Norristown Line,40.1127778,-75.3441667,3 +90227,Main Street,Manayunk Norristown Line,40.1172222,-75.3486111,3 +90228,Norristown,Manayunk Norristown Line,40.1202778,-75.3475,3 +90301,Elwyn,Media Elwyn Line,39.9075,-75.4116667,3 +90302,Media,Media Elwyn Line,39.9144444,-75.395,3 +90303,Moylan-Rose Valley,Media Elwyn Line,39.9061111,-75.3886111,3 +90304,Wallingford,Media Elwyn Line,39.9036111,-75.3719444,3 +90305,Swarthmore,Media Elwyn Line,39.9022222,-75.3508333,3 +90306,Morton-Rutledge,Media Elwyn Line,39.9077778,-75.3288889,2 +90307,Secane,Media Elwyn Line,39.9158333,-75.3097222,2 +90308,Primos,Media Elwyn Line,39.9216667,-75.2983333,2 +90309,Clifton-Aldan,Media Elwyn Line,39.9266667,-75.2902778,2 +90310,Gladstone,Media Elwyn Line,39.9327778,-75.2822222,2 +90311,Lansdowne,Media Elwyn Line,39.9375,-75.2708333,2 +90312,Fernwood-Yeadon,Media Elwyn Line,39.9397222,-75.2558333,2 +90313,Angora,Media Elwyn Line,39.9447222,-75.2386111,1 +90314,49th Street,Media Elwyn Line,39.9436111,-75.2166667,1 +90315,Noble,West Trenton Line,40.1044444,-75.1241667,3 +90316,Rydal,West Trenton Line,40.1075,-75.1105556,3 +90317,Meadowbrook,West Trenton Line,40.1113889,-75.0925,3 +90318,Bethayres,West Trenton Line,40.1166667,-75.0683333,3 +90319,Philmont,West Trenton Line,40.1219444,-75.0436111,3 +90320,Forest Hills,West Trenton Line,40.1277778,-75.0205556,3 +90321,Somerton,West Trenton Line,40.1305556,-75.0119444,3 +90322,Trevose,West Trenton Line,40.1402778,-74.9825,3 +90323,Neshaminy,West Trenton Line,40.1469444,-74.9616667,3 +90324,Langhorne,West Trenton Line,40.1608333,-74.9125,4 +90325,Woodbourne,West Trenton Line,40.1925,-74.8891667,4 +90326,Yardley,West Trenton Line,40.2352778,-74.8305556,4 +90327,West Trenton,West Trenton Line,40.2577778,-74.8152778,NJ +90401,Airport Terminal E F,Airport Line,39.8794444,-75.2397222,4 +90402,Airport Terminal C D,Airport Line,39.8780556,-75.24,4 +90403,Airport Terminal B,Airport Line,39.8772222,-75.2413889,4 +90404,Airport Terminal A,Airport Line,39.8761111,-75.2452778,4 +90405,Eastwick,Airport Line,39.8927778,-75.2438889,1 +90406,University City,Multiple Lines,39.9480556,-75.1902778,C +90407,Fern Rock T C,Multiple Lines,40.0405556,-75.1347222,1 +90408,Melrose Park,Multiple Lines,40.0594444,-75.1291667,2 +90409,Elkins Park,Multiple Lines,40.0713889,-75.1277778,2 +90410,Jenkintown Wyncote,Multiple Lines,40.0927778,-75.1375,3 +90411,Glenside,Multiple Lines,40.1013889,-75.1536111,3 +90412,Ardsley,Warminster Line,40.1141667,-75.1530556,3 +90413,Roslyn,Warminster Line,40.1208333,-75.1341667,3 +90414,Crestmont,Warminster Line,40.1333333,-75.1186111,3 +90415,Willow Grove,Warminster Line,40.1438889,-75.1141667,3 +90416,Hatboro,Warminster Line,40.1761111,-75.1025,4 +90417,Warminster,Warminster Line,40.1952778,-75.0891667,4 +90501,Thorndale,Paoli Thorndale Line,39.9927778,-75.7636111,4 +90502,Downingtown,Paoli Thorndale Line,40.0022222,-75.7102778,4 +90503,Whitford,Paoli Thorndale Line,40.0147222,-75.6380556,4 +90504,Exton,Paoli Thorndale Line,40.0191667,-75.6227778,4 +90505,Malvern,Paoli Thorndale Line,40.0363889,-75.5155556,4 +90506,Paoli,Paoli Thorndale Line,40.0430556,-75.4827778,4 +90507,Daylesford,Paoli Thorndale Line,40.0430556,-75.4605556,3 +90508,Berwyn,Paoli Thorndale Line,40.0480556,-75.4422222,3 +90509,Devon,Paoli Thorndale Line,40.0472222,-75.4227778,3 +90510,Strafford,Paoli Thorndale Line,40.0494444,-75.4030556,3 +90511,Wayne,Paoli Thorndale Line,40.0458333,-75.3866667,3 +90512,St. Davids,Paoli Thorndale Line,40.0438889,-75.3725,3 +90513,Radnor,Paoli Thorndale Line,40.0447222,-75.3588889,3 +90514,Villanova,Paoli Thorndale Line,40.0383333,-75.3416667,3 +90515,Rosemont,Paoli Thorndale Line,40.0277778,-75.3266667,3 +90516,Bryn Mawr,Paoli Thorndale Line,40.0219444,-75.3163889,3 +90517,Haverford,Paoli Thorndale Line,40.0138889,-75.2997222,2 +90518,Ardmore,Paoli Thorndale Line,40.0083333,-75.2902778,2 +90519,Wynnewood,Paoli Thorndale Line,40.0027778,-75.2725,2 +90520,Narberth,Paoli Thorndale Line,40.0047222,-75.2613889,2 +90521,Merion,Paoli Thorndale Line,39.9986111,-75.2513889,2 +90522,Overbrook,Paoli Thorndale Line,39.9894444,-75.2494444,2 +90523,North Hills,Lansdale Doylestown Line,40.1119444,-75.1694444,3 +90524,Oreland,Lansdale Doylestown Line,40.1183333,-75.1838889,3 +90525,Fort Washington,Lansdale Doylestown Line,40.1358333,-75.2122222,3 +90526,Ambler,Lansdale Doylestown Line,40.1536111,-75.2247222,3 +90527,Penllyn,Lansdale Doylestown Line,40.17,-75.2441667,3 +90528,Gwynedd Valley,Lansdale Doylestown Line,40.1847222,-75.2569444,3 +90529,North Wales,Lansdale Doylestown Line,40.2141667,-75.2772222,4 +90530,Pennbrook,Lansdale Doylestown Line,40.2302778,-75.2816667,4 +90531,Lansdale,Lansdale Doylestown Line,40.2427778,-75.285,4 +90532,Fortuna,Lansdale Doylestown Line,40.2594444,-75.2661111,4 +90533,Colmar,Lansdale Doylestown Line,40.2683333,-75.2544444,4 +90534,Link Belt,Lansdale Doylestown Line,40.2738889,-75.2466667,4 +90535,Chalfont,Lansdale Doylestown Line,40.2877778,-75.2097222,4 +90536,New Britain,Lansdale Doylestown Line,40.2975,-75.1797222,4 +90537,Delaware Valley College,Lansdale Doylestown Line,40.2972222,-75.1616667,4 +90538,Doylestown,Lansdale Doylestown Line,40.3063889,-75.1302778,4 +90701,Trenton,Trenton Line,40.2177778,-74.755,NJ +90702,Levittown-Tullytown,Trenton Line,40.1402778,-74.8169444,4 +90703,Bristol,Trenton Line,40.1047222,-74.8547222,4 +90704,Croydon,Trenton Line,40.0936111,-74.9066667,3 +90705,Eddington,Trenton Line,40.0830556,-74.9336111,3 +90706,Cornwells Heights,Trenton Line,40.0716667,-74.9522222,3 +90707,Torresdale,Trenton Line,40.0544444,-74.9844444,3 +90708,Holmesburg Jct,Trenton Line,40.0327778,-75.0236111,2 +90709,Tacony,Trenton Line,40.0233333,-75.0388889,2 +90710,Bridesburg,Trenton Line,40.0105556,-75.0697222,2 +90711,North Philadelphia Amtrak,Trenton Line,39.9972222,-75.155,1 +90712,Wister,Chestnut Hill East Line,40.0361111,-75.1611111,1 +90713,Germantown,Chestnut Hill East Line,40.0375,-75.1716667,1 +90714,Washington Lane,Chestnut Hill East Line,40.0508333,-75.1713889,2 +90715,Stenton,Chestnut Hill East Line,40.0605556,-75.1786111,2 +90716,Sedgwick,Chestnut Hill East Line,40.0627778,-75.1852778,2 +90717,Mount Airy,Chestnut Hill East Line,40.0652778,-75.1908333,2 +90718,Wyndmoor,Chestnut Hill East Line,40.0733333,-75.1966667,2 +90719,Gravers,Chestnut Hill East Line,40.0775,-75.2016667,2 +90720,Chestnut Hill East,Chestnut Hill East Line,40.0811111,-75.2072222,2 +90801,Chestnut Hill West,Chestnut Hill West Line,40.0763889,-75.2083333,2 +90802,Highland,Chestnut Hill West Line,40.0705556,-75.2111111,2 +90803,St. Martins,Chestnut Hill West Line,40.0658333,-75.2044444,2 +90804,Allen Lane,Chestnut Hill West Line,40.0575,-75.1947222,2 +90805,Carpenter,Chestnut Hill West Line,40.0511111,-75.1913889,2 +90806,Upsal,Chestnut Hill West Line,40.0425,-75.19,2 +90807,Tulpehocken,Chestnut Hill West Line,40.0352778,-75.1869444,2 +90808,Chelten Avenue,Chestnut Hill West Line,40.03,-75.1808333,1 +90809,Queen Lane,Chestnut Hill West Line,40.0233333,-75.1780556,1 +90810,North Philadelphia,Chestnut Hill West Line,39.9977778,-75.1563889,1 +90811,Olney,Fox Chase Line,40.0333333,-75.1227778,1 +90812,Lawndale,Fox Chase Line,40.0513889,-75.1030556,2 +90813,Cheltenham,Fox Chase Line,40.0580556,-75.0927778,2 +90814,Ryers,Fox Chase Line,40.0641667,-75.0863889,2 +90815,Fox Chase,Fox Chase Line,40.0763889,-75.0833333,2 diff --git a/demo/railgeo.json b/demo/railgeo.json new file mode 100644 index 0000000..ee27afe --- /dev/null +++ b/demo/railgeo.json @@ -0,0 +1 @@ +{"features": [{"geometry": {"coordinates": [-75.2316667, 40.0066667], "type": "Point"}, "id": "90001", "properties": {"full name": "Cynwyd Line", "stop": "Cynwyd"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2277778, 40.0011111], "type": "Point"}, "id": "90002", "properties": {"full name": "Cynwyd Line", "stop": "Bala"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2255556, 39.99], "type": "Point"}, "id": "90003", "properties": {"full name": "Cynwyd Line", "stop": "Wynnefield Avenue"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1816667, 39.9566667], "type": "Point"}, "id": "90004", "properties": {"full name": "All Regional Rail Lines", "stop": "30th Street Station"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1677778, 39.9538889], "type": "Point"}, "id": "90005", "properties": {"full name": "All Regional Rail Lines", "stop": "Suburban Station"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1580556, 39.9525], "type": "Point"}, "id": "90006", "properties": {"full name": "All Regional Rail Lines", "stop": "Market East"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1494444, 39.9813889], "type": "Point"}, "id": "90007", "properties": {"full name": "All Regional Rail Lines", "stop": "Temple University"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1538889, 39.9922222], "type": "Point"}, "id": "90008", "properties": {"full name": "Multiple Lines", "stop": "North Broad"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.16, 40.0222222], "type": "Point"}, "id": "90009", "properties": {"full name": "Multiple Lines", "stop": "Wayne Junction"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.7527778, 39.6705556], "type": "Point"}, "id": "90201", "properties": {"full name": "Wilmington Newark Line", "stop": "Newark"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.6725, 39.695], "type": "Point"}, "id": "90202", "properties": {"full name": "Wilmington Newark Line", "stop": "Churchman's Crossing"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.5511111, 39.7372222], "type": "Point"}, "id": "90203", "properties": {"full name": "Wilmington Newark Line", "stop": "Wilmington"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4522222, 39.7977778], "type": "Point"}, "id": "90204", "properties": {"full name": "Wilmington Newark Line", "stop": "Claymont"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4194444, 39.8216667], "type": "Point"}, "id": "90205", "properties": {"full name": "Wilmington Newark Line", "stop": "Marcus Hook"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3933333, 39.8336111], "type": "Point"}, "id": "90206", "properties": {"full name": "Wilmington Newark Line", "stop": "Highland Avenue"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.36, 39.8497222], "type": "Point"}, "id": "90207", "properties": {"full name": "Wilmington Newark Line", "stop": "Chester"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3422222, 39.8572222], "type": "Point"}, "id": "90208", "properties": {"full name": "Wilmington Newark Line", "stop": "Eddystone"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3311111, 39.8719444], "type": "Point"}, "id": "90209", "properties": {"full name": "Wilmington Newark Line", "stop": "Crum Lynne"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3222222, 39.8805556], "type": "Point"}, "id": "90210", "properties": {"full name": "Wilmington Newark Line", "stop": "Ridley Park"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3088889, 39.8883333], "type": "Point"}, "id": "90211", "properties": {"full name": "Wilmington Newark Line", "stop": "Prospect Park - Moore"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3016667, 39.8916667], "type": "Point"}, "id": "90212", "properties": {"full name": "Wilmington Newark Line", "stop": "Norwood"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.29, 39.8963889], "type": "Point"}, "id": "90213", "properties": {"full name": "Wilmington Newark Line", "stop": "Glenolden"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2797222, 39.9005556], "type": "Point"}, "id": "90214", "properties": {"full name": "Wilmington Newark Line", "stop": "Folcroft"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2708333, 39.9044444], "type": "Point"}, "id": "90215", "properties": {"full name": "Wilmington Newark Line", "stop": "Sharon Hill"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.265, 39.9080556], "type": "Point"}, "id": "90216", "properties": {"full name": "Wilmington Newark Line", "stop": "Curtis Park"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2544444, 39.9130556], "type": "Point"}, "id": "90217", "properties": {"full name": "Wilmington Newark Line", "stop": "Darby"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1647222, 40.0036111], "type": "Point"}, "id": "90218", "properties": {"full name": "Manayunk Norristown Line", "stop": "Allegheny"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1919444, 40.0113889], "type": "Point"}, "id": "90219", "properties": {"full name": "Manayunk Norristown Line", "stop": "East Falls"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2102778, 40.0166667], "type": "Point"}, "id": "90220", "properties": {"full name": "Manayunk Norristown Line", "stop": "Wissahickon"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.225, 40.0269444], "type": "Point"}, "id": "90221", "properties": {"full name": "Manayunk Norristown Line", "stop": "Manayunk"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2355556, 40.0341667], "type": "Point"}, "id": "90222", "properties": {"full name": "Manayunk Norristown Line", "stop": "Ivy Ridge"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2663889, 40.0586111], "type": "Point"}, "id": "90223", "properties": {"full name": "Manayunk Norristown Line", "stop": "Miquon"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2861111, 40.0741667], "type": "Point"}, "id": "90224", "properties": {"full name": "Manayunk Norristown Line", "stop": "Spring Mill"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3086111, 40.0722222], "type": "Point"}, "id": "90225", "properties": {"full name": "Manayunk Norristown Line", "stop": "Conshohocken"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3441667, 40.1127778], "type": "Point"}, "id": "90226", "properties": {"full name": "Manayunk Norristown Line", "stop": "Norristown T.C."}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3486111, 40.1172222], "type": "Point"}, "id": "90227", "properties": {"full name": "Manayunk Norristown Line", "stop": "Main Street"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3475, 40.1202778], "type": "Point"}, "id": "90228", "properties": {"full name": "Manayunk Norristown Line", "stop": "Norristown"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4116667, 39.9075], "type": "Point"}, "id": "90301", "properties": {"full name": "Media Elwyn Line", "stop": "Elwyn"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.395, 39.9144444], "type": "Point"}, "id": "90302", "properties": {"full name": "Media Elwyn Line", "stop": "Media"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3886111, 39.9061111], "type": "Point"}, "id": "90303", "properties": {"full name": "Media Elwyn Line", "stop": "Moylan-Rose Valley"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3719444, 39.9036111], "type": "Point"}, "id": "90304", "properties": {"full name": "Media Elwyn Line", "stop": "Wallingford"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3508333, 39.9022222], "type": "Point"}, "id": "90305", "properties": {"full name": "Media Elwyn Line", "stop": "Swarthmore"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3288889, 39.9077778], "type": "Point"}, "id": "90306", "properties": {"full name": "Media Elwyn Line", "stop": "Morton-Rutledge"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3097222, 39.9158333], "type": "Point"}, "id": "90307", "properties": {"full name": "Media Elwyn Line", "stop": "Secane"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2983333, 39.9216667], "type": "Point"}, "id": "90308", "properties": {"full name": "Media Elwyn Line", "stop": "Primos"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2902778, 39.9266667], "type": "Point"}, "id": "90309", "properties": {"full name": "Media Elwyn Line", "stop": "Clifton-Aldan"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2822222, 39.9327778], "type": "Point"}, "id": "90310", "properties": {"full name": "Media Elwyn Line", "stop": "Gladstone"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2708333, 39.9375], "type": "Point"}, "id": "90311", "properties": {"full name": "Media Elwyn Line", "stop": "Lansdowne"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2558333, 39.9397222], "type": "Point"}, "id": "90312", "properties": {"full name": "Media Elwyn Line", "stop": "Fernwood-Yeadon"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2386111, 39.9447222], "type": "Point"}, "id": "90313", "properties": {"full name": "Media Elwyn Line", "stop": "Angora"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2166667, 39.9436111], "type": "Point"}, "id": "90314", "properties": {"full name": "Media Elwyn Line", "stop": "49th Street"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1241667, 40.1044444], "type": "Point"}, "id": "90315", "properties": {"full name": "West Trenton Line", "stop": "Noble"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1105556, 40.1075], "type": "Point"}, "id": "90316", "properties": {"full name": "West Trenton Line", "stop": "Rydal"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0925, 40.1113889], "type": "Point"}, "id": "90317", "properties": {"full name": "West Trenton Line", "stop": "Meadowbrook"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0683333, 40.1166667], "type": "Point"}, "id": "90318", "properties": {"full name": "West Trenton Line", "stop": "Bethayres"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0436111, 40.1219444], "type": "Point"}, "id": "90319", "properties": {"full name": "West Trenton Line", "stop": "Philmont"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0205556, 40.1277778], "type": "Point"}, "id": "90320", "properties": {"full name": "West Trenton Line", "stop": "Forest Hills"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0119444, 40.1305556], "type": "Point"}, "id": "90321", "properties": {"full name": "West Trenton Line", "stop": "Somerton"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9825, 40.1402778], "type": "Point"}, "id": "90322", "properties": {"full name": "West Trenton Line", "stop": "Trevose"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9616667, 40.1469444], "type": "Point"}, "id": "90323", "properties": {"full name": "West Trenton Line", "stop": "Neshaminy"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9125, 40.1608333], "type": "Point"}, "id": "90324", "properties": {"full name": "West Trenton Line", "stop": "Langhorne"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.8891667, 40.1925], "type": "Point"}, "id": "90325", "properties": {"full name": "West Trenton Line", "stop": "Woodbourne"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.8305556, 40.2352778], "type": "Point"}, "id": "90326", "properties": {"full name": "West Trenton Line", "stop": "Yardley"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.8152778, 40.2577778], "type": "Point"}, "id": "90327", "properties": {"full name": "West Trenton Line", "stop": "West Trenton"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2397222, 39.8794444], "type": "Point"}, "id": "90401", "properties": {"full name": "Airport Line", "stop": "Airport Terminal E F"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.24, 39.8780556], "type": "Point"}, "id": "90402", "properties": {"full name": "Airport Line", "stop": "Airport Terminal C D"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2413889, 39.8772222], "type": "Point"}, "id": "90403", "properties": {"full name": "Airport Line", "stop": "Airport Terminal B"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2452778, 39.8761111], "type": "Point"}, "id": "90404", "properties": {"full name": "Airport Line", "stop": "Airport Terminal A"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2438889, 39.8927778], "type": "Point"}, "id": "90405", "properties": {"full name": "Airport Line", "stop": "Eastwick"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1902778, 39.9480556], "type": "Point"}, "id": "90406", "properties": {"full name": "Multiple Lines", "stop": "University City"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1347222, 40.0405556], "type": "Point"}, "id": "90407", "properties": {"full name": "Multiple Lines", "stop": "Fern Rock T C"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1291667, 40.0594444], "type": "Point"}, "id": "90408", "properties": {"full name": "Multiple Lines", "stop": "Melrose Park"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1277778, 40.0713889], "type": "Point"}, "id": "90409", "properties": {"full name": "Multiple Lines", "stop": "Elkins Park"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1375, 40.0927778], "type": "Point"}, "id": "90410", "properties": {"full name": "Multiple Lines", "stop": "Jenkintown Wyncote"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1536111, 40.1013889], "type": "Point"}, "id": "90411", "properties": {"full name": "Multiple Lines", "stop": "Glenside"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1530556, 40.1141667], "type": "Point"}, "id": "90412", "properties": {"full name": "Warminster Line", "stop": "Ardsley"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1341667, 40.1208333], "type": "Point"}, "id": "90413", "properties": {"full name": "Warminster Line", "stop": "Roslyn"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1186111, 40.1333333], "type": "Point"}, "id": "90414", "properties": {"full name": "Warminster Line", "stop": "Crestmont"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1141667, 40.1438889], "type": "Point"}, "id": "90415", "properties": {"full name": "Warminster Line", "stop": "Willow Grove"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1025, 40.1761111], "type": "Point"}, "id": "90416", "properties": {"full name": "Warminster Line", "stop": "Hatboro"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0891667, 40.1952778], "type": "Point"}, "id": "90417", "properties": {"full name": "Warminster Line", "stop": "Warminster"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.7636111, 39.9927778], "type": "Point"}, "id": "90501", "properties": {"full name": "Paoli Thorndale Line", "stop": "Thorndale"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.7102778, 40.0022222], "type": "Point"}, "id": "90502", "properties": {"full name": "Paoli Thorndale Line", "stop": "Downingtown"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.6380556, 40.0147222], "type": "Point"}, "id": "90503", "properties": {"full name": "Paoli Thorndale Line", "stop": "Whitford"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.6227778, 40.0191667], "type": "Point"}, "id": "90504", "properties": {"full name": "Paoli Thorndale Line", "stop": "Exton"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.5155556, 40.0363889], "type": "Point"}, "id": "90505", "properties": {"full name": "Paoli Thorndale Line", "stop": "Malvern"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4827778, 40.0430556], "type": "Point"}, "id": "90506", "properties": {"full name": "Paoli Thorndale Line", "stop": "Paoli"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4605556, 40.0430556], "type": "Point"}, "id": "90507", "properties": {"full name": "Paoli Thorndale Line", "stop": "Daylesford"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4422222, 40.0480556], "type": "Point"}, "id": "90508", "properties": {"full name": "Paoli Thorndale Line", "stop": "Berwyn"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4227778, 40.0472222], "type": "Point"}, "id": "90509", "properties": {"full name": "Paoli Thorndale Line", "stop": "Devon"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.4030556, 40.0494444], "type": "Point"}, "id": "90510", "properties": {"full name": "Paoli Thorndale Line", "stop": "Strafford"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3866667, 40.0458333], "type": "Point"}, "id": "90511", "properties": {"full name": "Paoli Thorndale Line", "stop": "Wayne"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3725, 40.0438889], "type": "Point"}, "id": "90512", "properties": {"full name": "Paoli Thorndale Line", "stop": "St. Davids"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3588889, 40.0447222], "type": "Point"}, "id": "90513", "properties": {"full name": "Paoli Thorndale Line", "stop": "Radnor"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3416667, 40.0383333], "type": "Point"}, "id": "90514", "properties": {"full name": "Paoli Thorndale Line", "stop": "Villanova"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3266667, 40.0277778], "type": "Point"}, "id": "90515", "properties": {"full name": "Paoli Thorndale Line", "stop": "Rosemont"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.3163889, 40.0219444], "type": "Point"}, "id": "90516", "properties": {"full name": "Paoli Thorndale Line", "stop": "Bryn Mawr"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2997222, 40.0138889], "type": "Point"}, "id": "90517", "properties": {"full name": "Paoli Thorndale Line", "stop": "Haverford"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2902778, 40.0083333], "type": "Point"}, "id": "90518", "properties": {"full name": "Paoli Thorndale Line", "stop": "Ardmore"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2725, 40.0027778], "type": "Point"}, "id": "90519", "properties": {"full name": "Paoli Thorndale Line", "stop": "Wynnewood"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2613889, 40.0047222], "type": "Point"}, "id": "90520", "properties": {"full name": "Paoli Thorndale Line", "stop": "Narberth"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2513889, 39.9986111], "type": "Point"}, "id": "90521", "properties": {"full name": "Paoli Thorndale Line", "stop": "Merion"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2494444, 39.9894444], "type": "Point"}, "id": "90522", "properties": {"full name": "Paoli Thorndale Line", "stop": "Overbrook"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1694444, 40.1119444], "type": "Point"}, "id": "90523", "properties": {"full name": "Lansdale Doylestown Line", "stop": "North Hills"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1838889, 40.1183333], "type": "Point"}, "id": "90524", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Oreland"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2122222, 40.1358333], "type": "Point"}, "id": "90525", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Fort Washington"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2247222, 40.1536111], "type": "Point"}, "id": "90526", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Ambler"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2441667, 40.17], "type": "Point"}, "id": "90527", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Penllyn"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2569444, 40.1847222], "type": "Point"}, "id": "90528", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Gwynedd Valley"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2772222, 40.2141667], "type": "Point"}, "id": "90529", "properties": {"full name": "Lansdale Doylestown Line", "stop": "North Wales"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2816667, 40.2302778], "type": "Point"}, "id": "90530", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Pennbrook"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.285, 40.2427778], "type": "Point"}, "id": "90531", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Lansdale"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2661111, 40.2594444], "type": "Point"}, "id": "90532", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Fortuna"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2544444, 40.2683333], "type": "Point"}, "id": "90533", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Colmar"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2466667, 40.2738889], "type": "Point"}, "id": "90534", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Link Belt"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2097222, 40.2877778], "type": "Point"}, "id": "90535", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Chalfont"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1797222, 40.2975], "type": "Point"}, "id": "90536", "properties": {"full name": "Lansdale Doylestown Line", "stop": "New Britain"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1616667, 40.2972222], "type": "Point"}, "id": "90537", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Delaware Valley College"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1302778, 40.3063889], "type": "Point"}, "id": "90538", "properties": {"full name": "Lansdale Doylestown Line", "stop": "Doylestown"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.755, 40.2177778], "type": "Point"}, "id": "90701", "properties": {"full name": "Trenton Line", "stop": "Trenton"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.8169444, 40.1402778], "type": "Point"}, "id": "90702", "properties": {"full name": "Trenton Line", "stop": "Levittown-Tullytown"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.8547222, 40.1047222], "type": "Point"}, "id": "90703", "properties": {"full name": "Trenton Line", "stop": "Bristol"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9066667, 40.0936111], "type": "Point"}, "id": "90704", "properties": {"full name": "Trenton Line", "stop": "Croydon"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9336111, 40.0830556], "type": "Point"}, "id": "90705", "properties": {"full name": "Trenton Line", "stop": "Eddington"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9522222, 40.0716667], "type": "Point"}, "id": "90706", "properties": {"full name": "Trenton Line", "stop": "Cornwells Heights"}, "type": "Feature"}, {"geometry": {"coordinates": [-74.9844444, 40.0544444], "type": "Point"}, "id": "90707", "properties": {"full name": "Trenton Line", "stop": "Torresdale"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0236111, 40.0327778], "type": "Point"}, "id": "90708", "properties": {"full name": "Trenton Line", "stop": "Holmesburg Jct"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0388889, 40.0233333], "type": "Point"}, "id": "90709", "properties": {"full name": "Trenton Line", "stop": "Tacony"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0697222, 40.0105556], "type": "Point"}, "id": "90710", "properties": {"full name": "Trenton Line", "stop": "Bridesburg"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.155, 39.9972222], "type": "Point"}, "id": "90711", "properties": {"full name": "Trenton Line", "stop": "North Philadelphia Amtrak"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1611111, 40.0361111], "type": "Point"}, "id": "90712", "properties": {"full name": "Chestnut Hill East Line", "stop": "Wister"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1716667, 40.0375], "type": "Point"}, "id": "90713", "properties": {"full name": "Chestnut Hill East Line", "stop": "Germantown"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1713889, 40.0508333], "type": "Point"}, "id": "90714", "properties": {"full name": "Chestnut Hill East Line", "stop": "Washington Lane"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1786111, 40.0605556], "type": "Point"}, "id": "90715", "properties": {"full name": "Chestnut Hill East Line", "stop": "Stenton"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1852778, 40.0627778], "type": "Point"}, "id": "90716", "properties": {"full name": "Chestnut Hill East Line", "stop": "Sedgwick"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1908333, 40.0652778], "type": "Point"}, "id": "90717", "properties": {"full name": "Chestnut Hill East Line", "stop": "Mount Airy"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1966667, 40.0733333], "type": "Point"}, "id": "90718", "properties": {"full name": "Chestnut Hill East Line", "stop": "Wyndmoor"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2016667, 40.0775], "type": "Point"}, "id": "90719", "properties": {"full name": "Chestnut Hill East Line", "stop": "Gravers"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2072222, 40.0811111], "type": "Point"}, "id": "90720", "properties": {"full name": "Chestnut Hill East Line", "stop": "Chestnut Hill East"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2083333, 40.0763889], "type": "Point"}, "id": "90801", "properties": {"full name": "Chestnut Hill West Line", "stop": "Chestnut Hill West"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2111111, 40.0705556], "type": "Point"}, "id": "90802", "properties": {"full name": "Chestnut Hill West Line", "stop": "Highland"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.2044444, 40.0658333], "type": "Point"}, "id": "90803", "properties": {"full name": "Chestnut Hill West Line", "stop": "St. Martins"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1947222, 40.0575], "type": "Point"}, "id": "90804", "properties": {"full name": "Chestnut Hill West Line", "stop": "Allen Lane"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1913889, 40.0511111], "type": "Point"}, "id": "90805", "properties": {"full name": "Chestnut Hill West Line", "stop": "Carpenter"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.19, 40.0425], "type": "Point"}, "id": "90806", "properties": {"full name": "Chestnut Hill West Line", "stop": "Upsal"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1869444, 40.0352778], "type": "Point"}, "id": "90807", "properties": {"full name": "Chestnut Hill West Line", "stop": "Tulpehocken"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1808333, 40.03], "type": "Point"}, "id": "90808", "properties": {"full name": "Chestnut Hill West Line", "stop": "Chelten Avenue"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1780556, 40.0233333], "type": "Point"}, "id": "90809", "properties": {"full name": "Chestnut Hill West Line", "stop": "Queen Lane"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1563889, 39.9977778], "type": "Point"}, "id": "90810", "properties": {"full name": "Chestnut Hill West Line", "stop": "North Philadelphia"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1227778, 40.0333333], "type": "Point"}, "id": "90811", "properties": {"full name": "Fox Chase Line", "stop": "Olney"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.1030556, 40.0513889], "type": "Point"}, "id": "90812", "properties": {"full name": "Fox Chase Line", "stop": "Lawndale"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0927778, 40.0580556], "type": "Point"}, "id": "90813", "properties": {"full name": "Fox Chase Line", "stop": "Cheltenham"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0863889, 40.0641667], "type": "Point"}, "id": "90814", "properties": {"full name": "Fox Chase Line", "stop": "Ryers"}, "type": "Feature"}, {"geometry": {"coordinates": [-75.0833333, 40.0763889], "type": "Point"}, "id": "90815", "properties": {"full name": "Fox Chase Line", "stop": "Fox Chase"}, "type": "Feature"}], "type": "FeatureCollection"} \ No newline at end of file diff --git a/demo/speech-demo.html b/demo/speech-demo.html new file mode 100644 index 0000000..cc60bcb --- /dev/null +++ b/demo/speech-demo.html @@ -0,0 +1,98 @@ + + + rail stops + + + + + + + + + + + +

    Voice over demo

    +

    This is the voice over demo page that will speak out the stop for a visually impaired user. Clicking on the marker will not only show the stop but also speak it. This page currently only works in Chrome.

    +
    + + + + + + + diff --git a/demo/styles/map.css b/demo/styles/map.css new file mode 100644 index 0000000..1c9664e --- /dev/null +++ b/demo/styles/map.css @@ -0,0 +1 @@ +#map {height: 300px;} diff --git a/index.html b/index.html old mode 100644 new mode 100755 index 501f6f0..d881ee0 --- a/index.html +++ b/index.html @@ -1,41 +1,43 @@ - + - - + Unlock Philly + + + - - + + -
    - - - -
    + +
    +

    Wheelchair Accessible
    Google Maps

    +

    +The web app shows whether a wheelchaired transit rider can actually make a trip planned through Google Maps. In Philadelphia, all buses are wheel chair accessible. The Market-Frankford El and the Broad Street Subway stops are not fully wheel chair accessible. When transit riders in wheelchairs use Google Maps to plan transit trips, there's no way of knowing through Google Maps if the stations they use will be accessible to wheelchairs. The data is out there, but wheelchair accessible data is in one location, and elevators that are installed but not currently working.

    +Visit Unlock Philly for more information.

    +
    +
    + + + +
    -
    Stations with Limited Access:
    - - diff --git a/main.css b/main.css deleted file mode 100644 index e34ea9c..0000000 --- a/main.css +++ /dev/null @@ -1,106 +0,0 @@ -body { - background-color: #fefefe; -} - -#map-wrapper { - width: 100%; - color: rgba(0,0,0,0.8); -} - -@media (min-width:800px){ - #searchRoute { - background-color: #2c2c2c; - text-align: center; - padding: 0.5em; - margin: 1em; - margin-bottom: 0em; - } - - #map-canvas { - margin: 1em; - margin-right: 0em; - width: 60%; - height: 30em; - display: inline; - float: left; - border: solid 2px #2c2c2c; - } - - #messages { - background: #E93C4F; - color: #fefefe; - font-family: "Open Sans"; - font-size: 1em; - width: 30%; - margin: 1em; - padding: 1em; - text-align: center; - display: inline; - float: left; - } -} - -@media (max-width:799px){ - #searchRoute { - background-color: #2c2c2c; - text-align: center; - margin: 1em; - padding: 0.5em; - top: 1em; - } - - #map-canvas { - left: 5%; - width: 90%; - height: 20em; - margin-bottom: 1em; - border: solid 2px #2c2c2c; - } - - #messages { - background: #E93C4F; - color: #fefefe; - font-family: "Open Sans"; - font-size: 1em; - margin-left: 5%; - margin-bottom: 2em; - width: 85%; - padding: 1em; - padding-top: 0.5em; - } -} - -span .messageHeader { - color: #fefefe; -} - -input[type=text] -{ - background-color: #f2f2f2; - color: #2c2c2c; - height: 2.2em; - padding-left:10px; - width: 25%; - border: none; -} - -input[type=submit] -{ - background-color: #027073; - color: #fefefe; - height: 2.5em; - font-family: "Open Sans"; - font-weight: 700; - width: 15%; - border: none; - margin-left: 0.5em; - text-transform:uppercase; -} -input[type=submit]:hover -{ - background-color: #028B8F; -} - -input:focus { - outline: none; -} diff --git a/nope (copy).png b/nope (copy).png old mode 100644 new mode 100755 diff --git a/nope.png b/nope.png old mode 100644 new mode 100755 diff --git a/outages.json b/outages.json old mode 100644 new mode 100755 diff --git a/rail_lines.json b/rail_lines.json old mode 100644 new mode 100755 diff --git a/redx.png b/redx.png old mode 100644 new mode 100755 diff --git a/stops.txt b/stops.txt new file mode 100755 index 0000000..3a8c059 --- /dev/null +++ b/stops.txt @@ -0,0 +1,13489 @@ +2,Ridge Av & Lincoln Dr - FS,40.014986,-75.206826,,31032,1,0 +4,Roosevelt Blvd & Broad St - FS,40.018128,-75.148887,,,1, +5,Roosevelt Blvd & 5th St,40.023465,-75.133487,,,1, +7,Roosevelt Blvd & Pratt St,40.028754,-75.089524,,,1, +8,Roosevelt Blvd & Cottman Av,40.044138,-75.054191,,,1, +9,Roosevelt Blvd & Holme Av,40.058585,-75.04424,,,1, +10,Roosevelt Blvd & Woodward St,40.071393,-75.038281,,,1, +11,Comly Rd & Roosevelt Blvd - MBFS,40.104027,-75.000884,,,1, +12,Decatur Rd & Drummond Rd - MBNS,40.08669,-74.999663,,,1, +14,Townsend Rd & McNulty Rd - MBNS,40.107897,-74.976955,,,1, +16,Caroline Rd & Comly Rd - MBFS,40.099164,-75.001855,,,1, +17,Comly Rd & Caroline Rd,40.10168,-74.99833,,,1, +18,Roosevelt Blvd & Byberry Rd - FS,40.106558,-74.999579,,,1, +19,Roosevelt Blvd & Comly Rd,40.105172,-75.001575,,,1, +21,Roosevelt Blvd & Solly Av - FS,40.058873,-75.045067,,,1, +22,Roosevelt Blvd & Cottman Av,40.044791,-75.054613,,,1, +23,Roosevelt Blvd & Pratt St - FS,40.029166,-75.09029,,,1, +24,Roosevelt Blvd & Tower Blvd - FS,40.029484,-75.101085,,,1, +25,Roosevelt Blvd & 5th St,40.024267,-75.133011,,,1, +28,Wissahickon Trans Ctr - onsite,40.014852,-75.207015,,31032,7,0 +30,Pulaski Av & Pike St ,40.013264,-75.157451,,,1, +31,17th St & Huntingdon St,39.993099,-75.159784,,,1, +32,17th St & Girard Av ,39.972153,-75.164352,,,1, +33,17th St & Spring Garden St ,39.963169,-75.166346,,,1, +34,17th St & Market St ,39.953071,-75.168497,,,1, +35,17th St & Pine St ,39.946264,-75.169997,,,1, +36,17th St & Washington Av ,39.938592,-75.171655,,,1, +37,17th St & Snyder Av ,39.925122,-75.174548,,,1, +38,19th St & Moyamensing Av,39.91428,-75.179732,,,1, +39,20th St & Johnston St ,39.916809,-75.181282,,,1,0 +40,20th St & Johnston St ,39.916648,-75.181082,,,1,0 +41,16th St & Snyder Av ,39.924771,-75.17292,,,1, +42,16th St & Washington Av ,39.938196,-75.169968,,,1, +43,16th St & Pine St ,39.945895,-75.168275,,,1, +45,16th St & Girard Av,39.971737,-75.162628,,,1, +46,Huntingdon St & 16th St - FS,39.992882,-75.158379,,,1, +47,17th St & Lehigh Av ,39.994391,-75.159341,,,1, +48,Hunting Park Av & Pulaski Av,40.013935,-75.157992,,,1, +51,Kensington Av & Allegheny Av ,39.996774,-75.113084,,,1, +52,Front St & Dauphin St ,39.984852,-75.132217,,,1, +53,Cecil B Moore Av & Broad St ,39.978707,-75.157724,,,1, +54,Cecil B Moore Av & 20th St ,39.979941,-75.167253,,,1, +55,33rd St & Cecil B Moore Av Loop,39.982394,-75.188946,,,1, +57,Cecil B Moore Av & 20th St ,39.979853,-75.167513,,,1, +58,Cecil B Moore Av & Broad St ,39.978618,-75.157972,,,1, +60,Allegheny Station - MFL,39.996498,-75.113463,,,1,1 +61,Frankford Transportation Center - MFL,40.023427,-75.077185,,,1,1 +64,Frankford Av & Torresdale Av,40.006135,-75.09183,,,1, +65,Frankford Av & Lehigh Av ,39.987096,-75.122378,,,1, +67,2nd St & Green St,39.961017,-75.141445,,,1, +69,Front St & Market St Loop,39.949792,-75.14227,,,1, +70,3rd St & Spring Garden St ,39.960709,-75.143348,,,1, +72,Frankford Av & Lehigh Av ,39.986944,-75.12239,,,1, +73,Frankford Av & Torresdale Av,40.005912,-75.091901,,,1, +77,Ogontz Av & 69th Av,40.059883,-75.150213,,,1, +78,Ogontz Av & Haines St,40.058542,-75.149331,,,1, +79,Ogontz Av & 66th Av,40.054705,-75.149784,,,1, +80,Ogontz Av & Stenton Av,40.051716,-75.150221,,,1, +82,Olney Transportation Center - BSL,40.039066,-75.144737,,,1,1 +84,Ogontz Av & Chelten Av - FS,40.051743,-75.150068,,,1, +85,Ogontz Av & 66th Av,40.054562,-75.149655,,,1, +86,Ogontz Av & Haines St,40.058354,-75.149155,,,1, +89,Cheltenham Av & Ogontz Av - FS,40.07471,-75.15924,,,1, +92,29th St & Girard Av,39.974628,-75.183527,,,1, +93,23rd St & Market St - FS ,39.954009,-75.177917,,,1, +94,23rd St & Washington Av ,39.93979,-75.181533,,,1, +95,Oregon Av & 21st St - FS,39.918159,-75.182611,,,1, +96,Oregon Av & 20th St - FS,39.917888,-75.180723,,,1, +98,Oregon Av & Broad St - FS,39.91669,-75.171084,,,1, +99,Whitman Plaza - 1,39.913009,-75.15638,,,1, +101,Pier 70 WalMart & Home Depot,39.925729,-75.14167,,,1, +103,Oregon Av & Broad St ,39.916913,-75.171131,,,1,0 +105,Oregon Av & 24th St ,39.919705,-75.188106,,,1, +106,22nd St & Washington Av ,39.939394,-75.179751,,,1, +107,Arch St & 22nd St,39.95605,-75.176079,,,1, +108,27th St & Girard Av ,39.974077,-75.180363,,,1, +111,Frankford Transportation Center - Rts 8 & R drop,40.022966,-75.078298,,31033,1, +113,Fisher Av & Rising Sun Av - FS,40.030329,-75.118658,,,1, +114,Tabor Rd & 5th St ,40.034731,-75.130721,,,1, +117,Tabor Rd & 5th St ,40.034723,-75.13104,,,1, +118,Fisher Av & Rising Sun Av ,40.030195,-75.118635,,,1, +119,C St & Roosevelt Blvd,40.026943,-75.117407,,,1, +121,Wissahickon Av & Cathedral Rd - FS,40.067042,-75.230828,,,1,0 +122,Ridge Av & Summit Av,40.056822,-75.236131,,,1,0 +123,Ridge Av & Lyceum Av,40.032921,-75.214703,,,1,0 +124,Roosevelt Blvd & C St,40.026924,-75.117076,,,1, +130,Walnut St & Broad St - MBNS,39.949303,-75.163657,,,1, +131,Walnut St & 23rd St,39.951145,-75.178305,,,1, +132,Roosevelt Blvd & Mascher St,40.02573,-75.125203,,,1, +133,Lyceum Av & Ridge Av,40.032616,-75.214758,,,1,0 +136,Cheltenham Av & Ogontz Av Loop,40.074834,-75.159098,,,1,0 +137,Roosevelt Blvd & 2nd St,40.025319,-75.127547,,,1, +140,Erie Station - BSL,40.009234,-75.151203,,,1, +141,9th St & Erie Av,40.008252,-75.142827,,,1, +142,Allegheny Station - BSL,40.001589,-75.152875,,,1,1 +143,Broad St & Girard Av,39.97158,-75.15957,,,1,0 +145,Spruce St & 15th St,39.947238,-75.166333,,,1, +148,Broad St & Washington Av ,39.937976,-75.166804,,,1, +150,Broad St & Geary St,39.909376,-75.1734,,,1, +152,AT&T Station - BSL,39.905433,-75.173863,,,1,1 +158,Broad St & Geary St,39.909062,-75.172989,,,1, +160,Roosevelt Blvd & 6th St,40.023791,-75.135223,,,1, +164,Broad St & Girard Av,39.971365,-75.159323,,,1, +165,Broad St & Allegheny Av,40.0015,-75.152828,,,1, +167,9th St & Erie Av,40.008037,-75.14271,,,1, +174,Roosevelt Blvd & 7th St - FS,40.02301,-75.137307,,,1, +175,Packer Av & Galloway St ,39.907946,-75.155301,,,1, +180,57th St & Christian St,39.948617,-75.237427,,,1, +182,56th St & Market St,39.960837,-75.232764,,,1, +185,59th St & Columbia Av ,39.981249,-75.239348,,,1, +187,Drexel Rd & City Line Av ,39.990385,-75.249107,,,1, +188,Lankenau Medical Center,39.988502,-75.261907,,,1,0 +192,City Av & Drexel Rd,39.990421,-75.249319,,,1, +194,59th St & Columbia Av - FS,39.981214,-75.239537,,,1, +197,56th St & Market St - FS,39.960766,-75.232989,,,1, +198,56th St & Christian St ,39.948534,-75.235561,,,1, +199,58th St & Woodland Av ,39.932514,-75.224767,,,1, +201,63rd St & Lindbergh Blvd ,39.921117,-75.224363,,,1, +204,Roosevelt Blvd & 9th St,40.021873,-75.139558,,,1, +207,Lindley Av & 5th St ,40.028835,-75.132058,,,1, +208,Lindley Av & Broad St ,40.03059,-75.146367,,,1, +209,Chelten Av & Baynton St - FS,40.038671,-75.171857,,,1, +210,Chelten Av & Wissahickon Av ,40.027313,-75.183523,,,1, +212,Wissahickon Av & School House Ln,40.025721,-75.181826,,,1, +213,Chelten Av & Baynton St ,40.038776,-75.171625,,,1, +214,Lindley Av & 16th St ,40.031009,-75.149888,,,1, +215,Lindley Av & Broad St ,40.030573,-75.146663,,,1, +216,Lindley Av & 5th St ,40.028737,-75.132283,,,1, +217,Arrott Transportation Center - MFL,40.016591,-75.083826,,,1,0 +218,Orthodox St & Frankford Av ,40.014766,-75.085584,,,1, +220,Arrott Transportation Center,40.016869,-75.084202,,,1,0 +222,66th Av & Broad St ,40.053633,-75.141321,,,1, +223,Chew Av & Chelten Av - FS,40.045598,-75.164943,,,1, +224,Wayne Av & Chelten Av - FS,40.031516,-75.178638,,,1, +225,River Rd & Midvale Av,40.008447,-75.194082,,,1, +226,Ridge Av & Midvale Av,40.008921,-75.194152,,,1, +227,Wayne Av & Chelten Av,40.031703,-75.178684,,,1, +228,Chelten Av & Wister St ,40.051858,-75.158179,,,1, +229,66th Av & Old York Rd ,40.05359,-75.141972,,,1, +232,Wister St & Chelten Av,40.051857,-75.157718,,,1, +235,Rodney St & Mt Airy Av,40.071217,-75.179256,,,1, +237,Stenton Av & Mt Airy Av ,40.06891,-75.181606,,,1,0 +241,Evergreen Av & Germantown Av,40.076687,-75.207296,,,1, +242,Germantown Av & Bethlehem Pk,40.077036,-75.20804,,,1, +243,Bethlehem Pk & Montgomery Av ,40.09206,-75.214253,,,1, +244,Germantown Pk & Northwestern Av,40.085981,-75.230314,,,1, +246,Plymouth Meeting Mall,40.117134,-75.284011,,,5, +248,Germantown Pk & Northwestern Av - FS,40.085874,-75.230326,,,1,0 +250,Germantown Av & Bethlehem Pk - FS,40.076831,-75.20797,,,1, +252,Stenton Av & Mt Airy Av ,40.068892,-75.181866,,,1, +254,Stenton Av & Washington Ln,40.059577,-75.165613,,,1,0 +255,Wister St & Chelten Av - FS,40.05201,-75.157871,,,1, +256,Roosevelt Blvd & 5th St - FS,40.024179,-75.133437,,,1, +260,Midvale Av & Henry Av ,40.017165,-75.188167,,,1, +261,29th St & Allegheny Av,40.004728,-75.176983,,,1, +267,Midvale Av & Henry Av ,40.016844,-75.188464,,,1, +268,Hunting Park Av & Fox St - FS,40.007904,-75.171925,,,1, +275,Allegheny Av & Hunting Park Av,40.004972,-75.178471,,,1, +277,Lancaster Av & Girard Av,39.973059,-75.218615,,,1,0 +279,40th St & Filbert St,39.957929,-75.201901,,,1,0 +283,13th St Trolley Station,39.952532,-75.162559,,,1,0 +287,36th St Trolley Portal,39.955451,-75.194233,,,1,0 +290,Lancaster Av & 48th St,39.972414,-75.217329,,,1,0 +293,Malvern Av & 63rd St Loop,39.983955,-75.246264,,,1,0 +297,Woodland Av & 49th St ,39.940767,-75.212665,,,1, +299,Market St & 40th St,39.957117,-75.202175,,,1, +300,Market St & 40th St ,39.957179,-75.20188,,,1, +301,40th St Trolley Portal ,39.949595,-75.203333,,,1, +302,Woodland Av & 49th St,39.940955,-75.212582,,,1, +303,Woodland Av & 62nd St ,39.928267,-75.230599,,,1, +304,Woodland Av & Island Av ,39.917304,-75.246245,,,1, +305,Darby Transportation Center Old,39.91904,-75.262317,,31035,1, +309,Locust St & 20th St ,39.94937,-75.174214,,,1, +310,Locust St & Broad St ,39.948154,-75.164653,,,1, +311,Pine St & 3rd St ,39.943288,-75.147314,,,1, +315,23rd St & Spruce St,39.948835,-75.179045,,,1, +317,Woodland Av & 50th St,39.940064,-75.213848,,,1, +319,Kingsessing Av & Cemetary Av,39.92889,-75.235461,,,1, +320,Chester Av & 58th St ,39.935653,-75.228572,,,1, +321,Chester Av & 49th St ,39.944103,-75.216551,,,1, +322,Chester Av & 49th St,39.944281,-75.216527,,,1, +323,Chester Av & 58th St ,39.935832,-75.2285,,,1, +324,Kingsessing Av & Cemetery Av,39.929069,-75.235413,,,1, +325,Chester Av & Allen Dr Yeadon Loop,39.924685,-75.252447,,,1, +326,Bustleton Av & Comly St - FS,40.029915,-75.073642,,,1, +327,Roosevelt Blvd & Byberry Rd - FS,40.106483,-74.998491,,,1, +329,Old Lincoln Hwy & Roosevelt Blvd,40.12142,-74.976905,,,1, +330,Neshaminy Mall,40.137641,-74.953703,,,1, +331,Pine St & Richardson Av,40.175503,-74.916953,,,1, +332,Oxford Valley Mall & J C Penney,40.182351,-74.881268,,,1,0 +336,Roosevelt Blvd & Lincoln Hwy - FS,40.121637,-74.977684,,,1, +338,Bustleton Av & Comly St,40.029879,-75.073784,,,1, +340,Frankford Transportation Center - Rts 20 & 50,40.023651,-75.077621,,31033,1, +341,Richmond St & Westmoreland St Loop,39.984253,-75.099458,,,1,0 +342,Girard Av & Front St,39.968903,-75.136075,,,1,0 +343,Girard Av & Broad St,39.971499,-75.159275,,,1,0 +344,Girard Av & 40th St - FS,39.974159,-75.204543,,,1,0 +345,Girard Av & 59th St,39.970224,-75.237334,,,1,0 +347,Market St & 41st St,39.957586,-75.204961,,,1, +349,Girard Av & 59th St,39.970099,-75.237523,,,1,0 +350,Girard Av & 40th St,39.974069,-75.204378,,,1,0 +351,41st St & Powelton Av,39.958836,-75.205111,,,1, +352,Girard Av & Broad St,39.971428,-75.159594,,,1,0 +353,Girard Station - MFL,39.968886,-75.136193,,,1,1 +356,Broad St & Pattison Av - 2 NS,39.905209,-75.173509,,,1, +357,20th St & Washington Av ,39.938941,-75.17627,,,1, +358,20th St & Walnut St,39.950422,-75.173749,,,1, +359,Market St & 6th St,39.950783,-75.150249,,,1, +362,19th St & Washington Av ,39.938929,-75.174794,,,1, +363,Pattison Av & Broad St - FS ,39.905288,-75.173037,,,1,0 +364,41st St & Spring Garden Av,39.961246,-75.205375,,,1, +367,Willow Grove Av & Cheltenham Av,40.088379,-75.183017,,,1,0 +368,Cheltenham Av & Gowen Av ,40.082565,-75.172709,,,1, +369,Michener Av & Wadsworth Av - FS,40.078828,-75.173988,,,1, +370,Upsal St & Mansfield Av,40.063593,-75.169868,,,1, +371,Chew Av & Chelten Av ,40.045465,-75.164908,,,1, +372,Olney Av & Broad St ,40.03903,-75.144962,,,1,0 +373,Olney Av & Broad St - FS,40.038922,-75.144289,,31037,1, +375,Rising Sun Av & Knorr St,40.054435,-75.090786,,,1, +378,Rising Sun Av & Knorr St,40.054569,-75.090797,,,1, +379,Rising Sun Av & Olney Av ,40.034523,-75.114951,,,1, +381,Olney Av & 13th St ,40.038623,-75.142493,,,1,0 +382,Olney Transportation Center,40.038725,-75.144207,,31037,1,0 +383,Upsal St & Mansfield St ,40.063433,-75.16988,,,1, +384,Michener Av & Wadsworth Av ,40.078926,-75.173952,,,1, +385,Easton Rd & Cheltenham Av - FS,40.082232,-75.171196,,,1, +388,Frankford Transportation Center - Rt 88,40.024241,-75.077973,,31033,1, +389,Oxford Av & Summerdale Av - FS,40.036246,-75.087869,,,1, +391,Algon Av & Rhawn St ,40.066076,-75.063054,,,1, +392,Krewstown Rd & Gregg St ,40.086215,-75.046091,,,1, +393,Welsh Rd & Neil Dr - FS,40.086761,-75.0408,,,1, +394,Grant Av & Blue Grass Rd - 2,40.077996,-75.0238,,,1, +395,Ashton Rd & Willits Rd,40.063201,-75.021992,,,1, +398,Willits Rd & Ashton Rd,40.062977,-75.021863,,,1, +399,Grant Av & Blue Grass Rd #1,40.078111,-75.023539,,,1, +400,Grant Av & Welsh Rd ,40.087108,-75.040585,,,1, +401,Krewstown Rd & Gregg St ,40.086349,-75.046102,,,1, +402,Algon Av & Rhawn St ,40.06621,-75.063065,,,1, +403,Whitaker Av & Cottman Av - FS,40.057155,-75.077019,,,1, +404,Oxford Av & Summerdale Av,40.036104,-75.08794,,,1, +406,Academy Rd & Grant Av,40.069053,-75.007433,,,1, +407,Morrell Av & Kayford Circle - 2,40.075303,-74.990031,,,1, +408,Academy Rd & Chalfont Dr,40.083979,-74.990167,,,1, +409,Mechanicsville Rd & Knights Rd,40.093465,-74.96235,,,1, +410,Franklin Mills & Marshalls,40.085833,-74.96447,,,1, +413,Academy Rd & Chalfont Dr,40.084318,-74.989976,,,1, +414,Keswick Rd & Morrell Av,40.074783,-74.989265,,,1, +415,Academy Rd & Grant Av - FS,40.069169,-75.007622,,,1, +416,69th St Transportation Center - MFL EB,39.96232,-75.258555,,31034,1,1 +419,Chestnut St & 60th St,39.960388,-75.241198,,,1,0 +420,Chestnut St & 52nd St,39.958424,-75.225307,,,1, +421,Chestnut St & 40th St,39.955582,-75.202369,,,1, +428,2nd St Station - MFL ,39.949831,-75.143746,,,1,1 +432,Walnut St & 30th St - FS,39.951848,-75.184098,,,1, +433,Walnut St & 40th St,39.954128,-75.202504,,,1, +434,Walnut St & 52nd St,39.956987,-75.225394,,,1, +435,Walnut St & 60th St ,39.958967,-75.241273,,,1, +436,Walnut St & 61st St,39.959211,-75.243245,,,1, +437,61st St & Pine St Loop,39.955562,-75.244589,,,1, +442,Limekiln Pk & Greenwood Av - FS ,40.082595,-75.161387,,,1, +443,Cheltenham Av & Easton Rd,40.081625,-75.17108,,,1, +444,Easton Rd & Keswick Av,40.10645,-75.147842,,,1, +446,Easton Rd & Edgehill Rd ,40.117805,-75.136553,,,1, +456,York Rd & Byberry Rd - FS,40.174081,-75.10717,,,1, +460,Easton Rd & Edgehill Rd ,40.118001,-75.136564,,,1, +462,Easton Rd & Keswick Av,40.10662,-75.147841,,,1, +467,Oxford Av & Loney St,40.075965,-75.08497,,,1, +469,Fox Chase Rd & Forrest Av - MBNS,40.088914,-75.104477,,,1, +470,Old Welsh Rd Gloria Dei Towers,40.121078,-75.071732,,,1, +471,Knowles Av & 2nd St Pk - MBNS,40.171412,-75.043727,,,1, +476,Oxford Av & Loney St - FS,40.075885,-75.085101,,,1, +477,Central Av & Cottman Av - MBNS,40.065875,-75.089856,,,1, +478,Martins Mill Rd & Oxford Av,40.04397,-75.089026,,,1, +481,Frankford Av & Girard Av ,39.968774,-75.134351,,,1, +482,Cedar St & Lehigh Av ,39.981836,-75.117746,,,1, +483,Aramingo Av & Castor Av ,39.994611,-75.094601,,,1, +485,Richmond St & Orthodox St,39.99723,-75.073544,,,1, +486,Torresdale Av & Bridge St,40.013082,-75.070522,,,1, +487,Bridge St & Torresdale Av,40.013225,-75.070522,,,1, +488,Orthodox St & Richmond St ,39.997338,-75.073614,,,1, +489,Aramingo Av & Castor Av - FS,39.994629,-75.094814,,,1, +491,Lehigh Av & Cedar St - FS,39.982042,-75.117757,,,1, +493,Frankford Av & Girard Av ,39.9689,-75.134504,,,1, +496,Chelten Av & Morris St - MBNS,40.029851,-75.180925,,,1, +497,Chelten Av & Chew Av ,40.045366,-75.164837,,,1, +499,Tabor Av & Levick St ,40.047396,-75.091895,,,1, +500,Robbins St & Langdon St,40.041808,-75.085229,,,1, +502,Torresdale Av & Bridge St ,40.01326,-75.07038,,,1, +505,Bustleton Av & Magee Av,40.038065,-75.068056,,,1, +507,Tabor Av & Levick St - FS,40.047378,-75.092049,,,1, +511,Germantown Pk & Church Rd - MBNS,40.085039,-75.250666,,,1, +513,Port Royal Av & Henry Av,40.061062,-75.236238,,,1, +514,Henry Av & Summit Av,40.057827,-75.233668,,,1, +515,15th St & Market St,39.952752,-75.165333,,,1,0 +516,Chestnut St & 44th St,39.956506,-75.209818,,,1, +519,Henry Av & Summit Av,40.057916,-75.233455,,,1, +520,Henry Av & Port Royal Av,40.061151,-75.236048,,,1, +521,Ridge Pk & Church Rd,40.081767,-75.253076,,,1, +523,Torresdale Av & Cottman Av Loop,40.030026,-75.036083,,,1, +524,Rhawn St & Torresdale Av - FS ,40.035436,-75.025212,,,1, +525,Rhawn St & Roosevelt Blvd,40.056512,-75.046274,,,1, +526,Rhawn St & Castor Av,40.06178,-75.055944,,,1, +527,Rhawn St & Oxford Av,40.07717,-75.085,,,1, +529,High School Rd & Harrison Av,40.071727,-75.127361,,,1, +532,Montgomery Av & Harrison Av,40.070958,-75.126513,,,1, +533,Forrest Av & Fox Chase Rd ,40.089488,-75.105421,,,1, +535,Rhawn St & Castor Av ,40.061826,-75.056298,,,1, +536,Rhawn St & Roosevelt Blvd,40.056818,-75.047147,,,1, +537,Rhawn St & Torresdale Av,40.035373,-75.025307,,,1, +539,33rd St & Dickinson St Loop,39.935539,-75.198584,,,1, +540,Morris St & 20th St,39.930458,-75.178259,,,1, +541,Morris St & Broad St,39.929215,-75.168737,,,1, +542,Morris St & 7th St,39.927709,-75.157221,,,1, +543,Front St & Tasker St,39.92758,-75.146904,,,1, +544,Tasker St & Front St,39.927704,-75.146856,,,1, +545,Tasker St & 7th St,39.92902,-75.15672,,,1, +546,Tasker St & Broad St,39.930526,-75.168248,,,1, +548,Tasker St & 22nd St,39.932231,-75.181264,,,1, +551,Lansdowne Av & Haverford Av,39.973655,-75.258303,,,1, +552,Vine St & 65th St,39.967762,-75.249943,,,1, +553,Vine St & 59th St,39.966271,-75.237923,,,1, +554,Haverford Av & 52nd St,39.964876,-75.224757,,,1, +556,Woodland Av & 40th St,39.949327,-75.203074,,,1, +557,Haverford Av & 52nd St,39.965045,-75.224521,,,1, +558,Haverford Av & 59th St,39.96901,-75.237136,,,1, +559,Haverford Av & 65th St,39.972383,-75.248679,,,1, +560,Lansdowne Av & Haverford Av,39.974091,-75.257216,,,1, +563,76th St & City Av - FS,39.978571,-75.270814,,,1, +564,63rd St & Master St,39.972235,-75.245042,,,1, +567,41st St & Lancaster Av,39.964941,-75.205493,,,1, +573,Market St & 33rd St,39.955647,-75.189284,,,1, +574,Fairmount Av & 40th St,39.965257,-75.202528,,,1, +575,46th St & Market St,39.958932,-75.214015,,,1, +577,63rd St & Haverford Av,39.971877,-75.244818,,,1, +581,33rd St & Oxford St,39.981296,-75.188714,,,1, +582,33rd St & Girard Av,39.9752,-75.188392,,,1, +584,27th St & Poplar St,39.972757,-75.180674,,,1, +585,Poplar Dr & Girard Av,39.975056,-75.187919,,,1, +586,33rd St & Oxford St,39.981064,-75.188667,,,1, +587,30th St & Allegheny Av,40.004785,-75.178436,,,1, +589,22nd St & Lehigh Av,39.995704,-75.167656,,,1,0 +590,Chestnut St & 43rd St,39.956343,-75.20852,,,1, +591,Chestnut St & 42nd St,39.956089,-75.20643,,,1, +592,Chestnut St & 41st St,39.95589,-75.20486,,,1, +593,Penn's Landing - 1,39.948716,-75.140231,,,1, +595,20th St & Girard Av - MBFS,39.972921,-75.168873,,,1, +596,22nd St & Lehigh Av,39.995498,-75.167527,,,1,0 +597,22nd St & Allegheny Av,40.00317,-75.165844,,,1, +598,Chestnut St & 39th St,39.955292,-75.20002,,,1, +599,Baltimore Av & 61st St Angora Loop,39.943811,-75.246343,,,1, +600,Baltimore Av & 49th St,39.948101,-75.221404,,,1, +601,Baltimore Av & 49th St,39.948261,-75.221109,,,1, +604,Ridge Av & Fountain St ,40.038111,-75.222632,,,1,0 +610,Elmwood Av & 73rd St,39.914335,-75.241732,,,1, +611,Elmwood Loop,39.91405,-75.242677,,,1, +612,Island Av & 80th St Eastwick Loop ,39.898668,-75.239319,,,1, +613,Snyder Av & Broad St ,39.924425,-75.169581,,,1, +615,Lindbergh Blvd & Island Av,39.904247,-75.239965,,,1, +617,PNC Center,39.886442,-75.245958,,,1,0 +618,International Plaza,39.874286,-75.257727,,,1, +622,Chestnut St & 38th St,39.955111,-75.198533,,,1, +623,Chestnut St & 37th St,39.954866,-75.196526,,,1, +624,Industrial Hwy & Wanamaker Av - FS,39.866502,-75.300408,,,1, +630,Lindbergh Blvd & Island Av,39.903855,-75.24058,,,1, +631,Passyunk Av & 20th St,39.923588,-75.179724,,,1, +632,Snyder Av & Broad St ,39.924327,-75.169805,,,1, +633,PHL E & F Terminal,39.880107,-75.240902,,30615,1, +634,Presidential Blvd & Winding Dr - FS,40.006954,-75.209487,,,1, +635,Parkside Av & 40th St,39.974418,-75.204495,,,1, +636,Mantua Av & 34th St,39.966898,-75.19227,,,1, +638,5th St & Market St - FS,39.951047,-75.14876,,,1, +640,Art Museum Dr & Back Entrance - 2,39.966397,-75.182102,,,1, +641,Mantua Av & 34th St - FS,39.967194,-75.192777,,,1, +642,40th St & Girard Av,39.973953,-75.204213,,,1, +643,Neill Dr & Winding Dr,40.007083,-75.20932,,,1, +644,33rd St & Dauphin St Loop,39.991992,-75.186019,,,1,0 +646,Dauphin St & Broad St ,39.987861,-75.156047,,,1, +647,Dauphin St & 7th St ,39.986462,-75.145206,,,1,0 +650,Aramingo St & Cumberland St - detour,39.97654,-75.1198,,,1,0 +651,Susquehanna Av & Front St - FS,39.9833,-75.132696,,,1, +653,Susquehanna Av & Broad St ,39.986326,-75.1561,,,1, +656,York St & 33rd St ,39.993349,-75.18592,,,1, +657,Conshohocken Av & Monument Rd,40.001576,-75.214277,,,1, +659,South St & 22nd St,39.94522,-75.178668,,,1, +660,South St & Broad St,39.943587,-75.165603,,,1, +663,Lombard St & Broad St,39.944675,-75.165174,,,1, +664,Lombard St & 22nd St,39.946326,-75.178216,,,1, +669,61St & Pine St - FS,39.955651,-75.244163,,,1, +670,Spruce St & 60th St - FS,39.956513,-75.242,,,1, +671,Spruce St & 52nd St,39.954534,-75.226121,,,1, +672,Spruce St & 40th St - FS,39.951647,-75.202795,,,1, +673,Spruce St & 2nd St ,39.944523,-75.144747,,,1, +674,Spruce St & 40th St,39.951799,-75.202948,,,1, +675,Spruce St & 52nd St,39.954632,-75.225897,,,1, +676,Spruce St & 60th St,39.956629,-75.241763,,,1, +678,Belmont Av & Girard Av,39.973325,-75.21233,,,1, +679,Spring Garden St & 33rd St,39.963029,-75.190015,,,1, +680,Spring Garden St & 22nd St - FS,39.963944,-75.174244,,,1, +681,Spring Garden St & Broad St,39.962374,-75.161624,,,1, +684,Beach St & Columbia Av,39.966923,-75.128736,,,1, +685,York St & Thompson St,39.975849,-75.12206,,,1, +686,Columbia Av & Delaware Av,39.967289,-75.12877,,,1, +687,Spring Garden St & Front St,39.960458,-75.138767,,,1, +689,Spring Garden St & Broad St,39.962507,-75.161317,,,1, +690,Spring Garden St & 22nd St ,39.964177,-75.174303,,,1, +691,Haverford Av & 33rd St,39.96427,-75.190046,,,1, +692,Belmont Av & Girard Av,39.973173,-75.21213,,,1, +694,Coulter Av & Saint Georges Rd - FS,40.008599,-75.289822,,,1, +695,Essex Av & Windsor Av,40.006469,-75.262739,,,1, +696,Montgomery Av & Haverford Av - FS,40.008427,-75.252335,,,1, +698,Bala Av & City Av,40.000243,-75.22891,,,1, +699,City Av & Presidential Blvd,40.008406,-75.210805,,,1, +703,City Av & Presidential Blv - FS,40.008461,-75.211361,,,1, +705,Montgomery Av & Haverford Av,40.008588,-75.252311,,,1, +706,Haverford Av & Forrest Av - FS,40.005423,-75.261359,,,1, +709,60th St & Lansdowne Av,39.975967,-75.24033,,,1, +710,60th St & Callowhill St,39.968157,-75.23956,,,1, +711,60th St & Market St,39.962224,-75.240792,,,1, +712,60th St & Spruce St,39.956656,-75.241952,,,1, +715,60th St & Spruce St,39.956486,-75.241823,,,1, +716,60th St & Market St - FS,39.962232,-75.240627,,,1, +717,60th St & Callowhill St,39.967996,-75.23943,,,1, +721,Luzerne St & 2nd St - FS,40.011365,-75.130665,,,1,0 +722,Godfrey Loop - FS,40.046185,-75.128037,,,1, +723,5th St & Wyoming Av ,40.022778,-75.133584,,,1, +724,6th St & Erie Av ,40.007725,-75.138917,,,1, +725,8th St & Susquehanna Av - FS,39.984904,-75.146914,,,1, +728,8th St & Market St,39.951245,-75.153648,,,1, +729,8th St & Washington Av ,39.936045,-75.156953,,,1, +730,8th St & Snyder Av ,39.92319,-75.159799,,,1, +732,Oregon Av & 7th St ,39.915443,-75.159758,,,1, +733,7th St & Snyder Av ,39.922821,-75.158136,,,1, +734,7th St & Washington Av ,39.935479,-75.155326,,,1, +735,7th St & Market St ,39.950795,-75.151949,,,1, +736,7th St & Spring Garden St ,39.961286,-75.149782,,,1, +737,7th St & Girard Av ,39.970341,-75.148082,,,1, +738,7th St & Susquehanna Av ,39.984767,-75.145402,,,1, +740,Presidential Blvd & City Line Av,40.008084,-75.210204,,,1, +741,5th St & Erie Av ,40.007292,-75.136804,,,1, +742,5th St & Wyoming Av ,40.022608,-75.133455,,,1, +744,5th St & Godfrey Av,40.045552,-75.128429,,,1, +746,29th St & Dauphin St,39.990963,-75.17995,,,1, +747,29th St & Ridge Av,39.986904,-75.180826,,,1, +748,23rd St & Spring Garden St,39.964377,-75.176133,,,1, +751,29th St & Girard Av,39.974423,-75.183374,,,1, +752,29th St & Dauphin St,39.990793,-75.179773,,,1, +753,27th St & Allegheny Av,40.004026,-75.173842,,,1, +756,12th St & Market St ,39.952053,-75.159974,,,1, +759,10th St & Bigler St ,39.913563,-75.165174,,,1, +766,49th St & Parkside Av Loop,39.978875,-75.216873,,,1, +767,52nd St & Girard Av - FS,39.971241,-75.225873,,,1, +768,52nd St & Haverford Av - FS,39.964804,-75.224675,,,1, +769,52nd St & Market St,39.960155,-75.224948,,,1, +771,52nd St & Baltimore Av,39.94787,-75.227498,,,1, +776,54th St & Chester Av,39.939696,-75.223058,,,1, +777,52nd St & Baltimore Av,39.947709,-75.227262,,,1, +779,52nd St & Market St,39.959869,-75.224866,,,1, +780,52nd St & Haverford Av - FS,39.965197,-75.224591,,,1, +781,52nd St & Girard Av,39.971339,-75.225743,,,1, +784,Luzerne St & 12th St - MBFS,40.013131,-75.145526,,,1, +785,Wayne Av & Manheim St,40.026221,-75.169022,,,1, +787,Wayne Av & Carpenter Ln ,40.043434,-75.198922,,,1, +788,Wayne Av & Carpenter Ln,40.043444,-75.199182,,,1, +790,Wayne Av & Manheim St,40.026204,-75.169282,,,1, +791,Wayne Av & Berkley St,40.022298,-75.16218,,,1, +797,Somerset Station - MFL,39.991451,-75.122513,,,1,1 +801,Kensington Av & Somerset St ,39.991558,-75.122453,,,1, +806,Old York Rd & Cheltenham Av - FS,40.062109,-75.136414,,,1, +807,Old York Rd & Fairway - MBFS,40.107848,-75.123185,,,1, +808,Old York Rd & Edgehill Rd,40.127468,-75.116898,,,1, +809,Willow Grove Park Mall,40.142263,-75.122493,,,1,0 +810,Prudential Office Campus ,40.155297,-75.142522,,,1, +811,Hog Island Rd at UPS Lot,39.858096,-75.257023,,,1,0 +814,Cross Keys Center Doylestown ,40.334014,-75.133338,,,1, +816,Easton Rd & Maple Av - FS,40.228292,-75.139353,,,1,0 +817,Turnpike Dr & Angelo's,40.161958,-75.103115,,,1, +818,UPS Air Hub & Hog Island Rd ,39.858436,-75.257529,,,1,0 +821,Old York Rd & Edgehill Rd,40.127505,-75.11717,,,1, +822,Old York Rd & Harte Rd,40.107037,-75.123934,,,1, +823,Old York Rd & Cheltenham Av,40.062083,-75.136769,,,1, +826,Torresdale Av & Hunting Park Av,40.006004,-75.093236,,,1, +827,Erie Av & Kensington Av - FS,40.005898,-75.0967,,,1, +828,Erie Av & Front St ,40.007697,-75.127182,,,1, +829,Erie Av & 10th St ,40.008389,-75.144198,,,1, +837,Erie Av & Front St ,40.007564,-75.127443,,,1, +838,Erie Torresdale Station - MFL,40.005852,-75.096428,,,1,1 +839,Torresdale Av & Hunting Park Av,40.005862,-75.093403,,,1, +841,Fern Rock Transportation Center,40.04194,-75.13697,,,1, +842,Godfrey Av & 5th St ,40.045597,-75.128583,,,1,0 +843,Cheltenham Av & 2nd St - FS,40.05276,-75.121566,,,1, +844,Olney Av & Rising Sun Av Loop,40.034283,-75.115224,,,1,0 +845,Rising Sun Av & Wyoming Av,40.021813,-75.125692,,,1,0 +846,Front St & Erie Av,40.00776,-75.127406,,,1, +849,4th St & Girard Av - FS ,39.969795,-75.143217,,,1,0 +850,4th St & Market St ,39.950481,-75.147309,,,1, +851,4th St & Washington Av,39.934371,-75.150879,,,1, +853,4th St & Oregon Av ,39.914871,-75.155098,,,1, +855,2nd St & Oregon Av - FS,39.914515,-75.151417,,,1, +856,3rd St & Ellsworth St,39.93368,-75.149229,,,1, +857,3rd St & Market St ,39.950076,-75.145622,,,1, +861,Front St & Erie Av,40.007537,-75.127277,,,1, +862,Rising Sun Av & Wyoming Av ,40.02159,-75.125705,,,1,0 +864,2nd St & Cheltenham Av - FS,40.052909,-75.122296,,,1, +865,Godfrey Av & 5th St,40.045694,-75.128287,,,1,0 +867,Frankford Transportation Center - Rt 58,40.02292,-75.077861,,31033,1, +868,Bustleton Av & Cottman Av,40.047547,-75.059897,,,1, +870,Red Lion Rd & Haldeman Av - FS,40.097337,-75.018259,,,1, +872,Tomlinson Rd & Bustleton Av - MBFS,40.113457,-75.02373,,,1, +873,Rennard St & Bustleton Av,40.116721,-75.020101,,,1, +874,Bustleton Av & County Line,40.134224,-75.009168,,,1,0 +875,Elmwood Av & Brownsville Rd,40.151102,-74.97558,,,1, +876,Elmwood Av & Brownsville Rd - FS,40.151245,-74.975567,,,1, +877,Bustleton Av & County Line,40.134661,-75.008964,,,1,0 +878,Bustleton Av & Tomlinson Rd,40.113178,-75.023033,,,1, +879,Bustleton Av & Rennard St,40.116845,-75.019804,,,1, +880,Bustleton Av & Verree Rd,40.108057,-75.026553,,,1, +882,Bustleton Av & Strahle St - FS,40.066461,-75.051318,,,1, +883,Bustleton Av & Cottman Av - FS,40.047396,-75.060075,,,1, +886,Castor Av & Levick St ,40.039306,-75.077461,,,1, +887,Castor Av & Cottman Av ,40.051055,-75.066063,,,1, +888,Alma Loop,40.052724,-75.066256,,,1, +890,Castor Av & Elgin Av ,40.051527,-75.065966,,,1, +891,Castor Av & Levick St ,40.039538,-75.077448,,,1, +892,Oxford Av & Frankford Av ,40.016939,-75.083895,,,1, +898,Allegheny Av & 26th St,40.004138,-75.172163,,,1, +907,Ridge Av & Domino Ln - FS,40.045088,-75.231693,,,1, +908,Umbria St & Domino Ln - FS,40.038424,-75.24,,,1,0 +909,Flat Rock Rd & Container Loop,40.031499,-75.234674,,,1,0 +912,Ridge Av & Dauphin St ,39.991786,-75.185724,,,1,0 +913,Ridge Av & Girard Av ,39.972443,-75.166654,,,1,0 +915,9th St & Market St - FS,39.951659,-75.155028,,,1,0 +917,Ridge Av & Girard Av,39.972309,-75.166371,,,1,0 +918,Ridge Av & Dauphin St ,39.991643,-75.185489,,,1, +919,Ridge Av & Lehigh Av ,39.998109,-75.187535,,,1,0 +920,Ridge Av & Allegheny Av,40.005963,-75.187673,,,1, +922,Umbria St & Domino Ln,40.038335,-75.239669,,,1,0 +925,Rising Sun Av & Courtland St ,40.02003,-75.126539,,,1, +935,Washington Av & Broad St ,39.937904,-75.166627,,,1, +937,33rd St & Wharton St ,39.937938,-75.197679,,,1, +938,Farragut St & Market St,39.958485,-75.213981,,,1, +941,Farragut St & Market St - FS ,39.958441,-75.214135,,,1, +944,Washington Av & Broad St ,39.937806,-75.166852,,,1, +947,Walnut Ln & Henry Av,40.028515,-75.205791,,,1, +949,Germantown Av & Chelten Av ,40.035836,-75.174615,,,1, +950,Germantown Av & Chelten Av,40.035855,-75.174851,,,1, +951,Walnut Ln & Henry Av,40.028764,-75.205506,,,1, +952,City Av & Belmont Av - MBFS,40.003303,-75.222237,,,1, +954,City Line Loop,40.064535,-74.981179,,,1, +957,Frankford Av & Rhawn St - FS,40.041346,-75.028442,,,1, +958,Frankford Av & Cottman Av ,40.036841,-75.040775,,,1, +959,Frankford Av & Robbins Av ,40.027885,-75.060069,,,1, +960,Frankford Av & Robbins Av,40.02776,-75.060188,,,1, +961,Frankford Av & Cottman Av,40.036672,-75.04087,,,1, +964,Frankford Av & Rhawn St - FS,40.041424,-75.027945,,,1, +970,Verree Rd & Rhawn St ,40.072762,-75.075901,,,1, +971,Verree Rd & Red Lion Rd ,40.104963,-75.033032,,,1, +972,Sandmeyer Ln & Red Lion Rd - MBFS,40.107848,-75.036543,,,1, +973,Verree Rd & Bustleton Av ,40.107871,-75.027063,,,1, +974,Northeast Av & Comcast,40.109389,-75.016036,,,1, +976,Academy Rd & Comly Rd - FS,40.089788,-74.984653,,,1, +979,Medford Rd & Atmore Rd - FS,40.100865,-74.969769,,,1, +980,Comly Rd & Caroline Rd,40.101482,-74.997905,,,1, +982,Bustleton Av & Verree Rd,40.107878,-75.026365,,,1, +984,Verree Rd & Red Lion Rd - FS,40.105106,-75.03328,,,1, +985,Verree Rd & Rhawn St ,40.072995,-75.075935,,,1, +986,10th St & Oregon Av ,39.915775,-75.164501,,,1, +988,Moyamensing Av & 20th St,39.913329,-75.181825,,,1,0 +989,Island Av & Penrose Av - MBFS,39.891593,-75.234654,,,1, +990,Bartram Av & 84th St - MBFS,39.891214,-75.243551,,,1,0 +992,Frankford Av & Wellington St ,40.036043,-75.042423,,,1, +994,Enterprise Av & Fort Mifflin - FS,39.884157,-75.222369,,,1, +995,Executive Av & Enterprise Av - FS,39.882664,-75.226113,,,1, +998,Penrose Av & 20th St - FS ,39.913035,-75.181802,,,1, +999,Oregon Av & 10th St ,39.916069,-75.164406,,,1, +1003,Oak Lane Rd & Cheltenham Av,40.054567,-75.125045,,,1, +1006,Frankford Av & Princeton Av ,40.03481,-75.044735,,,1, +1007,Frankford Av & Knorr St ,40.032383,-75.050954,,,1, +1008,Cottman Av & Oxford Av,40.061288,-75.083657,,,1,0 +1009,Cottman Av & Summerdale Av,40.05432,-75.071664,,,1, +1013,Cottman Av & Roosevelt Blvd,40.044667,-75.054791,,,1,0 +1014,Cottman Av & Ditman St,40.031258,-75.036183,,,1, +1016,State Rd & Rhawn St,40.030759,-75.022543,,,1, +1019,State Rd & Rhawn St,40.031363,-75.021712,,,1, +1021,Cottman Av & Ditman St,40.030819,-75.035629,,,1, +1023,Cottman Av & Roosevelt Blvd,40.044325,-75.053966,,,1, +1024,Cottman Av & Bustleton Av - FS,40.047833,-75.060025,,,1, +1025,Cottman Av & Loretto Av,40.052166,-75.067618,,,1, +1027,Cottman Av & Whitaker Av - FS,40.057512,-75.076887,,,1, +1028,Cottman Av & Oxford Av ,40.061287,-75.083397,,,1,0 +1029,Central Av & Cottman Av - FS,40.065501,-75.090083,,,1, +1030,Oak Lane Rd & Cheltenham Av,40.054817,-75.124795,,,1, +1032,Bridge St & Thompson St,40.004308,-75.067151,,,1, +1036,Thompson St & Bridge St - FS,40.004237,-75.067376,,,1, +1037,Richmond St & Westmoreland St - FS,39.984243,-75.099116,,,1, +1041,Wyoming Av & 5th St ,40.022751,-75.133384,,,1, +1042,Wyoming Av & Broad St ,40.024605,-75.14775,,,1, +1045,Wyoming Av & Broad St ,40.024507,-75.147952,,,1, +1046,Wyoming Av & 5th St ,40.022653,-75.133632,,,1, +1047,Wyoming Av & Castor Av - MBNS,40.01831,-75.099041,,,1, +1051,Willow Grove Av & Wyndmoor St - FS,40.073858,-75.197522,,,1, +1052,Easton Rd & Glenside Av,40.100483,-75.153486,,,1, +1055,Cadwalader Av & Township Line Rd,40.081324,-75.116945,,,1,0 +1056,Cottman Av & Bustleton Av,40.047681,-75.060038,,,1, +1058,St Vincent St & Roosevelt Blvd ,40.042634,-75.055653,,,1, +1060,Township Line Rd & Cadwalader Av,40.081234,-75.11678,,,1,0 +1062,Royal Av & Mulford Rd - Bishop McDevitt HS,40.093822,-75.1566,,,1, +1063,Greenwood Av & Jenkintown Station - temp reloc,40.092193,-75.138705,,,1, +1064,Glenside Av & Easton Rd ,40.100599,-75.153379,,,1, +1066,Willow Grove Av & Wyndmoor Station,40.07409,-75.19751,,,1, +1068,Snyder Av & 29th St ,39.92749,-75.194443,,,1, +1069,Snyder Av & 20th St ,39.925569,-75.179339,,,1, +1072,Snyder Av & 18th St ,39.92525,-75.17594,,,1, +1076,Fitzwatertown Rd & Jenkintown - FS,40.125445,-75.164636,,,1,0 +1077,Moreland Rd & Fitzwater Rd - MBFS,40.149638,-75.130703,,,1, +1078,Dresher Rd & Business Ctr Dr - MBFS,40.167604,-75.14541,,,1, +1079,Dresher Rd & Gibraltar Rd - MBNS,40.173981,-75.139296,,,1, +1080,Rock Road Office Complex,40.168606,-75.13503,,,1, +1081,Frankford Av & Unruh Av ,40.031774,-75.05318,,,1, +1085,Moreland Rd & Fitzwatertown Rd ,40.148805,-75.129795,,,1, +1086,Fitzwatertown Rd & Jenkintown Rd,40.125917,-75.164433,,,1,0 +1089,Tacony St & Comly St ,40.013727,-75.056005,,,1, +1090,Torresdale Av & Cottman Av - FS,40.030174,-75.034947,,,1, +1091,Rhawn St & State Rd,40.031782,-75.022373,,,1, +1092,State Rd & Linden Av ,40.045892,-74.994539,,,1, +1093,Grant Av & James St - FS,40.054396,-74.983809,,,1, +1094,Morrell Av & Frankford Av - FS,40.06356,-74.985573,,,1, +1095,Knights Rd & Franklin Mill Blvd,40.091416,-74.965724,,,1, +1096,Southhampton Rd & Roosevelt Blvd - FS,40.114695,-74.988392,,,1, +1097,County Line Rd & Bustleton Av - FS,40.134707,-75.009568,,,1,0 +1099,Southampton Rd & Roosevelt Blvd,40.114722,-74.988641,,,1, +1100,Knights Rd & Academy Rd - FS,40.091559,-74.965971,,,1, +1101,Morrell Av & Frankford Av ,40.063429,-74.98568,,,1, +1102,Grant Av & James St Torresdale Station,40.054235,-74.983869,,,1, +1104,Torresdale Av & Cottman Av,40.030264,-75.035065,,,1, +1105,Tacony St & Comly St ,40.013923,-75.055933,,,1, +1106,Frankford Av & Magee Av ,40.03069,-75.054841,,,1, +1107,Bustleton Av & Devereux Av,40.03266,-75.072269,,,1, +1108,Battersby St & Devereux Av - FS,40.028262,-75.063826,,,1, +1109,Hawthorne St & Cottman Av ,40.041258,-75.049051,,,1, +1111,Welsh Rd & Holme Av ,40.056099,-75.028466,,,1, +1112,Holme Av & Pennypack St ,40.056346,-75.019346,,,1, +1113,Crispin St & Willits Rd ,40.054513,-75.010156,,,1, +1114,Banes St & Welsh Rd ,40.085382,-75.039375,,,1, +1115,Darlington Rd & Welsh Rd ,40.104226,-75.051923,,,1, +1116,Huntingdon Pk & Bethayres Station,40.116539,-75.068619,,,1, +1117,Huntingdon Pk & Holy Redeemer Hosp - FS,40.108968,-75.080574,,,1, +1120,Welsh Rd & Darlington Rd,40.104387,-75.051982,,,1, +1121,Welsh Rd & Banes St ,40.08557,-75.039469,,,1, +1122,Welsh Rd & Roosevelt Blvd ,40.074596,-75.035188,,,1, +1123,Holme Av & Convent Av ,40.056667,-75.019001,,,1, +1125,Welsh Rd & Holme Av ,40.056922,-75.02891,,,1, +1127,Hawthorne St & Cottman Av - FS,40.04133,-75.049228,,,1, +1128,Battersby St & Devereaux Av ,40.028254,-75.064015,,,1, +1129,Bustleton Av & Deveraux Av,40.032892,-75.072279,,,1, +1131,G St & Hunting Park Av - FS,40.011704,-75.112356,,,1, +1133,Aramingo Av & York St ,39.975445,-75.121069,,,1, +1135,G St & Hunting Park Av ,40.011926,-75.112131,,,1, +1137,Frankford Av & Hellerman St ,40.029525,-75.056136,,,1, +1138,Frankford Av & Levick St ,40.028593,-75.057878,,,1, +1139,78th St & Lindbergh Blvd - FS,39.903824,-75.243247,,,1, +1140,Elmwood Av & Island Av,39.912909,-75.243448,,,1, +1141,67th St & Elmwood Av - FS,39.920497,-75.232899,,,1, +1142,65th St & Elmwood Av ,39.922126,-75.230144,,,1, +1143,65th St & Woodland Av ,39.925568,-75.234219,,,1, +1144,Church Ln & Chester Av - FS,39.926613,-75.246151,,,1,0 +1145,Frankford Av & Hawthorne St ,40.027605,-75.062009,,,1, +1146,69th Street Blvd & Marshall Rd - FS,39.953886,-75.258481,,,1, +1148,69th St Transportation Center South Terminal,39.962052,-75.258296,,31034,3,0 +1149,69th St & Marshall Rd ,39.953833,-75.258634,,,1, +1150,Church Ln & Baltimore Av ,39.941192,-75.256232,,,1,0 +1151,Church Ln & Chester Av ,39.926515,-75.246293,,,1,0 +1152,68th St & Greenway Av,39.923845,-75.239795,,,1, +1153,65th St & Woodland Av ,39.925738,-75.234632,,,1, +1154,65th St & Elmwood Av ,39.922216,-75.230439,,,1, +1156,Passyunk Av & Island Av,39.913248,-75.243128,,,1, +1157,78th St & Lindbergh Blvd ,39.903735,-75.243342,,,1, +1158,Frankford Av & Battersby St ,40.027158,-75.064908,,,1, +1159,Frankford Av & Comly St ,40.026641,-75.067937,,,1, +1160,PHL B & C Terminal - MBFS,39.87716,-75.245168,,30615,1, +1162,Frankford Av & Comly St - MBFS,40.02605,-75.070587,,,1, +1167,23rd St & Race St - FS,39.957863,-75.177077,,,1, +1169,City Av & Bala Av,40.000287,-75.228626,,,1, +1175,Germantown Av & Westview St ,40.052451,-75.185754,,,1, +1176,Germantown Av & Butler St ,40.011002,-75.151574,,,1, +1178,Germantown Av & Ontario St - FS,40.004232,-75.149343,,,1,0 +1179,Germantown Av & Lehigh Av ,39.993162,-75.147968,,,1, +1180,12th St & Girard Av,39.969377,-75.156165,,,1, +1181,12th St & Washington Av,39.937495,-75.163111,,,1, +1182,Oregon Av & 11th St ,39.916073,-75.166353,,,1, +1183,11th St & Washington Av ,39.937107,-75.161424,,,1, +1184,11th St & Market St - FS,39.951996,-75.15818,,,1, +1185,11th St & Girard Av,39.970702,-75.154081,,,1, +1186,Germantown Av & Lehigh Av ,39.993001,-75.147839,,,1, +1188,Germantown Av & Erie Av,40.009117,-75.150695,,,1, +1189,Germantown Av & Butler St ,40.010796,-75.151291,,,1, +1190,Germantown Av & Westview St ,40.052441,-75.185589,,,1, +1206,19th St & Girard Av,39.972543,-75.167528,,,1, +1216,9th St & Washington Av ,39.936253,-75.158357,,,1, +1220,8th St & Spring Garden St - MBFS,39.961282,-75.151873,,,1, +1227,Frankford Av & Gregg St Loop,40.054042,-75.005334,,,1, +1229,Fordham Rd & Grant Av - FS,40.06449,-74.99911,,,1, +1234,Ryan Av & Sandyford Rd,40.046512,-75.045109,,,1, +1235,Fordham Rd & Grant Av ,40.064436,-74.999016,,,1, +1241,Rowland Av & Ryan Av ,40.04041,-75.043203,,,1, +1242,Cottman Av & Hawthorne St,40.041419,-75.04918,,,1, +1246,Bridge St & Torresdale Av,40.013144,-75.070368,,,1, +1249,Lycoming St & 10th St,40.013492,-75.143362,,,1,0 +1250,Richmond St & Venango St ,39.987883,-75.092069,,,1, +1266,Richmond St & Venango St ,39.987732,-75.092129,,,1, +1272,Logan Station - BSL,40.030618,-75.146533,,,1, +1273,Wyoming Station - BSL,40.02456,-75.147857,,,1, +1274,Hunting Park Station - BSL,40.016933,-75.14953,,,1, +1276,Susquehanna Dauphin Station - BSL,39.987031,-75.156062,,,1, +1277,Cecil B Moore Station - BSL,39.978672,-75.157878,,,1,1 +1278,Fairmount Station - BSL,39.967039,-75.160414,,,1, +1279,Spring Garden Station - BSL,39.962374,-75.161435,,,1, +1280,Race Vine Station - BSL,39.957039,-75.162589,,,1, +1281,City Hall Station - BSL,39.952473,-75.164106,,,1, +1282,Walnut Locust Station - BSL,39.948734,-75.164415,,,1,1 +1283,Lombard South Station - BSL,39.944077,-75.165424,,,1, +1284,Ellsworth Federal Station - BSL,39.936182,-75.16713,,,1, +1285,Tasker Morris Station - BSL,39.929804,-75.168522,,,1, +1286,Snyder Station - BSL,39.92438,-75.169711,,,1, +1295,Broad & Fairmount,39.966825,-75.160297,,,1,0 +1308,Henry Av & Cinnaminson St,40.049192,-75.219644,,,1,0 +1313,Poplar St & 29th St,39.973156,-75.183862,,,1, +1321,Vine St & 19th St,39.959126,-75.170246,,,1, +1340,Washington Ln & Chew Av ,40.050748,-75.173308,,,1,0 +1341,Greene St & Chelten Av - FS,40.033948,-75.176383,,,1,0 +1342,Wissahickon Av & Ruffner St,40.011225,-75.168001,,,1,0 +1343,Erie Av & Broad St - FS ,40.009333,-75.151439,,,1,0 +1346,Wissahickon Av & Roberts Av - MBNS,40.013236,-75.169187,,,1,0 +1347,Wissahickon Av & Roberts Av,40.01495,-75.169713,,,1, +1348,Greene St & Chelten Av - FS,40.034261,-75.176642,,,1,0 +1349,Washington Ln & Chew Av ,40.050551,-75.173285,,,1,0 +1350,Andrews Av & Cheltenham Av ,40.068304,-75.148323,,,1,0 +1351,Mt Pleasant Av & Germantown Av ,40.058286,-75.18946,,,1,0 +1391,Market St & 56th St,39.960873,-75.233001,,,1, +1392,15th St Station - MFL,39.952609,-75.165286,,,1, +1396,Market St & 56th St - FS,39.961159,-75.233023,,,1, +1398,Market St & 57th St - FS,39.961412,-75.235054,,,1, +1399,Market St & 58th St - FS,39.961656,-75.23699,,,1, +1400,Market St & 59th St - FS,39.961908,-75.238962,,,1, +1401,Market St & 54th St - FS,39.960339,-75.228467,,,1, +1417,56th St & Chestnut St - FS,39.95932,-75.233288,,,1, +1423,58th St & Kingsessing Av ,39.934687,-75.227158,,,1, +1465,Rhawn St & Verree Rd - FS,40.073178,-75.076192,,,1, +1475,Academy Rd & Torrey Rd,40.096513,-74.970885,,,1, +1476,Southhampton Rd & Roosevelt - MBNS,40.112726,-74.986878,,,1, +1487,Southampton Rd & Carter Rd ,40.118675,-74.99341,,,1, +1488,Bustleton Av & Cottman Av ,40.04777,-75.059919,,,1, +1489,Bustleton Av & Proctor Rd - FS,40.103369,-75.028591,,,1, +1492,Krewstown Rd & Rising Sun Av ,40.079915,-75.052324,,,1, +1495,Verree Rd & Marchman Rd - MBFS,40.091088,-75.054951,,,1, +1520,Byberry Rd & Thornton Rd - FS,40.102117,-74.981704,,,1, +1522,Mechanicsville Rd & Knights Rd,40.093267,-74.961902,,,1, +1524,Knights Rd & Lancelot Pl - MBFS,40.083067,-74.974686,,,1, +1537,30th St & Market St - MBNS,39.955243,-75.183251,,,7,0 +1562,Ridge Pk & Trooper Rd - MBNS,40.142078,-75.38941,,,1, +1563,Ridge Pk & Eagleville Plaza - FS,40.157702,-75.40469,,,1, +1565,Graterford State Prison,40.232754,-75.434954,,,1, +1568,Ridge Pk & Eagleville Plaza,40.157301,-75.404382,,,1, +1570,Main St & Egypt Rd,40.13264,-75.378523,,,1, +1573,Exton Square Mall 3,40.03105,-75.621467,,,1, +1576,Marshall St & Montgomery Av - FS,39.972058,-75.600969,,,1, +1578,High St & Linden St,39.95324,-75.597594,,,1, +1580,High St & Lexington Av,39.942458,-75.591335,,,1,0 +1583,Marshall St & Montgomery Av ,39.972148,-75.600745,,,1, +1585,Pottstown Pk & US 30 ,40.020283,-75.623578,,,1, +1589,Main St & 9th Av,40.192993,-75.462013,,,1, +1591,High St & Armand Hammer Blvd,40.244082,-75.613358,,,1, +1593,High St & York St - MBFS,40.245752,-75.65165,,,1, +1594,Montgomery County Community College,40.244597,-75.654589,,,1, +1598,High St & Armand Hammer Blvd,40.243938,-75.613832,,,1, +1599,Philadelphia Premium Outlets,40.23735,-75.570039,,,1, +1600,Main St & 9th Av,40.192993,-75.462452,,,1, +1605,Bethlehem Pk & Springfield Av - MBFS,40.110615,-75.21396,,,1, +1607,Butler Av & Main St - MBFS,40.153574,-75.224441,,,1, +1608,Old Penllyn Pk & Wister Av,40.169723,-75.243323,,,1, +1614,North Wales & Welsh Rd - FS ,40.229018,-75.262231,,,1, +1617,Montgomery Mall,40.23463,-75.247042,,,1, +1621,North Wales Rd & Main St,40.229045,-75.262468,,,1, +1623,Church Rd & Sumneytown Pk - MBFS,40.215996,-75.292746,,,1, +1627,Old Penllyn Pk & Wister Av,40.169751,-75.243584,,,1, +1628,Main St & Butler Av,40.153832,-75.223991,,,1, +1630,Bethlehem Pk & Springfield Av - MBFS,40.110553,-75.214174,,,1, +1633,East Norriton Crossing Shp Cntr,40.144361,-75.313747,,,1, +1636,Metroplex Shopping Center,40.104229,-75.293611,,,1,0 +1638,River Rd & Inquirer - onsite ,40.086435,-75.325518,,,1, +1639,Renaissance Business Center ,40.088786,-75.340931,,,1, +1641,Gulph Mills Station,40.071355,-75.342029,,31031,3, +1642,Renaissance Business Center ,40.088786,-75.341156,,,1, +1648,East Norriton Crossing Shop Ctr,40.14453,-75.313829,,,1, +1649,Norristown Transportation Center,40.113378,-75.344463,,31038,2,0 +1650,Pine St & Logan St,40.130424,-75.330651,,,1, +1651,Dekalb Pk & Germantown Av - MBNS ,40.140041,-75.314026,,,1, +1653,Montgomery County Community College,40.177327,-75.275205,,,1, +1654,Walnut St & 5th St - MBNS,40.213238,-75.276964,,,1, +1658,Broad St & Front St,40.309651,-75.320539,,,1, +1660,Landis Market - Telford,40.330202,-75.333887,,,1, +1661,Broad St & Front St - FS,40.309704,-75.320147,,,1, +1662,Broad St & Market St,40.281885,-75.297211,,,1, +1663,Green St & Main St ,40.242223,-75.286246,,,1, +1665,North Wales Railroad Station ,40.213791,-75.276987,,,1, +1668,Dekalb Pk & Germantown Av - MBFS,40.140184,-75.314298,,,1, +1669,Pine St & Logan St,40.130692,-75.330591,,,1, +1671,Swede St & Johnson Hwy,40.134568,-75.332681,,,1, +1672,Harding Blvd & James St,40.124945,-75.343751,,,1, +1674,Stanbridge St & Marshall St,40.122532,-75.352963,,,1, +1675,Ridge Pk & Alan Wood Rd ,40.099838,-75.302329,,,1, +1676,Hector St & North Ln,40.075947,-75.285459,,,1, +1677,Hector St & North Ln - MBNS,40.07563,-75.286313,,,1, +1679,Marshall St & Stanbridge St,40.12238,-75.352797,,,1, +1680,Willow Dr & The Oval,40.131641,-75.347282,,,1, +1682,Swede Rd & Johnson Hwy,40.134309,-75.332622,,,1, +1683,Johnson Hwy & New Hope St ,40.125201,-75.317518,,,1, +1684,Arch Rd & Germantown Pk ,40.136168,-75.305153,,,1, +1687,Butler Av & Main St,40.153671,-75.223873,,,1, +1688,Pennsylvania Av & Fort Wash Av,40.137451,-75.211914,,,1, +1697,Arch Rd & Germantown Pk - FS,40.135553,-75.30603,,,1, +1698,Johnson Hwy & New Hope St - FS,40.125245,-75.317246,,,1, +1699,4th St & Ford St,40.105064,-75.338899,,,1, +1702,Plaza at King of Prussia Park N Ride,40.090311,-75.391888,,,3, +1703,1st Av & Freedom Business Center Dr,40.095171,-75.414699,,,1, +1704,Egypt Rd & Shannondell Blvd - FS,40.130435,-75.407423,,,1, +1706,Church St & Main St - FS,40.132845,-75.515498,,,1, +1707,Phoenixville Plaza,40.133347,-75.536145,,,1, +1708,New St & Main St,40.179608,-75.547563,,,1, +1709,Limerick Square Shopping Center ,40.198807,-75.526834,,,1, +1711,Main St & New St,40.179768,-75.547717,,,1, +1714,Station Av & Montgomery Av,40.128872,-75.457202,,,1, +1715,Shannondell Blvd & Egypt Rd - FS,40.129498,-75.406784,,,1, +1716,1st Av & Freedom Business Center Dr,40.094912,-75.414533,,,8, +1719,DeKalb Street Station ,40.099022,-75.352101,,,1, +1720,Ford St & 4th St,40.105037,-75.338615,,,1, +1721,13th St & Market St - MBFS,39.952672,-75.161283,,,7, +1725,Morris Dr & Liberty Ridge Dr - MBFS ,40.069015,-75.46721,,,6, +1732,S. Gulph Rd & Hilltop Dr,40.077866,-75.362995,,,8, +1737,Valley Forge National Historic Park,40.101688,-75.422117,,,8, +1738,Valley Forge Towers ,40.104162,-75.413159,,,8, +1747,North Bucks Town Rd & Sesame Pl,40.186747,-74.87204,,,1, +1748,Olds Blvd & Hood Blvd - MBNS,40.171248,-74.847677,,,1, +1751,Trenton Rd & Tyburn Rd - FS,40.189731,-74.824339,,,1, +1753,Pennsylvania Av & Bridge St ,40.208206,-74.775651,,,1, +1754,Trenton Transit Center ,40.219322,-74.754202,,,1, +1761,Olds Blvd & Oxford Valley Rd,40.170154,-74.850434,,,1, +1762,Buckstown Rd & Sesame Pl ,40.187041,-74.871896,,,1, +1769,Lower Bucks Hospital,40.106088,-74.866905,,,1, +1772,Hulmeville Rd & Street Rd,40.09654,-74.944604,,,1, +1773,Hulmeville Rd & Street Rd - MBNS,40.097066,-74.944518,,,1, +1776,Old Orchard Rd & Harrison St,40.10657,-74.866889,,,1, +1777,Mill St & Old U S 13,40.096739,-74.860068,,,1, +1780,Lincoln Hwy & Durham Rd - MBNS,40.159893,-74.910575,,,1, +1781,Mill Creek Rd & Green Ln,40.133095,-74.858524,,,1, +1782,Beaver St & Garden St - FS,40.10403,-74.855773,,,1, +1783,Bristol Park Shop Ctr,40.10122,-74.872032,,,1, +1784,Bucks County Office Center ,40.110442,-74.876659,,,1, +1785,Wharton Rd & Ford Rd ,40.121451,-74.885582,,,1, +1789,Bensalem Blvd & New Falls Rd ,40.123539,-74.904316,,,1, +1792,Bristol Park Shop Ctr,40.101273,-74.871949,,,1, +1793,Beaver St & Prospect St,40.103627,-74.855611,,,1, +1794,Mill Creek Rd & Green Ln - FS,40.133177,-74.858736,,,1, +1795,Durham Rd & Lincoln Hwy ,40.159207,-74.910923,,,1, +1796,Creekside Apts Rd & Dunks Ferry Rd ,40.101882,-74.957526,,,1, +1799,Saint Mary Medical Center ,40.202359,-74.925234,,,1, +1800,Pheasant Run & Terry Dr,40.22547,-74.916643,,,1, +1801,Gloria Dei Plaza ,40.221114,-74.936706,,,1, +1802,Washington Av & Court St,40.229323,-74.935903,,,1, +1806,Bucks County Community College - 1,40.240269,-74.967153,,,1, +1809,Village of Newtown Shopping ,40.235332,-74.945666,,,1, +1810,Washington Av & Court St - FS,40.229162,-74.935916,,,1, +1812,Pheasant Run & Terry Dr - FS,40.225344,-74.916371,,,1, +1816,Creekside Rd & Dunks Ferry Rd - MBFS,40.101922,-74.957727,,,1, +1817,Eisenhower Av & Trooper Rd - MBFS,40.123893,-75.409851,,,1, +1818,Audubon Rd & Adams Av - FS,40.117245,-75.423039,,,1, +1822,Marshall St & Buttonwood St,40.123747,-75.355104,,,1, +1827,Plaza at King of Prussia ,40.089615,-75.393427,,,3,0 +1831,King St & Warren Av,40.03613,-75.514461,,,1, +1832,King Rd & Immaculata University,40.027221,-75.566819,,,1, +1833,King Rd & Immaculata University,40.027186,-75.566488,,,1, +1834,King St & Warren Av,40.035826,-75.51472,,,1, +1837,Old Eagle School Rd & Devon Park Dr,40.075856,-75.410622,,,1, +1839,Fort Washington Railroad Station,40.136077,-75.21238,,,1, +1841,Pinetown Rd & Delaware Dr,40.137103,-75.197151,,,1, +1843,Office Center Dr & Virginia Dr - FS,40.140812,-75.172003,,,1, +1845,600 Office Center Dr,40.145308,-75.17529,,,1, +1866,Unisys,40.056417,-75.512862,,,1, +1870,Valley Stream Pkwy & Morehall Rd - MBFS,40.057318,-75.527483,,,1, +1872,Swedesford Rd & Liberty Blvd - MBNS,40.054949,-75.520336,,,1, +1874,Paoli Regional Rail Station ,40.042367,-75.484057,,,1, +1875,Station Av & Railroad Av - FS,40.072424,-74.951959,,,1,0 +1877,Marshall Ln & Winks Ln - 2,40.085559,-74.921513,,,1, +1882,Winks Ln & Marshall Ln,40.085648,-74.921264,,,1, +1884,Station Av at Cornwells Heights Station,40.072343,-74.951688,,,1, +1892,Bridgeport Station - NHSL,40.104964,-75.348141,,,2,0 +1895,Gulph Mills Station - NHSL,40.070838,-75.342325,,31031,2,1 +1900,Stadium Station - NHSL,40.032681,-75.340776,,,2, +1902,Roberts Rd Station - NHSL,40.021383,-75.33027,,,2, +1908,Beechwood Brookline Station - NHSL,39.986521,-75.291495,,,2, +1917,Parkview Station - NHSL,39.968982,-75.274804,,,2, +1918,Township Line Rd Station - NHSL,39.974791,-75.281572,,,2, +1919,Penfield Station Manoa Rd - NHSL,39.981015,-75.283992,,,2, +1921,Wynnewood Rd Station - NHSL,39.993382,-75.298229,,,2,1 +1923,Ardmore Av Station - NHSL,39.999918,-75.309467,,,2, +1924,Haverford Station - NHSL,40.009821,-75.315158,,,2, +1925,Bryn Mawr Station - NHSL,40.018075,-75.323419,,,2, +1927,Garrett Hill Station - NHSL,40.027957,-75.336396,,,2, +1929,Villanova Station - NHSL,40.034049,-75.344037,,,2, +1930,Radnor Station - NHSL,40.042061,-75.353617,,,2, +1931,County Line Station - NHSL,40.050108,-75.347376,,,2, +1932,Matsonford Station - NHSL,40.058215,-75.339455,,,2, +1934,Hughes Park Station - NHSL,40.081392,-75.34902,,,2, +1935,DeKalb St Station - NHSL,40.098736,-75.352065,,,2,0 +1938,Avon Rd Station - FS,39.957649,-75.269301,,,1, +1939,Lansdowne Av Station - FS,39.951694,-75.282422,,,1, +1940,Drexel Hill Jct Station,39.947092,-75.292764,,,1,0 +1943,Woodland Av Station,39.924707,-75.339812,,,1,0 +1944,Springfield Mall Station,39.918278,-75.348885,,,1, +1945,96 Signal - not a stop ,39.915833,-75.364681,,,1, +1946,Providence Rd Station,39.916786,-75.380567,,,1,0 +1947,Orange St Station,39.918629,-75.393939,,,1,0 +1948,Orange St Station,39.918478,-75.393998,,,1,0 +1949,Providence Rd Station,39.916626,-75.380614,,,1,0 +1950,SIG 96 - not a stop,39.915681,-75.364598,,,1, +1951,Springfield Mall Station,39.918011,-75.348992,,,1, +1952,Woodland Av Station - FS,39.924644,-75.339624,,,1,0 +1953,Scenic Rd Station,39.940734,-75.325872,,,1, +1955,Drexel Hill Junction Station - FS,39.947012,-75.292575,,,1,0 +1957,Avon Rd Station - FS,39.95772,-75.268888,,,1, +1959,Baltimore Av Station,39.931233,-75.292912,,,1, +1961,North St Station,39.917498,-75.28555,,,1, +1962,Chester Pk & Brainerd Blvd - FS,39.906343,-75.278078,,,1, +1963,Chester Pk & Brainard Blvd,39.906209,-75.278008,,,1,0 +1964,North St Station - MBFS,39.917596,-75.285408,,,1, +1968,West Chester Pk & Carol Blvd,39.965244,-75.276276,,,1, +1969,Earlington Rd & Manoa Rd ,39.980675,-75.291826,,,1, +1970,Brookline Blvd & Darby Rd,39.978868,-75.304139,,,1, +1971,Hathaway Ln & Eagle Rd - FS,39.988922,-75.309627,,,1, +1972,SEPTA PRW & Lippencott Av,40.002789,-75.297822,,,1, +1975,County Line Rd & Lippincott Av,40.002816,-75.298058,,,1, +1976,East Darby Rd & Eagle Rd - FS,39.988432,-75.309639,,,1,0 +1978,Earlington Rd & Manoa Rd ,39.980765,-75.292133,,,1, +1983,West Chester Pk & Eagle Rd - FS,39.973278,-75.319989,,,3, +1985,West Chester Pk & Sproul Rd - FS,39.982125,-75.361749,,,1, +1987,West Chester Pk & Providence Rd - FS,39.974716,-75.450919,,,1, +1988,West Chester Pk & Chester Rd - MBFS,39.966881,-75.526403,,,1, +1989,West Chester Pk & Five Points Rd - FS,39.968359,-75.576203,,,1, +1990,West Chester Trans Ctr,39.958002,-75.607467,,,1, +1992,West Chester Pike & 5 Points Rd,39.968109,-75.575978,,,1, +1993,West Chester Pk & Chester Rd - MBNS,39.966666,-75.527112,,,1, +1994,West Chester Pk & Providence Rd - FS,39.974574,-75.449395,,,1, +1995,West Chester Pk & Newtown St Rd - FS,39.986647,-75.400225,,,1, +1996,West Chester Pk & Sproul Rd - FS,39.981625,-75.36071,,,1, +1998,West Chester Pk & Eagle Rd - FS,39.972813,-75.319139,,,3, +2002,Haverford Av & City Av,39.980068,-75.269121,,,1, +2004,Wynnewood Shopping Center,40.001418,-75.272864,,,1, +2007,Lancaster Av & Bryn Mawr Av - FS,40.021373,-75.317894,,,1, +2008,Radnor Chester Rd & King Prussia Rd,40.043162,-75.35948,,,1, +2009,Lancaster Av & Wayne Av,40.04413,-75.387798,,,1, +2011,Lancaster Av & Main Av,40.047849,-75.441989,,,1, +2013,Paoli Memorial Hospital,40.043922,-75.499678,,,1, +2014,Lancaster Av & Main Av,40.047492,-75.442793,,,1, +2016,Lancaster Av & Wayne Av,40.043988,-75.388555,,,1, +2017,Radnor Chester Rd & King Prussia Rd,40.043216,-75.359185,,,1, +2018,Lancaster Av & Bryn Mawr Avs ,40.020622,-75.316784,,,1,0 +2023,Haverford Av & City Av,39.980229,-75.269416,,,1, +2024,69th St Transportation Center North Terminal,39.962642,-75.25879,,31034,1, +2027,Haverford Rd & Delmont Dr - MBFS,39.99218,-75.283828,,,1, +2029,Burmont Rd & Marshall Rd - FS,39.941006,-75.293768,,,1, +2035,Burmont Rd & Dennison Av ,39.936084,-75.289172,,,1, +2038,Providence Av & 22nd St ,39.866782,-75.362048,,,1, +2042,Baltimore Pike & Oak Av - MBNS,39.927103,-75.303108,,,1, +2043,Lansdowne Av & Baltimore Av - FS,39.938429,-75.272154,,,1, +2044,Lansdowne Av & Baltimore Av - FS,39.937929,-75.272297,,,1, +2045,Baltimore Av & Oak Av - MBFS,39.927219,-75.303332,,,1, +2047,Springfield Mall,39.913987,-75.350731,,,1,0 +2049,Providence Av & 22nd St,39.867077,-75.362342,,,1, +2050,State Rd & Lansdowne Av - MBNS,39.95967,-75.287012,,,1, +2051,Township Line Rd & Dermond Rd ,39.953423,-75.323267,,,1, +2052,Marple Crossroads Shopping Ctr - 1,39.939309,-75.355568,,,1, +2054,Elwyn Institute ,39.915037,-75.41528,,,1, +2055,Granite Run Mall - 2 Trans Center,39.914949,-75.432229,,,1, +2062,Elwyn Institute ,39.914796,-75.415505,,,1, +2063,Baltimore Pk & Providence Rd ,39.915492,-75.380674,,,1, +2065,Township Line Rd & Dermond Rd - FS,39.953476,-75.323043,,,1, +2066,State Rd & Lansdowne Av - FS,39.959447,-75.287119,,,1, +2072,Oak Av & Boro Rd,39.921663,-75.29901,,,1, +2074,Morton Rail Station ,39.907936,-75.327017,,,1, +2075,Woodland Av & Morton Av,39.908249,-75.327665,,,1, +2076,MacDade Blvd & South Av - FS,39.900773,-75.301526,,,1, +2077,Oak Av & Secane Rd - MBNS,39.921341,-75.298621,,,1, +2083,S Central Blvd & Sussex Blvd,39.967562,-75.337597,,,1, +2091,Lawrence Rd & Hillside La - FS,39.969068,-75.347789,,,1, +2092,Sussex Blvd & Abbott Blvd,39.958934,-75.340407,,,1, +2093,Lawrence Park Shopping Center,39.962379,-75.354233,,,1, +2097,MacDade Blvd & Fairview Rd,39.877686,-75.34485,,,1, +2098,MacDade Blvd & MacDade Mall ,39.899652,-75.304466,,,1, +2099,MacDade Blvd Station,39.91021,-75.280938,,,1,0 +2100,Lansdowne Av & Golf Rd - MBFS,39.927678,-75.268247,,,1, +2105,Main St & Golf Rd,39.927107,-75.268284,,,1, +2106,MacDade Blvd & Woodlawn Av,39.910211,-75.280973,,,1,0 +2107,MacDade Blvd & Highland Terrace,39.899768,-75.304844,,,1, +2108,MacDade Blvd & Fairview Rd,39.878275,-75.344377,,,1, +2109,Highland Av & 3rd St,39.831748,-75.390811,,,1, +2111,Chelsea Pkwy & Conchester Hwy - MBNS,39.85103,-75.447958,,,1, +2112,Ridge Rd & Market St ,39.824311,-75.420592,,,1, +2113,9th St & Highland Av ,39.835757,-75.395148,,,1, +2116,Chester Pk & Fairview Rd,39.868409,-75.337453,,,1, +2117,Chester Pk & Lincoln Av,39.882348,-75.306125,,,1,0 +2118,Chester Pk & Lincoln Av,39.882616,-75.305971,,,1,0 +2119,Chester Pk & Fairview Rd,39.868605,-75.337382,,,1, +2121,Engle St & 12th St,39.842324,-75.390829,,,1, +2122,9th St & Highland Av - FS,39.835873,-75.3949,,,1, +2124,Chelsea Pkwy & Larkin Rd - MBFS,39.851021,-75.447793,,,1, +2125,Grant Rd & Taylor Dr ,39.885908,-75.280269,,,1, +2126,Sharon Av & Ash Rd ,39.898733,-75.266271,,,1, +2127,Elmwood Av & Sharon Av ,39.904012,-75.270023,,,1, +2132,Lansdowne Av & Winding Way - FS,39.951971,-75.282292,,,1, +2137,Lansdowne Av & Garrett Rd ,39.951721,-75.282352,,,1, +2141,Sharon Av & Elmwood Av ,39.903762,-75.269799,,,1, +2142,Sharon Av & Ash Rd ,39.89884,-75.266117,,,1, +2145,Crozer Chester Medical Center ,39.855335,-75.368521,,,1, +2146,Edgmont Av & 22nd St ,39.863822,-75.36816,,,1, +2148,352 Plaza #1 ,39.878612,-75.394879,,,1, +2149,Pennell Rd & Weir Rd - MBNS,39.863347,-75.427604,,,1,0 +2150,Neumann University Main Campus,39.87377,-75.439447,,,1, +2157,Pennell Rd & Weir Rd,39.864239,-75.427958,,,1,0 +2159,Edgmont Av & Brookhaven Rd.,39.872648,-75.388382,,,1, +2163,Brookhaven Rd & Rose Valley Rd,39.892974,-75.378082,,,1, +2167,Providence Rd & Kirk Ln ,39.935095,-75.390979,,,1, +2168,Delaware County Community College,39.967993,-75.395178,,,1, +2172,Providence Rd & Kirk Ln ,39.934934,-75.391109,,,1, +2173,Jackson St & State St - Media ,39.918075,-75.389525,,,1, +2174,Wallingford Av & Vernon St - FS,39.909023,-75.384101,,,1, +2176,Brookhaven Rd & Rose Valley Rd,39.893367,-75.37807,,,1, +2181,Cheyney University ,39.935472,-75.529572,,,1, +2192,Highland Av & 15th St,39.840059,-75.399909,,,1, +2197,West Chester Pk & Darby Rd,39.969132,-75.296844,,,1, +2199,West Chester Pk & Lawrence Rd ,39.977002,-75.334277,,,1, +2200,West Chester Pk & Lawrence Rd - FS,39.976573,-75.33377,,,1, +2202,West Chester Pk & Darby Rd - FS,39.968739,-75.296455,,,1, +2215,MacDonald Blvd & Commerce Dr - 2,39.848665,-75.40987,,,1,0 +2217,9th St & Highland Av - FS,39.835971,-75.394841,,,1, +2218,Elwyn Rail Station ,39.908156,-75.411163,,,1, +2225,Paoli Pk & Concord Rd,39.969195,-75.586304,,,1, +2289,Lincoln Hwy & Conestoga Rd - MBFS,40.042991,-75.529934,,,1, +2290,Lincoln Court Shopping Center ,40.040678,-75.541459,,,1, +2295,Pottstown Pk & Sunrise Blvd - FS,40.038468,-75.631998,,,1, +2298,Uwchlan Av & Gordon Dr - FS ,40.062149,-75.652147,,,1, +2299,Uwchlan Av & Marsh Creek Dr,40.057607,-75.656438,,,1, +2300,Eagleview Blvd & Mukolian Dr - FS,40.050982,-75.662767,,,1, +2302,Constitution Dr & Eagleview Blvd,40.067828,-75.67944,,,1, +2306,Eagleview Blvd & Dowlin Forge Rd - FS,40.053113,-75.664063,,,1, +2307,Eagleview Blvd & Mukolian Dr - FS,40.051284,-75.663584,,,1, +2308,Uwchlan Av & Marsh Creek Dr,40.057885,-75.655906,,,1, +2311,Rt 100 & Marchwood Blvd ,40.04994,-75.636098,,,1, +2312,Rt 100 & Sunrise Blvd ,40.038824,-75.632566,,,1, +2315,Springdale Dr & Summit Dr - FS ,40.029261,-75.605645,,,1, +2317,Lincoln Court Shopping Center ,40.040491,-75.541506,,,1, +2318,Lincoln Hwy & Conestoga Rd,40.042857,-75.529591,,,1, +2321,Moreland & Fitzwatertown Rd NW,40.148876,-75.129415,,,1, +2322,Horsham Business Center ,40.168824,-75.152239,,,1, +2347,Conchester Hwy & Baltimore Pk - MBFS,39.883534,-75.524545,,,1, +2356,Paoli Pk & Concord Rd ,39.968846,-75.586362,,,1, +2439,North Philadelphia Station - BSL,39.993944,-75.154582,,,1,1 +2440,Chinatown Station - BSL,39.955027,-75.152747,,,1, +2446,Millbourne Station - MFL,39.964365,-75.252314,,,1,1 +2447,63rd St Station - MFL,39.96275,-75.246767,,,1,1 +2448,60th St Station - MFL,39.961991,-75.240757,,,1,1 +2449,56th St Station - MFL,39.961007,-75.232847,,,1,1 +2450,52nd St Station - MFL,39.960012,-75.224889,,,1,1 +2451,46th St Station - MFL,39.958646,-75.214016,,,1,1 +2452,40th St Station - MFL,39.957152,-75.201963,,,1, +2453,34th St Station,39.955865,-75.19148,,,1, +2455,13th St Station,39.952101,-75.16145,,,1,1 +2456,11th St Station,39.951728,-75.158322,,,1, +2457,8th St Station - MFL,39.951138,-75.153589,,,1,1 +2458,5th St Station,39.950565,-75.148939,,,1,1 +2459,Spring Garden Station - MFL,39.960542,-75.140396,,,1, +2460,Berks Station - MFL,39.978626,-75.133495,,,1,1 +2461,York Dauphin Station - MFL,39.986288,-75.131845,,,1,1 +2462,Huntingdon Station - MFL,39.98883,-75.127297,,,1,1 +2463,Tioga Station - MFL,40.000318,-75.106463,,,1,1 +2464,Church Station - MFL,40.010919,-75.088699,,,1,1 +2496,Cricket Terrace & Cricket Av - MBNS,40.006807,-75.290842,,,1, +2501,Stevens Dr & Airport Business Ctr,39.87453,-75.28087,,,1, +2505,Wilmington Pk & Christy Dr - MBFS,39.878706,-75.546186,,,1, +2519,Lansdowne Av & Township Line Rd - FS,39.967596,-75.295678,,,1, +2635,Carpenter St & 15th St,39.939317,-75.168098,,,1, +2654,16th St & Bainbridge St ,39.94311,-75.168887,,,1, +2655,16th St & Berks St ,39.981998,-75.160406,,,1, +2657,16th St & Callowhill St ,39.959883,-75.165236,,,1, +2658,16th St & Catherine St ,39.94114,-75.169319,,,1, +2659,16th St & Cecil B Moore Av ,39.978909,-75.161089,,,1, +2660,16th St & Chestnut St ,39.95114,-75.167146,,,1, +2661,17th St & Cambria St ,39.997755,-75.158762,,,1, +2662,17th St & Cambria St - FS,39.997523,-75.158645,,,1, +2663,17th St & Carpenter St ,39.939764,-75.171412,,,1, +2664,17th St & Catherine St ,39.941527,-75.171018,,,1, +2665,17th St & Cecil B Moore Av ,39.979379,-75.162789,,,1, +2666,17th St & Chestnut St ,39.951519,-75.168845,,,1, +2667,17th St & Christian St ,39.94076,-75.171186,,,1, +2668,17th St & Clearfield Rd - FS,40.000482,-75.158159,,,1, +2669,17Th St & Clearfield St,40.000501,-75.158019,,,1, +2670,17th St & Cumberland St ,39.991618,-75.160132,,,1, +2671,17th St & Dauphin St ,39.988594,-75.160794,,,1, +2672,17th St & Diamond St ,39.985462,-75.161479,,,1, +2673,17th St & Dickinson St ,39.932455,-75.172999,,,1, +2674,17th St & Ellsworth St ,39.937575,-75.171859,,,1, +2675,17th St & Erie Av ,40.009959,-75.156104,,,1, +2676,17th St & Erie Av ,40.009745,-75.155987,,,1, +2677,17th St & Fairmount Av,39.967237,-75.165421,,,1, +2678,17th St & Federal St ,39.936621,-75.172063,,,1, +2679,17th St & Fitzwater St ,39.942535,-75.170802,,,1, +2681,17th St & Green St ,39.964463,-75.166034,,,1, +2682,17th St & Hamilton St - MBNS,39.961671,-75.166647,,,1, +2684,17th St & Indiana Av,39.998755,-75.158841,,,1, +2685,17th St & Jackson St ,39.923891,-75.174824,,,1, +2686,17th St & Jefferson St ,39.976551,-75.163391,,,1, +2687,17th St & JFK Blvd ,39.954061,-75.168304,,,1, +2688,17th St & Johnston St ,39.916219,-75.176503,,,1, +2689,17th St & Lehigh Av ,39.994883,-75.159388,,,1, +2692,17th St & Lombard St ,39.945372,-75.17019,,,1, +2694,17th St & Master St ,39.975177,-75.163703,,,1, +2695,17th St & McKean St ,39.926344,-75.174284,,,1, +2696,17th St & Mifflin St ,39.927566,-75.17402,,,1, +2697,17th St & Montgomery Av ,39.98093,-75.162428,,,1, +2698,17th St & Moore St ,39.928788,-75.173744,,,1, +2699,17th St & Morris St ,39.930011,-75.173527,,,1, +2700,17th St & Moyamensing Av ,39.915665,-75.17621,,,1, +2701,17th St & Norris St ,39.983848,-75.161792,,,1, +2702,17th St & Ontario St ,40.005159,-75.156985,,,1, +2703,17th St & Oregon St ,39.917629,-75.176215,,,1, +2704,17th St & Oxford St ,39.977978,-75.16309,,,1, +2706,17th St & Porter St ,39.920171,-75.175651,,,1, +2707,17th St & Race St ,39.956925,-75.167691,,,1, +2708,17th St & Reed St ,39.93365,-75.172723,,,1, +2709,17th St & Ridge Av ,39.970609,-75.164724,,,1, +2710,17th St & Ritner St ,39.921384,-75.17534,,,1, +2711,17th St & Sedgley Av ,39.996747,-75.158966,,,1, +2712,17th St & Sedgley Av - FS,39.996667,-75.158826,,,1, +2713,17th St & Shunk St ,39.918931,-75.175939,,,1, +2715,17th St & South St ,39.944364,-75.170382,,,1, +2718,17th St & Susquehanna Av ,39.987032,-75.161106,,,1, +2720,17th St & Tasker St ,39.931233,-75.173275,,,1, +2721,17th St & Thompson St ,39.973901,-75.163967,,,1, +2722,17th St & Tioga St ,40.006845,-75.156755,,,1, +2723,17th St & Tioga St ,40.00663,-75.156672,,,1, +2724,17th St & Venango St ,40.008299,-75.156417,,,1, +2725,17th St & Venango St ,40.008148,-75.156336,,,1, +2726,17th St & Vine St ,39.958834,-75.167271,,,1, +2727,17th St & Wallace St ,39.965828,-75.165734,,,1, +2729,17th St & Westmoreland St ,40.00383,-75.157427,,,1, +2730,17th St & Westmoreland St ,40.00365,-75.157302,,,1, +2731,17th St & Wharton St ,39.934881,-75.172435,,,1, +2732,17th St & Wolf St ,39.922633,-75.175088,,,1, +2733,17th St & York St ,39.990065,-75.160421,,,1, +2740,19th St & Berks St,39.982605,-75.165152,,,1, +2742,19th St & Brown St,39.968975,-75.168285,,,1, +2743,19th St & Callowhill St,39.960678,-75.170063,,,1, +2749,19th St & Diamond St,39.985656,-75.164479,,,1, +2751,19th St & Fairmount Av,39.967289,-75.168657,,,1, +2754,19th St & Green St,39.964871,-75.169162,,,1, +2755,19th St & Hamilton St,39.962132,-75.169751,,,1, +2756,19th St & Jefferson St,39.976789,-75.166426,,,1, +2761,19th St & Master St,39.975424,-75.166726,,,1, +2764,19th St & Montgomery Av,39.981176,-75.165466,,,1, +2767,19th St & Norris St,39.98414,-75.164804,,,1, +2769,19th St & Oxford St,39.978199,-75.166113,,,1, +2770,19th St & Parrish St,39.970045,-75.168045,,,1, +2773,19th St & Poplar St,39.97125,-75.167804,,,1, +2780,19th St & Spring Garden St,39.963569,-75.169462,,,1, +2783,19th St & Thompson St - MBNS,39.974015,-75.167026,,,1, +2784,19th St & Vine St,39.959197,-75.170411,,,1, +2793,1st Av & American Av,40.096391,-75.399434,,,8, +2795,1st Av & Moore Rd,40.095206,-75.410735,,,8, +2799,20th St & Ben Franklin Pkwy,39.958695,-75.172027,,,1, +2801,20th St & Brown St,39.96896,-75.169726,,,1, +2802,20th St & Callowhill St,39.960717,-75.17154,,,1, +2807,20th St & Fairmount Av,39.967149,-75.170099,,,1, +2811,20th St & Green St,39.964892,-75.170615,,,1, +2812,20th St & Hamilton St,39.962171,-75.171204,,,1, +2814,20th St & Hunting Park Av ,40.012549,-75.160763,,,1, +2821,20th St & Market St,39.95392,-75.173194,,,7, +2828,20th St & Parrish St,39.970093,-75.169486,,,1, +2834,20th St & Poplar St,39.971313,-75.169213,,,1, +2836,20th St & Race St,39.957345,-75.172331,,,1, +2843,22nd St & Venango St,40.009451,-75.164651,,,1, +2846,22nd St & Westmoreland St,40.004955,-75.165625,,,1, +2847,22nd St & Westmoreland St,40.004743,-75.165531,,,1, +2850,22nd St & Winter St,39.959083,-75.17549,,,1, +2852,22nd St & York St,39.991118,-75.16863,,,1, +2854,23rd St & Aspen St,39.968569,-75.175197,,,1, +2863,23rd St & Green St,39.96567,-75.175821,,,1, +2880,27th St & Parrish St - relocate,39.971535,-75.180939,,,1, +2885,29th St & Cambria St,40.000178,-75.177968,,,1, +2886,29th St & Cecil B Moore Av,39.981685,-75.18186,,,1, +2887,29th St & Cecil B Moore Av,39.981845,-75.181942,,,1,0 +2888,29th St & Chalmers Av,39.998697,-75.178292,,,1, +2889,29th St & Clearfield St,40.003167,-75.177319,,,1, +2890,29th St & Cumberland St,39.993808,-75.179124,,,1, +2891,29th St & Jefferson St,39.979017,-75.182578,,,1, +2892,29th St & Lehigh Av,39.996868,-75.178452,,,1, +2893,29th St & Lehigh Av,39.997065,-75.178628,,,1, +2895,29th St & Master St,39.977626,-75.18289,,,1, +2896,29th St & Montgomery Av,39.983197,-75.181505,,,1, +2899,29th St & Ogden St - FS,39.972353,-75.184019,,,1, +2900,29th St & Oxford St,39.980221,-75.182172,,,1, +2901,29th St & Oxford St,39.98048,-75.182254,,,1, +2902,29th St & Pennsylvania Av,39.971408,-75.184235,,,1, +2903,29th St & Poplar St,39.973263,-75.183838,,,1, +2906,29th St & Susquehanna Av,39.989259,-75.180215,,,1, +2907,29th St & Susquehanna Av,39.989428,-75.180298,,,1, +2908,29th St & Thompson St,39.97635,-75.183166,,,1, +2910,29th St & York St,39.992265,-75.179461,,,1, +3024,16th St & Cherry St,39.95561,-75.166137,,,1, +3026,16th St & Cumberland St ,39.991177,-75.158421,,,1, +3027,16th St & Dauphin St ,39.988065,-75.159119,,,1, +3028,16th St & Diamond St ,39.985056,-75.159779,,,1, +3029,16th St & Dickinson St ,39.931995,-75.171312,,,1, +3030,16th St & Ellsworth St ,39.937197,-75.17016,,,1, +3031,16th St & Fairmount Av,39.967019,-75.163686,,,1, +3032,16th St & Federal St ,39.936153,-75.170376,,,1, +3033,16th St & Fitzwater St ,39.942129,-75.169114,,,1, +3035,16th St & Mt Vernon St ,39.964762,-75.164178,,,1, +3036,16th St & Hamilton St,39.961273,-75.164923,,,1, +3037,16th St & Jackson St ,39.923522,-75.173161,,,1, +3038,16th St & Jefferson St ,39.976136,-75.161703,,,1, +3040,16th St & JFK Blvd ,39.953654,-75.166569,,,1, +3042,16th St & Locust St ,39.948535,-75.167698,,,1, +3044,16th St & Master St ,39.974772,-75.162003,,,1, +3045,16th St & McKean St ,39.925948,-75.172609,,,1, +3046,16th St & Mifflin St ,39.927134,-75.172321,,,1, +3047,16th St & Montgomery Av ,39.980542,-75.160741,,,1, +3048,16th St & Moore St ,39.928392,-75.172045,,,1, +3049,16th St & Morris St ,39.929614,-75.171781,,,1, +3051,16th St & Norris St ,39.983528,-75.160092,,,1, +3052,16th St & Oregon Av ,39.917125,-75.174553,,,1, +3053,16th St & Oxford St ,39.977564,-75.161402,,,1, +3055,16th St & Poplar St ,39.970402,-75.162909,,,1, +3056,16th St & Porter S,39.919739,-75.173977,,,1, +3057,16th St & Race St,39.956528,-75.165945,,,1,0 +3058,16th St & Reed St ,39.933208,-75.171059,,,1, +3059,16th St & Ridge Av ,39.968971,-75.16324,,,1, +3060,16th St & Ritner St ,39.921024,-75.173713,,,1, +3061,16th St & Shunk St ,39.918472,-75.174253,,,1, +3063,16th St & South St ,39.943986,-75.168695,,,1, +3064,16th St & Spruce St ,39.947322,-75.167951,,,1, +3066,16th St & Susquehanna Av ,39.986653,-75.159442,,,1, +3067,16th St & Tasker St ,39.930774,-75.171576,,,1, +3068,16th St & Thompson St ,39.973505,-75.16228,,,1, +3069,16th St & Walnut St ,39.949642,-75.167482,,,1, +3072,16th St & Wharton St ,39.934494,-75.170748,,,1, +3073,16th St & Wolf St ,39.922255,-75.173437,,,1, +3074,16th St & York St ,39.989669,-75.158746,,,1, +3075,17th St & Allegheny Av ,40.002099,-75.157647,,,1, +3076,17th St & Arch St ,39.955096,-75.168076,,,1, +3077,17th St & Bainbridge St ,39.943499,-75.170574,,,1, +3078,17th St & Ben Franklin Pkwy ,39.956077,-75.167872,,,1, +3079,17th St & Berks St ,39.98242,-75.162116,,,1, +3080,17th St & Brown St ,39.968566,-75.165133,,,1, +3081,17th St & Callowhill St ,39.960279,-75.166935,,,1, +3092,21st St & Arch St,39.955931,-75.174675,,,1, +3098,21st St & Race St,39.957742,-75.174267,,,1, +3101,21st St & Susquehanna Av,39.98768,-75.167591,,,1, +3103,21st St & Winter St - FS,39.958892,-75.174026,,,1, +3105,22nd St & Allegheny Av,40.003349,-75.165974,,,1, +3107,22nd St & Ben Franklin Pkwy,39.960814,-75.175141,,,1, +3108,22nd St & Berks St,39.983464,-75.170347,,,1, +3109,22nd St & Cambria St,39.99862,-75.16683,,,1, +3110,22nd St & Cambria St,39.99879,-75.166948,,,1, +3112,22nd St & Cecil B Moore Av,39.98044,-75.170984,,,1, +3115,22nd St & Clearfield Av,40.001743,-75.166322,,,1, +3116,22nd St & Clearfield St,40.001573,-75.166193,,,1, +3119,22nd St & Cumberland St,39.992751,-75.168293,,,1, +3120,22nd St & Dauphin St,39.989628,-75.168978,,,1, +3121,22nd St & Diamond St,39.986479,-75.169686,,,1, +3124,22nd St & Fairmount Av,39.967201,-75.173678,,,1, +3128,22nd St & Fox St,40.000548,-75.166587,,,1, +3129,22nd St & Green St,39.96531,-75.174098,,,1, +3131,22nd St & Huntingdon St,39.993948,-75.167863,,,1, +3132,22nd St & Huntingdon St,39.994098,-75.167993,,,1, +3133,22nd St & Indiana Av,40.000092,-75.166517,,,1, +3142,22nd St & Montgomery Av,39.981974,-75.17066,,,1, +3145,22nd St & Mt Vernon St,39.966121,-75.173918,,,1, +3146,22nd St & Norris St,39.984954,-75.170011,,,1, +3148,22nd St & Ontario St,40.006257,-75.165183,,,1, +3149,22nd St & Ontario St,40.006427,-75.165312,,,1, +3155,22nd St & Race St,39.957754,-75.175755,,,1, +3158,22nd St & Ridge Av,39.979931,-75.171092,,,1, +3160,22nd St & Sedgley Av,39.992483,-75.168188,,,1, +3163,22nd St & Somerset St,39.997113,-75.167178,,,1, +3167,22nd St & Spring Garden St,39.963918,-75.17441,,,1, +3168,22nd St & Susquehanna Av,39.988032,-75.169362,,,1, +3170,22nd St & Tioga St,40.007747,-75.164858,,,1, +3171,22nd St & Tioga St,40.007916,-75.164988,,,1, +3189,26th St & Clearfield St,40.002569,-75.172724,,,1, +3195,29th St & Diamond St,39.987724,-75.18054,,,1, +3196,29th St & Diamond St,39.987912,-75.180645,,,1, +3198,29th St & Huntingdon St,39.995298,-75.178812,,,1, +3201,29th St & Jefferson St,39.978821,-75.182473,,,1, +3210,Market St & 2nd St - 1 MBNS,39.950017,-75.143237,,,1, +3492,Arch St & 4th St - FS,39.952444,-75.147018,,,1, +3555,52nd St & City Av - FS,39.997769,-75.233088,,,1, +3566,52nd St & Overbrook Av,39.995615,-75.231605,,,1, +3574,52nd St & Chestnut St,39.958406,-75.225142,,,1, +3582,Market St & 5th St,39.950592,-75.148761,,,1,0 +3738,Allegheny Av & Fox St,40.003721,-75.168844,,,1, +3739,Allegheny Av & Frankford Av,39.992965,-75.110171,,,1, +3740,Allegheny Av & Front St,39.998607,-75.12917,,,1, +3742,Allegheny Av & G St,39.996815,-75.115353,,,1, +3743,Allegheny Av & Gaul St,39.987061,-75.104963,,,1, +3744,Allegheny Av & Germantown Av,40.001034,-75.148044,,,1, +3747,Allegheny Av & Janney St,39.990397,-75.107913,,,1, +3826,63rd St & City Line Av,39.989727,-75.250644,,,1, +3834,63rd St & Overbrook Av,39.988306,-75.249738,,,1, +3838,63rd St & Sherwood Rd,39.987359,-75.248972,,,1, +3839,63rd St & Woodbine Av - FS,39.985831,-75.247547,,,1, +3866,66th St & Lebanon Av - MBFS,39.97835,-75.252551,,,1, +3869,66th St & Haddington St,39.975663,-75.252026,,,1, +3871,66th St & Lansdowne Av - FS,39.974752,-75.251886,,,1, +3872,66th St & Lebanon Av,39.976627,-75.252224,,,1, +3873,66th St & Malvern Av,39.979458,-75.253351,,,1, +3914,Allegheny Av & 6th St,40.000044,-75.14039,,,1, +3939,Ogontz Av & 74th Av,40.066947,-75.156206,,,1, +4327,Allegheny Av & 13th St,40.001388,-75.150595,,,1, +4328,Allegheny Av & 15th St,40.001851,-75.154422,,,1, +4329,Allegheny Av & 16th St,40.00206,-75.155993,,,1, +4330,Allegheny Av & 17th St,40.002269,-75.157575,,,1, +4331,Allegheny Av & 19th St,40.002668,-75.160729,,,1, +4332,Allegheny Av & 20th St,40.002868,-75.162312,,,1, +4333,Allegheny Av & 21st St,40.003113,-75.164166,,,1, +4334,Allegheny Av & 22nd St,40.003322,-75.165773,,,1, +4335,Allegheny Av & 23rd St,40.003521,-75.167415,,,1, +4337,Allegheny Av & 25th St,40.003939,-75.17058,,,1, +4339,Allegheny Av & 27th St,40.004249,-75.173959,,,1, +4340,Allegheny Av & 28th St,40.004519,-75.175175,,,1, +4341,29th St & Allegheny Av - FS,40.004514,-75.177031,,,1, +4342,Allegheny Av & 2nd St,39.999108,-75.133127,,,1, +4344,Allegheny Av & Napa St,40.005181,-75.18029,,,1, +4345,Allegheny Av & 32nd St,40.005335,-75.181566,,,1, +4346,Allegheny Av & 33rd St,40.005544,-75.183231,,,1, +4349,Allegheny Av & 34th St,40.005761,-75.184779,,,1, +4350,Allegheny Av & 35th St,40.00596,-75.186362,,,1, +4351,Allendale Rd & 3rd Av - FS,40.101229,-75.39806,,,8, +4352,Allegheny Av & 7th St,40.000253,-75.142056,,,1, +4353,Allegheny Av & Glenwood Av - FS,40.000908,-75.1434,,,1, +4354,Allegheny Av & A St,39.998344,-75.127245,,,1, +4355,Allegheny Av & Almond St,39.985522,-75.103611,,,1, +4356,Allegheny Av & Aramingo Av,39.988501,-75.106244,,,1, +4357,Allegheny Av & B St,39.998098,-75.125332,,,1, +4358,Allegheny Av & Belgrade St,39.986264,-75.104258,,,1, +4359,Allegheny Av & C St,39.997798,-75.123112,,,1, +4360,Allegheny Av & Collins St,39.991891,-75.109242,,,1, +4361,Allegheny Av & D St,39.997562,-75.121163,,,1, +4362,Allegheny Av & E St,39.997316,-75.119226,,,1, +4365,Allegheny Av & F St,39.99707,-75.117301,,,1, +4366,Allegheny Av & Jasper St,39.995156,-75.11211,,,1, +4367,Allegheny Av & Kensington Av,39.996453,-75.113263,,,1, +4373,Allegheny Av & Lippincott St,40.002478,-75.159347,,,1, +4379,Allendale Rd & 1st Av - MBFS,40.099157,-75.395126,,,8, +4459,Arch St & 10th St,39.953598,-75.156166,,,1, +4460,Arch St & 12th St,39.953971,-75.159318,,,1, +4461,Arch St & 13th St,39.95417,-75.160876,,,1, +4462,Arch St & 15th St,39.954652,-75.164676,,,1, +4463,Arch St & 17th St,39.955051,-75.167875,,,1, +4464,Arch St & 19th St,39.955459,-75.171039,,,1, +4465,Arch St & 20th St,39.95565,-75.172609,,,1, +4467,Arch St & 3rd St,39.952208,-75.145082,,,1, +4469,Arch St & 5th St,39.952617,-75.14834,,,1, +4470,Arch St & 6th St,39.952816,-75.149804,,,1, +4471,Arch St & 7th St,39.952999,-75.151456,,,1, +4472,Arch St & 8th St,39.953171,-75.152944,,,1, +4474,Arch St & Broad St,39.954416,-75.16287,,,1, +4549,Aspen st & 24th St,39.968715,-75.176543,,,1, +4550,Apsen St & 25th St,39.968941,-75.178125,,,1, +4557,Aspen St & Taney St,39.969223,-75.180557,,,1, +4599,Baltimore Pike & Edgmont St,39.91636,-75.385701,,,1, +4614,Baltimore Pike & Lemon St,39.917648,-75.394931,,,1, +4628,Baltimore Pike & Olive St,39.917129,-75.391119,,,1, +4630,Baltimore Pike & Orange St - FS,39.917442,-75.393467,,,1, +4636,Baltimore Pike & Pine Ridge Rd - FS,39.913792,-75.370383,,,1, +4638,Baltimore Pike & Radnor St,39.916136,-75.384096,,,1, +4649,Baltimore Pike & South Av - FS,39.917308,-75.392476,,,1, +4656,Baltimore Pk & Stoney Bank Rd - FS,39.897185,-75.48652,,,1, +4659,Baltimore Pk & Pennell Rd - MBFS,39.910021,-75.446663,,,1, +4663,Baltimore Pike & Turner Rd - FS,39.913407,-75.366748,,,1, +4666,Baltimore Pike & Manchester Av,39.915966,-75.382786,,,1,0 +4667,Baltimore Pike & Wallingford Rd,39.913436,-75.354403,,,1, +4726,Bartram Av Station,39.914605,-75.284222,,,1, +5131,Broad St & Arch St,39.954524,-75.163295,,,1, +5135,Broad St & Bainbridge St,39.942721,-75.165653,,,1, +5140,Broad St & Bigler St ,39.914398,-75.172013,,,1, +5144,Broad St & Brown St,39.967958,-75.160363,,,1, +5150,Broad St & Carpenter St,39.938858,-75.166482,,,1, +5152,Broad St & Catherine St,39.940741,-75.166074,,,1, +5166,Broad St & Christian St,39.939974,-75.166242,,,1, +5169,Broad St & Clearfield St - FS,39.999869,-75.153341,,,1, +5195,Broad St & Fitzwater St,39.941749,-75.165846,,,1, +5221,Broad St & Jackson St ,39.923247,-75.170034,,,1, +5229,Broad St & Locust St,39.948145,-75.164476,,,1, +5233,Broad St & Lombard St,39.944568,-75.165233,,,1, +5239,Castor Av & Benner St ,40.035629,-75.081003,,,1, +5252,Broad St & Master St ,39.974577,-75.158885,,,1, +5273,Broad St & Oxford St - FS,39.977111,-75.158285,,,1, +5277,Broad St & Parrish St - FS,39.96885,-75.160171,,,1, +5281,Broad St & Pine St,39.945486,-75.165029,,,1, +5287,Broad St & Porter St ,39.919536,-75.17085,,,1, +5296,Broad St & Ritner St ,39.920794,-75.170574,,,1, +5305,Broad St & Shunk St ,39.918243,-75.171126,,,1, +5308,Broad St & Snyder Av,39.924496,-75.169769,,,1, +5318,Broad St & Spruce St,39.946923,-75.164729,,,1, +5328,Broad St & Thompson St ,39.973275,-75.159221,,,1, +5369,Brown St & 23rd St,39.969685,-75.17498,,,1, +5370,Brown St & 24th St,39.969857,-75.176503,,,1, +5371,Brown St & 25th St,39.970066,-75.178121,,,1, +5372,Brown St & 26th St,39.970274,-75.179714,,,1, +5373,Brown St & 28th St,39.970637,-75.182725,,,1, +5597,Cambria St & Almond St,39.981642,-75.11145,,,1, +5598,Cambria St & Amber St,39.98868,-75.116948,,,1, +5600,Cambria St & Belgrade St,39.982358,-75.112084,,,1, +5601,Cambria St & Edgemont St,39.980264,-75.110227,,,1, +5602,Cambria St & Emerald St,39.990567,-75.118606,,,1, +5604,Cambria St & Gaul St,39.983154,-75.112778,,,1, +5605,Cambria St & Jasper St,39.991524,-75.11944,,,1, +5606,Cambria St & Thompson St,39.98081,-75.110721,,,1, +5607,Cambria St & Trenton Av,39.987401,-75.115843,,,1, +5608,Cambria St & Tulip St,39.985987,-75.114573,,,1, +5622,Castor Av & Devereaux Av ,40.036858,-75.079826,,,1, +5626,Castor Av & Hellerman St ,40.040561,-75.076237,,,1, +5632,Castor Av & Knorr St ,40.044281,-75.07266,,,1, +5635,Castor Av & Longshore Av ,40.045528,-75.071459,,,1, +5641,Castor Av & Princeton Av ,40.047993,-75.069082,,,1, +5642,Castor Av & Robbins Av,40.038077,-75.078638,,,1, +5646,Castor Av & Saint Vincent St ,40.049248,-75.067882,,,1, +5648,Castor Av & Tyson Av ,40.046711,-75.070295,,,1, +5746,Champlost Av & 16th St,40.0448,-75.146878,,,1, +5748,Champlost Av & 17th St,40.044875,-75.148451,,,1, +5751,Champlost Av & Broad St,40.044374,-75.143593,,,1, +5755,Champlost Av & Ogontz Av - FS,40.044922,-75.149456,,,1, +5756,Champlost Av & Ogontz Av,40.04503,-75.149526,,,1, +5757,Champlost Av & Old York Rd,40.044522,-75.144714,,,1, +5805,Chelten Av & Germantown Av - FS,40.035445,-75.175231,,,1,0 +5909,Chemical Rd & Gallagher Rd - FS,40.100899,-75.293026,,,1, +5910,Chemical Rd & Metroplex Dr,40.102691,-75.291425,,,1, +6057,Chestnut St & 11th St,39.950168,-75.158765,,,1, +6058,Chestnut St & 12th St,39.950349,-75.160311,,,1, +6059,Chestnut St & 13th St,39.95054,-75.161858,,,7, +6060,Chestnut St & 15th St,39.951012,-75.165694,,,1, +6061,Chestnut St & 17th St,39.951394,-75.168857,,,1, +6062,Chestnut St & 18th St,39.95162,-75.170439,,,1, +6064,Chestnut St & 20th St,39.952001,-75.173555,,,1, +6065,Chestnut St & 21st St,39.952228,-75.175479,,,1, +6066,Chestnut St & 22nd St - FS,39.952401,-75.176754,,,1,0 +6067,Chestnut St & 23rd St,39.952591,-75.178276,,,1, +6111,Chestnut St & 6th St,39.949187,-75.150916,,,1, +6112,Chestnut St & 7th St,39.949377,-75.152486,,,1, +6113,Chestnut St & 8th St,39.949568,-75.154068,,,1, +6114,Chestnut St & 9th St,39.949768,-75.155661,,,1, +6115,Chestnut St & Broad St,39.950804,-75.164018,,,7, +6232,City Av & Bryn Mawr Av ,39.999024,-75.231017,,,1, +6233,City Av & Conshohocken Av - FS,40.00147,-75.225834,,,1, +6234,City Av & Decker Blvd - FS,40.006299,-75.215468,,,1, +6236,City Av & 47th St - FS,40.00244,-75.224023,,,1, +6237,City Av & 47th St - FS,40.002653,-75.223302,,,1, +6239,City Av & 53rd St,39.997449,-75.234365,,,1,0 +6248,Clity Av & Berwick Rd - FS,39.993001,-75.243889,,,1, +6249,City Av & Overbrook Av,39.991044,-75.248018,,,1, +6250,City Av & Cardinal Av,39.994042,-75.241653,,,1, +6251,City Av & Kings Grant Dr - MBFS,40.005072,-75.218001,,,1, +6252,City Av & Decker Blvd - FS,40.00614,-75.216378,,,1, +6255,City Av & Kings Grant Dr,40.005242,-75.218284,,,1, +6257,City Av & Lapsley Ln,39.995234,-75.239098,,,1, +6259,City Av & Oakland Ter,39.997681,-75.23414,,,1, +6260,City Av & Orchard Rd,39.996044,-75.237359,,,1, +6287,Clearfield St & 27th St,40.002741,-75.174059,,,1, +6423,Cottman Av & Algon Av,40.055333,-75.073421,,,1, +6426,Cottman Av & Bingham St - FS,40.060571,-75.082454,,,1, +6446,Cottman Av & Frontenac St - FS,40.053288,-75.069871,,,1, +6447,Cottman Av & Hanford St - FS,40.046514,-75.057762,,,1, +6451,Cottman Av & Hasbrook Av - FS,40.064193,-75.088622,,,1, +6454,Cottman Av & Horrocks St,40.049134,-75.062301,,,1, +6461,Cottman Av & Loretto Av,40.052149,-75.067879,,,1, +6463,Cottman Av & Montour St - FS,40.058356,-75.078633,,,1, +6467,Cottman Av & Pennway St,40.056373,-75.075178,,,1, +6478,Cottman Av & Rupert St,40.045653,-75.056264,,,1, +6484,Cottman Av & Glendale Av,40.054319,-75.07138,,,1, +6675,DeKalb Pk & Allendale Rd,40.088647,-75.38156,,,6, +6678,DeKalb Pk & Brandywine Ln,40.091545,-75.373122,,,6, +6694,DeKalb Pk & King Cr - FS,40.092311,-75.370873,,,6, +6698,DeKalb Pk & Wilson Rd ,40.086748,-75.38517,,,6, +6707,DeKalb Pk & Henderson Rd - MBNS,40.093799,-75.365347,,,6, +6712,DeKalb Pk & Town Center Rd - MBNS,40.093015,-75.367879,,,6, +6770,Diamond St & 21st St,39.986253,-75.16788,,,1, +6840,Dupont St & Lawnton St - MBFS,40.036639,-75.212079,,,1, +6841,Dupont St & Henry Av,40.03743,-75.21048,,,1, +6842,Dupont St & Lawnton St,40.035785,-75.213878,,,1, +6936,Easton Rd & 309 - MBNS,40.08453,-75.168928,,,1, +7360,1st Av & American Av,40.095704,-75.400949,,,8, +7361,1st Av & Moore Rd - FS,40.094939,-75.410747,,,8, +7363,1st Av & Arkema Bldg,40.095402,-75.403943,,,8, +7365,1st Av & Allendale Rd - MBNS,40.097283,-75.396985,,,8, +7523,Frankford Av & Grant Av - FS,40.060603,-74.989991,,,1, +7657,Market St & Front St,39.949613,-75.142247,,,1, +7726,Swedesford Rd & Drummers Ln - FS,40.080961,-75.410916,,,6, +7733,Swedesford Rd & IBM Building,40.078249,-75.417482,,,6, +7734,Swedesford Rd & IBM Building,40.07857,-75.417199,,,6, +7741,Swedesford Rd & Gateway Shop Ctr,40.072868,-75.43182,,,6,0 +7742,Swedesford Rd & South Warner Rd - FS,40.082049,-75.403463,,,6, +8159,Greenwood Av & Glenside Av - FS temp relocated,40.092337,-75.138905,,,1, +8164,Glenside Av & Keswick Av ,40.099369,-75.150189,,,1, +8165,Glenside Av & Hewett Rd ,40.095191,-75.141816,,,1, +8168,Glenside Av & Rices Mill Rd ,40.097762,-75.146291,,,1, +8345,South Gulph Rd & Brooks Rd,40.081344,-75.375224,,,8, +8346,South Gulph Rd & Church Rd,40.080914,-75.373403,,,8, +8347,South Gulph Rd & Crooked Ln,40.074233,-75.346875,,,8, +8349,South Gulph Rd & Valley View Rd - MBFS,40.078617,-75.365668,,,8, +8351,South Gulph Rd & Gypsy Ln,40.073401,-75.345291,,,1, +8354,South Gulph Rd & Lewis Rd - FS,40.077249,-75.360653,,,8, +8355,South Gulph Rd & Long Rd - FS,40.082649,-75.380665,,,8, +8356,South Gulph Rd & Orchard Rd,40.079404,-75.368211,,,8, +8505,Henderson Rd & Franklin Maps,40.089136,-75.358843,,,6, +8508,Henderson Rd & Monroe Rd - FS,40.092699,-75.361325,,,6, +8510,Henderson Rd & Shoemaker Rd - FS,40.081486,-75.356875,,,6,0 +8513,Henderson Rd & GulphMills Village Dr - FS,40.078941,-75.354926,,,6, +8517,Henry Av & Cinnaminson St,40.049076,-75.219904,,,1,0 +8521,Henry Av & Crease Ln,40.047154,-75.217912,,,1, +8523,Henry Av & Gates St,40.04023,-75.213936,,,1, +8524,Henry Av & Gates St - MBNS,40.041653,-75.216379,,,1, +8525,Henry Av & Valley Green Ct,40.050043,-75.222018,,,1, +8528,Henry Av & Hermitage St,40.039425,-75.213146,,,1, +8531,Henry Av & Wigard Av - FS,40.052649,-75.227048,,,1, +8533,Henry Av & Leverington Av,40.038432,-75.211683,,,1, +8534,Henry Av & Livezey Ln,40.046154,-75.217891,,,1, +8538,Henry Av & Palairet Rd,40.054701,-75.232175,,,1, +8543,Henry Av & Seffert St - FS,40.059579,-75.235059,,,1, +8545,Henry Av & Valley Av,40.044431,-75.217884,,,1, +8546,Henry Av & Cheswick Rd - MBFS,40.055871,-75.232609,,,1, +8549,Henry Av & Wigard Av,40.05273,-75.22777,,,1, +8550,Henry Av & Wises Mill Rd,40.053709,-75.231244,,,1, +8704,Huntingdon St & 17th St ,39.993027,-75.15956,,,1, +8709,Hunting Park Av & 19th St,40.013544,-75.158809,,,1, +8712,Hunting Park Av & 22nd St,40.010923,-75.164504,,,1, +8928,Jenkintown Rd & Hillcrest,40.087525,-75.116457,,,1, +8936,JFK Blvd & 17th St,39.954043,-75.168139,,,7, +8938,JFK Blvd & 18th St,39.954234,-75.169638,,,7, +8939,JFK Blvd & 19th St,39.954433,-75.171267,,,7, +8941,JFK Blvd & 20th St,39.954597,-75.17279,,,1, +8970,Kensington Av & Cambria St,39.99258,-75.120405,,,1, +8986,Kensington Av & Lehigh Av,39.989941,-75.12539,,,1, +9267,Lansdowne Av & 67th St,39.974345,-75.253872,,,1, +9268,Lansdowne Av & 68th St,39.974195,-75.255337,,,1, +9269,Lansdowne Av & 68th St,39.974329,-75.255065,,,1, +9292,Lansdowne Av & Haverford Av - MBFS,39.973992,-75.257133,,,1, +9342,Lehigh Av & 12th St,39.993401,-75.150957,,,1, +9343,Lehigh Av & 13th St,39.993592,-75.152516,,,1, +9344,Lehigh Av & 15th St,39.994091,-75.156354,,,1, +9345,Lehigh Av & 16th St,39.994291,-75.157925,,,1, +9346,Lehigh Av & 17th St,39.994499,-75.159496,,,1, +9347,Lehigh Av & 18th St,39.99469,-75.161078,,,1, +9348,Lehigh Av & 19th St,39.99489,-75.162625,,,1, +9349,Lehigh Av & 20th St,39.995116,-75.164231,,,1, +9351,Lehigh Av & 21st St,39.995334,-75.166109,,,1, +9352,Lehigh Av & 22nd St,39.995561,-75.167704,,,1, +9353,Lehigh Av & 23rd St,39.99577,-75.169286,,,1, +9355,Lehigh Av & 25th St,39.996169,-75.172464,,,1, +9356,Lehigh Av & 26th St,39.996377,-75.174082,,,1, +9357,Lehigh Av & 27th St,39.99655,-75.175664,,,1, +9358,Lehigh Av & 28th St,39.996749,-75.177082,,,1, +9359,Lehigh Av & 2nd St,39.991481,-75.134742,,,1, +9361,Lehigh Av & 30th St,39.99722,-75.180306,,,1, +9362,Lehigh Av & 3rd St,39.991816,-75.137174,,,1, +9363,Lehigh Av & 4th St,39.991962,-75.138202,,,1, +9364,Lehigh Av & 6th St,39.99231,-75.1423,,,1, +9365,Lehigh Av & 8th St,39.992701,-75.145241,,,1, +9366,Lehigh Av & 8th St,39.992834,-75.14498,,,1, +9367,Lehigh Av & 9th St,39.992819,-75.146209,,,1, +9368,Lehigh Av & A St,39.990575,-75.129086,,,1, +9374,Lehigh Av & B St,39.990329,-75.127137,,,1, +9375,Lehigh Av & Broad St,39.993882,-75.154712,,,1, +9377,Lehigh Av & Front St,39.990962,-75.130774,,,1, +9378,Lehigh Av & Germantown Av - FS,39.992983,-75.147685,,,1, +9380,Lehigh Av & Lawrence St,39.991947,-75.139383,,,1, +9382,Lehigh Av & Mascher St,39.991208,-75.132746,,,1, +9392,Leverington Av & Lawnton St,40.037045,-75.214537,,,1, +9898,Lyceum Av & Mitchell St,40.031844,-75.216207,,,1, +9899,Lyceum Av & Pechin St,40.030909,-75.2177,,,1, +9933,MacDade Blvd & Dalmas Av - FS,39.902073,-75.298609,,,1, +9934,MacDade Blvd & Dalmas Av,39.902234,-75.298656,,,1, +9941,MacDade Blvd & Gardner Av,39.904175,-75.294357,,,1, +9948,MacDade Blvd & Knowles Av,39.903177,-75.296152,,,1, +9949,MacDade Blvd & Knowles Av,39.9034,-75.296022,,,1, +10011,Magnolia Av Station,39.919517,-75.287045,,,1, +10185,Malvern Av & 65th St,39.980671,-75.252581,,,1, +10188,Malvern Av & 64th St - MBFS,39.982193,-75.249765,,,1, +10189,Malvern Av & Wynnewood Rd,39.982834,-75.248476,,,1, +10200,Manayunk Av & Hermit St,40.021493,-75.212042,,,1, +10201,Manayunk Av & Kingsley St,40.02404,-75.213996,,,1, +10205,Manayunk Av & Monastery Av,40.028956,-75.218131,,,1, +10206,Manayunk Av & Pennsdale St,40.02622,-75.215669,,,1, +10207,Manayunk Av & Rector St,40.026864,-75.216151,,,1, +10208,Manayunk Av & Ridge Av,40.019714,-75.210735,,,1, +10209,Manayunk Av & Roxborough Av,40.027525,-75.216492,,,1, +10210,Manayunk Av & Salaignac St,40.020939,-75.21163,,,1, +10211,Manayunk Av & Seville St,40.022601,-75.212878,,,1, +10255,Market St & 10th St,39.951484,-75.15693,,,1, +10257,Market St & 10th St,39.951555,-75.156575,,,1, +10258,Market St & 11th St,39.951755,-75.158169,,,1,0 +10259,Market St & 11th St - MBNS,39.951775,-75.159196,,,1,0 +10262,Market St & 12th St,39.951946,-75.15975,,,1, +10263,Market St & 13th St,39.952057,-75.161592,,,1, +10264,Market St & 13th St,39.952137,-75.161308,,,1, +10266,Market St & 15th St,39.952547,-75.165475,,,7, +10272,Market St & 18th St,39.953119,-75.170173,,,7, +10275,Market St & 19th St,39.953319,-75.171731,,,7, +10279,Market St & 21st St,39.953843,-75.174918,,,7, +10281,Market St & 22nd St,39.954051,-75.176535,,,7, +10282,Market St & 23rd St,39.954187,-75.17768,,,7, +10283,Market St & 23rd St,39.954116,-75.177893,,,7, +10285,Market St & 24th St,39.95428,-75.179251,,,7, +10288,Market St & 2nd St,39.949894,-75.143852,,,1, +10311,Market St & 4th St,39.950356,-75.147145,,,1, +10329,Market St & 6th St,39.950703,-75.150544,,,1, +10331,Market St & 7th St,39.950903,-75.152149,,,1, +10338,Market St & 8th St,39.951164,-75.1534,,,1, +10340,Market St & 9th St,39.951321,-75.155572,,,1, +10341,Market St & 9th St,39.951364,-75.155029,,,1, +10485,McNulty Rd & Southampton Rd,40.109717,-74.986601,,,1, +10610,Middletown Rd & Bonsall Dr,39.918018,-75.440881,,,1, +10629,Middletown Rd & Oriole Av,39.917903,-75.435475,,,1, +10848,16th St & Moyamensing Av - FS,39.916251,-75.174768,,,1, +10849,Moyamensing Av & 17th St ,39.915317,-75.176058,,,1, +10851,Moyamensing Av & 18th St ,39.914757,-75.177429,,,1, +10909,North Gulph Rd & Freedom Busn Ctr,40.092413,-75.415918,,,8, +10910,North Gulph Rd & Guthrie Rd,40.089932,-75.413091,,,8, +10940,Nedro Av & Park Av,40.042703,-75.142807,,,1, +11055,North Warner Rd & North Gulph Rd - ,40.084994,-75.401013,,,6, +11098,Ogontz Av & 65th Av,40.053162,-75.150003,,,1, +11102,Ogontz Av & 67th Av,40.056275,-75.149553,,,1, +11103,Ogontz Av & 67th Av,40.056132,-75.149424,,,1, +11104,Ogontz Av & 68th Av,40.057578,-75.149359,,,1, +11105,Ogontz Av & 68th Av,40.057435,-75.149229,,,1, +11108,Ogontz Av & 71st Av,40.06218,-75.151659,,,1, +11111,Ogontz Av & 74th Av,40.067054,-75.156371,,,1, +11112,Ogontz Av & 76h Av,40.070011,-75.157235,,,1, +11113,Ogontz Av & 76th Av,40.069885,-75.15707,,,1, +11115,Ogontz Av & 77th Av,40.070823,-75.157481,,,1, +11117,Ogontz Av & 78th Av,40.071618,-75.157726,,,1, +11119,Ogontz Av & 79th Av,40.072484,-75.157971,,,1, +11120,Ogontz Av & 80th Av,40.073306,-75.158216,,,1, +11121,Ogontz Av & Andrews Av,40.061358,-75.151225,,,1, +11122,Ogontz Av & Andrews Av,40.061277,-75.151036,,,1, +11127,Ogontz Av & Church Ln,40.046452,-75.150821,,,1, +11128,Ogontz Av & Godfrey Av,40.048567,-75.150896,,,1, +11132,Ogontz Av & Limekiln Pk - FS,40.048242,-75.150797,,,1, +11133,Ogontz Av & Medary Av,40.049967,-75.150441,,,1, +11134,Ogontz Av & Middletown St,40.06226,-75.151848,,,1, +11135,Ogontz Av & Roselyn St,40.045754,-75.150292,,,1, +11137,Ogontz Av & Tulpehocken St,40.065088,-75.155054,,,1, +11138,Ogontz Av & Washington Ln,40.068725,-75.156873,,,1, +11217,Old York Rd & Champlost Av,40.044483,-75.144515,,,1, +11334,Old York Rd & Pavilion Dr,40.089897,-75.126504,,,1, +11422,Oregon Av & 19th St ,39.917733,-75.179473,,,1, +11468,Oregon Av & 4th St - FS,39.914594,-75.154839,,,1, +11506,Overbrook Av & 54th St,39.994851,-75.233853,,,1, +11526,Oxford Av & Bridge St ,40.028403,-75.08527,,,1, +11528,Oxford Av & Dyre St ,40.024063,-75.084428,,,1, +11552,Oxford Av & Pratt St,40.026295,-75.084819,,,1, +11623,Park Av & Chew Av,40.03975,-75.143446,,,1, +11624,Park Av & Grange St,40.041293,-75.143121,,,1, +11944,Poplar St & 28th St,39.973046,-75.182067,,,1, +12048,Providence Rd Station,39.921643,-75.288705,,,1, +12058,Pulaski Av & 17th St,40.011155,-75.155863,,,1, +12196,Richmond St & Allegheny Av,39.983071,-75.101401,,,1, +12218,Richmond St & Somerset St,39.978168,-75.110709,,,1, +12253,Ridge Av & Cathedral Rd,40.06403,-75.239423,,,1,0 +12261,Ridge Av & Osborn St - MBFS,40.016895,-75.211453,,,1, +12265,Ridge Av & Dupont St,40.034575,-75.216306,,,1, +12269,Ridge Av & Fountain St - FS,40.038004,-75.222644,,,1, +12270,Francis St & Ridge Av - FS,39.96952,-75.164244,,,1, +12274,Ridge Av & Green Ln,40.034182,-75.215917,,,1, +12275,Ridge Av & Green Ln,40.034084,-75.215964,,,1, +12278,Ridge Av & Hermit St,40.023556,-75.207757,,,1, +12289,Ridge Av & Wigard Av - MBFS,40.047395,-75.23469,,,1, +12293,Ridge Av & Jefferson St,39.977313,-75.169531,,,1, +12295,Ridge Av & Kingsley St,40.026146,-75.208931,,,1, +12296,Ridge Av & Lauriston St,40.020695,-75.209976,,,1, +12299,Leverington Av & Ridge Av,40.035675,-75.217366,,,1, +12300,Ridge Av & Leverington St ,40.035568,-75.217284,,,1, +12301,Ridge Av & Livezey St - FS,40.043117,-75.227418,,,1, +12302,Ridge Av & Lyceum Av,40.032805,-75.214384,,,1,0 +12304,Ridge Av & Manayunk Av,40.019554,-75.210677,,,1, +12305,Ridge Av & Markel St,40.02545,-75.208696,,,1, +12307,Ridge Av & Master St,39.975848,-75.168709,,,1, +12312,Ridge Av & Mitchell St,40.022602,-75.208457,,,1, +12319,Ridge Av & Osborn St,40.017689,-75.211321,,,1, +12320,Ridge Av & Oxford St,39.978957,-75.170458,,,1, +12322,Ridge Av & Parker Av ,40.04241,-75.226356,,,1, +12323,Ridge Av & Pechin St - MBFS,40.022094,-75.208955,,,1, +12324,Ridge Av & Pechin St,40.02205,-75.20918,,,1, +12329,Ridge Av & Harmon Rd - MBFS,40.047207,-75.234336,,,1, +12331,Ridge Av & Roxborough Av ,40.029881,-75.211153,,,1, +12335,Ridge Av & Seville St,40.024672,-75.208285,,,1, +12336,Ridge Av & Seville St,40.024574,-75.208084,,,1, +12342,Ridge Av & Thompson St,39.974356,-75.167888,,,1, +12345,Ridge Av & Walnut Ln - FS,40.026763,-75.209425,,,1, +12346,Ridge Av & Wigard Av ,40.048744,-75.235313,,,1, +12365,Ridge Av & Ayrdale Cresent Rd,40.07229,-75.242406,,,1, +12366,Ridge Av & Caledonia St - MBFS,40.066735,-75.24009,,,1, +12370,Ridge Av & Bells Mill Rd - FS,40.070736,-75.24118,,,1, +12372,Ridge Pk & Birch Dr,40.089902,-75.269833,,,1, +12374,Ridge Pk & Butler Pk,40.094198,-75.286803,,,1, +12375,Ridge Av & Grakyn Ln - MBNS,40.065182,-75.239917,,,1, +12389,Ridge Av & Grakyn Ln,40.065066,-75.239763,,,1, +12391,Ridge Pk & Ash Ln - MBNS,40.091937,-75.276928,,,1, +12396,Ridge Pike & Butler Pike - MBFS,40.093615,-75.283775,,,1, +12397,Ridge Av & Ivins Rd,40.06087,-75.238935,,,1, +12398,Ridge Pk & Joshua Rd - FS,40.088612,-75.265955,,,1, +12401,Ridge Pk & Birch Dr - MBNS,40.09097,-75.27383,,,1, +12408,Ridge Av & Manatawna Av,40.068414,-75.240417,,,1, +12410,Ridge Pk & Manor Rd,40.076296,-75.247316,,,1, +12411,Ridge Pk & Barren Hill Rd - MBFS,40.078952,-75.250622,,,1, +12413,Ridge Pk & Mulberry Ln,40.08759,-75.262195,,,1, +12415,Ridge Av & Northwestern Av,40.073505,-75.243172,,,1, +12438,Ridge Pk & Spring Mill Rd,40.093039,-75.280215,,,1, +12784,Manayunk Av & Roxborough Av ,40.027614,-75.216716,,,1, +12964,South Gulph Rd & Brooks Rd,40.081246,-75.375556,,,8, +12965,South Gulph Rd & Church Rd,40.080816,-75.373734,,,8, +12967,South Gulph Rd & DeKalb Pk - FS,40.084365,-75.38755,,,8, +12968,South Gulph Rd & Valley View Rd - MBNS,40.078474,-75.365763,,,8, +12970,South Gulph Rd & Henderson Rd,40.075888,-75.3539,,,8, +12972,South Gulph Rd & Lewis Rd,40.077133,-75.360902,,,8, +12973,South Gulph Rd & Long Rd - FS,40.082408,-75.380311,,,8, +12974,South Gulph Rd & Orchard Rd - FS,40.079252,-75.368305,,,8, +12976,South Gulph Rd & Universal Corp,40.079922,-75.370446,,,8, +13021,Sedgley Av & 10th St,40.001573,-75.145749,,,1, +13106,Somerset St & Amber St,39.987444,-75.118903,,,1, +13107,Somerset St & Belgrade St,39.981355,-75.113582,,,1, +13110,Somerset St & Frankford Av,39.988759,-75.120078,,,1, +13111,Somerset St & Gaul St,39.982156,-75.114263,,,1, +13112,Somerset St & Jasper St,39.990279,-75.121395,,,1, +13113,Somerset St & Thompson St,39.979771,-75.112186,,,1, +13114,Somerset St & Trenton Av,39.986093,-75.117727,,,1, +13115,Somerset St & Tulip St,39.984743,-75.116528,,,1, +13188,16th St & Spring Garden St ,39.962702,-75.164623,,,1, +13353,State Rd & Arlington Av,39.960389,-75.283798,,,1, +13357,State Rd & Beverly Blvd,39.960779,-75.281861,,,1, +13361,State Rd & Broadview Rd,39.943629,-75.330071,,,1, +13363,State Rd & Childs Av,39.951402,-75.309336,,,1, +13368,State Rd & Cornell Av,39.952799,-75.30559,,,1, +13374,State Rd & Eaton Rd,39.958077,-75.290948,,,1, +13377,State Rd & Fairfax Rd,39.957988,-75.291645,,,1, +13381,State Rd & Golf View Rd,39.940842,-75.339367,,,1, +13383,State Rd & Hampshire Rd,39.957401,-75.293217,,,1, +13387,State Rd & Hilltop Rd,39.961433,-75.276273,,,1, +13392,State Rd & Kenwood Rd,39.956573,-75.29545,,,1, +13400,State Rd & Mason Av,39.953992,-75.302387,,,1, +13401,State Rd & Meetinghouse Ln,39.939152,-75.347362,,,1, +13404,State Rd & Merion Av,39.960956,-75.280313,,,1, +13406,State Rd & Morgan Av,39.952132,-75.307409,,,1, +13407,State Rd & North State Rd,39.941244,-75.338882,,,1, +13413,State Rd & Ormond Av,39.953378,-75.304018,,,1, +13414,State Rd & Park Av,39.961221,-75.278092,,,1, +13424,State Rd & Old State Rd - MBFS,39.941911,-75.335847,,,1, +13425,State Rd & Rolling Rd,39.944903,-75.327767,,,1, +13428,State Rd & Sellers Av,39.962561,-75.272243,,,1, +13429,State Rd & Shadeland Av,39.955158,-75.299256,,,1, +13430,State Rd & Springfield Rd - FS,39.939811,-75.345036,,,1, +13435,State Rd & Turner Av,39.954615,-75.300721,,,1, +13441,State Rd & Weymouth Rd - FS,39.942427,-75.333532,,,1, +13442,State Rd & Windermere Rd,39.958735,-75.289199,,,1, +13520,Street Rd & Kingston Way,40.124528,-74.96281,,,5, +13528,Street Rd & Richlieu Rd,40.120999,-74.96191,,,5, +13534,Street Rd & Tillman Dr,40.118973,-74.960576,,,5, +13788,Township Line Rd & Alexander Av - FS,39.957694,-75.318962,,,1, +13789,Township Line Rd & Apache Rd - FS,39.950576,-75.323897,,,1, +13794,Township Line Rd & Burmont Rd,39.956767,-75.3209,,,1, +13795,Township Line Rd & Cedar Rd ,40.078134,-75.112227,,,1, +13798,Township Line Rd & Church Rd ,40.070182,-75.098435,,,1, +13799,Township Line Rd & Lansdowne Av - FS,39.967418,-75.296989,,,1, +13801,Township Line Rd & Concord Av,39.961194,-75.310961,,,1, +13803,Township Line Rd & Drexel Av - FS,39.959707,-75.314317,,,1, +13804,Township Line Rd & Edmonds Av,39.962058,-75.309022,,,1, +13806,Township Line Rd & Perry St - MBNS,40.071266,-75.100216,,,1, +13808,Township Line Rd & Foss Av,39.962744,-75.307498,,,1, +13810,Township Line Rd & Roosevelt Dr,39.965593,-75.300997,,,1, +13811,Township Line Rd & High School Rd,40.079667,-75.114823,,,1, +13816,Township Line Rd & Lansdowne Av,39.967632,-75.29615,,,1, +13819,Township Line Rd & Lexington Av - FS,39.960597,-75.312308,,,1, +13821,Township Line Rd & New 2nd St ,40.07688,-75.110293,,,1, +13823,Township Line Rd & Old Lane St - FS,39.963919,-75.304755,,,1, +13828,Township Line Rd & State Rd,39.946383,-75.325615,,,1, +13830,Township Line & Valley Glen Rd - FS,40.075149,-75.106894,,,1, +13834,Township Line Rd & Myrtlwood Av,39.966394,-75.299223,,,1, +13882,Valley Forge Rd & Geerdes Blvd,40.103023,-75.400698,,,8, +13905,23rd St & Venango St Loop,40.009811,-75.166068,,,1,0 +14057,Walnut Ln & Daniel St,40.032193,-75.191793,,,1, +14058,Walnut Ln & Daniel St,40.032024,-75.191936,,,1, +14059,Walnut Ln & Germantown Av,40.040307,-75.178737,,,1, +14060,Walnut Ln & Greene St,40.037297,-75.181845,,,1, +14061,Walnut Ln & Houghton St,40.027813,-75.20746,,,1, +14063,Walnut Ln & Park Line Dr - FS,40.03314,-75.197075,,,1, +14064,Walnut Ln & Kingsley St,40.032295,-75.193945,,,1, +14065,Walnut Ln & Kingsley St,40.032242,-75.194181,,,1, +14066,Walnut Ln & Magdalena St,40.029474,-75.203482,,,1, +14067,Walnut Ln & Morris St - MBFS,40.033502,-75.185689,,,1, +14068,Walnut Ln & Park Ln,40.032681,-75.195102,,,1, +14069,Walnut Ln & Park Ln,40.032637,-75.195351,,,1, +14071,Walnut Ln & Wayne Av,40.034776,-75.184384,,,1, +14072,Walnut Ln & Wissahickon Av - FS,40.032528,-75.189558,,,1, +14079,Walnut St & 15th St,39.949576,-75.165805,,,1, +14080,Walnut St & 16th St,39.949775,-75.167399,,,1, +14081,Walnut St & 17th St,39.949975,-75.168968,,,1, +14084,Walnut St & 18th St,39.950157,-75.170538,,,1, +14085,Walnut St & 19th St,39.950374,-75.172108,,,1, +14086,Walnut St & 20th St,39.950574,-75.173643,,,1, +14088,Walnut St & 21st St,39.95081,-75.175531,,,1, +14089,Walnut St & 22nd St,39.951,-75.177172,,,1, +14656,Island Av & Woodland Av ,39.917287,-75.246529,,,1,0 +14752,York St & 21st St - MBFS,39.990937,-75.167283,,,1, +14754,York St & 22nd St,39.991055,-75.168205,,,1, +14781,Grays Ferry Av & 28th St ,39.939031,-75.190107,,,1, +14785,Chester Transportation Center,39.849316,-75.360154,,31036,1, +14817,West Chester Pk & Media Line Rd,39.984141,-75.377933,,,1, +14818,Newtown Square Corporate Campus ,39.977859,-75.413472,,,1, +14819,N Crum Creek Rd & Crum Creek Rd - FS,39.977752,-75.439496,,,1,0 +14820,Church St & University Av - FS ,39.952505,-75.600037,,,1, +14826,Lancaster Av & Rittenhouse Place,40.006974,-75.28908,,,1, +14832,Baltimore Av & Lansdowne Av - FS,39.938295,-75.272497,,,1, +14833,Baltimore Av & Glenwood Av,39.931224,-75.292712,,,1,0 +14835,Baltimore Pk & Woodland Av,39.917196,-75.333106,,,1, +14837,Chester Rd & Rutgers Av - FS ,39.90076,-75.350935,,,1, +14840,Chester Rd & Rutgers Av ,39.90093,-75.350699,,,1, +14842,Baltimore Pk & Woodland Av,39.916706,-75.333909,,,1, +14844,Baltimore Pk & Glenwood Av,39.931027,-75.292783,,,1,0 +14845,Baltimore Av & Lansdowne Av - FS,39.938197,-75.272119,,,1, +14849,State Rd & Sproul Rd ,39.938779,-75.349335,,,1, +14852,State Rd & Sproul Rd - FS,39.938216,-75.349607,,,1, +14853,State Rd & Township Line Rd - FS,39.945963,-75.324978,,,1, +14861,Garrett Rd & Shadeland Av - FS,39.946556,-75.292706,,,1, +14866,Garrett Rd & Shadeland Av ,39.946414,-75.292588,,,1, +14880,Walnut St & 5th St - FS,39.947586,-75.14973,,,1, +14881,Walnut St & 7th St,39.947923,-75.152515,,,1, +14882,Walnut St & 8th St,39.948131,-75.154061,,,1, +14883,Walnut St & 9th St,39.948322,-75.155666,,,1, +14884,Walnut St & 10th St,39.948513,-75.157213,,,1, +14885,Walnut St & 11th St,39.948704,-75.15883,,,1, +14886,Walnut St & 12th St,39.948895,-75.160388,,,1, +14887,Walnut St & 13th St,39.949086,-75.162005,,,1, +14888,Ogontz Av & Walnut Ln,40.064326,-75.153673,,,1, +14889,Champlost Av & 17th St,40.044973,-75.148226,,,1, +14890,Ogontz Av & Church Ln,40.04629,-75.15055,,,1, +14891,Ridge Av & Markle St,40.025342,-75.208496,,,1, +14892,Ridge Av & Walnut Ln,40.026861,-75.209307,,,1, +14893,Ridge Av & Pensdale St ,40.028487,-75.210188,,,1, +14895,Ogontz Av & 65th Av,40.053018,-75.149873,,,1, +14899,Ogontz Av & Tulpehocken St,40.06507,-75.154806,,,1, +14900,Ogontz Av & Washington Ln,40.068572,-75.156697,,,1, +14901,Ogontz Av & 77th Av,40.070707,-75.157315,,,1, +14902,Ogontz Av & 78th Av,40.071511,-75.157573,,,1, +14903,Ogontz Av & 79th Av,40.072315,-75.157794,,,1, +14906,Chestnut St & 19th St,39.95182,-75.171985,,,1, +14907,Chestnut St & 16th St,39.951203,-75.167287,,,1, +14908,Chestnut St & 10th St,39.949959,-75.157195,,,1, +14909,Chestnut St & 4th St - MBNS,39.948868,-75.14826,,,1, +14910,19th St & Wallace St,39.966227,-75.168886,,,1, +14911,19th St & Cherry St,39.956405,-75.171024,,,1, +14912,19th St & & Arch St,39.955495,-75.171216,,,1, +14913,Market St & 5th St,39.950521,-75.149081,,,1,0 +14915,Chestnut St & Front St ,39.948132,-75.142572,,,1, +14916,20th St & Arch St,39.955507,-75.172716,,,1, +14917,20th St & Wood St,39.959923,-75.17172,,,1, +14918,College Av & Ridge Av,39.973302,-75.16749,,,1, +14919,19th St & Cecil B Moore Av,39.979608,-75.165813,,,1, +14920,20th St & Spring Garden St,39.963491,-75.170904,,,1, +14921,20th St & Wallace St,39.966283,-75.170267,,,1, +14922,Diamond St & 20th St,39.98599,-75.16599,,,1, +14923,19th St & Chestnut St - FS,39.951617,-75.17201,,,1, +14924,21st St & Dauphin St,39.989223,-75.167243,,,1, +14926,Brown St & 27th St,39.970465,-75.181297,,,1, +14927,23rd St & Fairmount Av,39.967401,-75.175449,,,1, +14928,Arch St & 21st St,39.955868,-75.17445,,,1, +14929,19th St & Locust St ,39.949368,-75.173045,,,1, +14930,Market St & 4th St,39.950312,-75.147428,,,1, +14931,Arch St & 2nd St,39.951971,-75.143147,,,1, +14932,Arch St & 9th St,39.953353,-75.154502,,,1, +14933,Arch St & 11th St,39.953807,-75.157771,,,1, +14934,16th St & Arch St - FS,39.954173,-75.166402,,,1, +14935,Arch St & 18th St,39.955242,-75.169445,,,1, +14937,Aspen St & 23rd St - FS,39.968588,-75.175338,,,1, +14938,Aspen St & 26th St,39.969141,-75.179754,,,1, +14939,27th St & Brown St,39.970456,-75.181167,,,1, +14941,Poplar St & 29th St,39.973245,-75.183697,,,1, +14942,29th St & Thompson St,39.976091,-75.183002,,,1, +14943,29th St & Master St,39.977391,-75.182736,,,1, +14947,29th St & Somerset St,39.998554,-75.178092,,,1, +14948,29th St & Cambria St,40.000053,-75.17785,,,1, +14949,29th St & Clearfield St,40.002997,-75.17719,,,1, +14950,Allegheny Av & 29th St,40.004719,-75.176794,,,1, +14951,Allegheny Av & 28th St,40.004421,-75.175388,,,1, +14952,Henderson Rd & Queens Dr,40.083762,-75.357181,,,6, +14953,Mall Blvd & Court Blvd,40.08765,-75.387654,,,3, +14954,19th St & Spruce St ,39.948073,-75.172789,,,1, +14956,19th St & Pine St,39.946637,-75.17309,,,1, +14958,19th St & Lombard St ,39.945727,-75.173306,,,1, +14959,19th St & South St ,39.944728,-75.173522,,,1, +14960,19th St & Bainbridge St ,39.943871,-75.173714,,,1, +14961,19th St & Fitzwater St ,39.942881,-75.17393,,,1, +14962,Swedesford Rd & Old Eagle School Rd,40.079998,-75.413448,,,6, +14963,Swedesford Rd & West Valley Rd - MBFS,40.074144,-75.427159,,,6, +14964,Swedesford Rd & South Warner - MBNS,40.081862,-75.403865,,,6, +14965,North Warner Rd & North Gulph Rd,40.085208,-75.4008,,,6, +14967,DeKalb Pk & Allendale Rd - FS,40.088157,-75.381892,,,6, +14968,DeKalb Pk & Brandywine Ln - MBFS,40.091696,-75.371738,,,6, +14969,DeKalb Pk & King Cr,40.092141,-75.370412,,,6, +14970,Henderson Rd & Tyler Rd,40.093074,-75.361821,,,6, +14972,Henderson Rd & Hansen Access Rd,40.087047,-75.357686,,,6, +14974,Henderson Rd & Wonder Bread,40.080049,-75.355883,,,6, +14975,South Gulph Rd & Crooked Ln,40.074143,-75.347136,,,8, +14977,South Gulph Rd & Glen Arbor Court,40.080137,-75.370316,,,8, +14978,Mall Blvd & Wills Blvd,40.090265,-75.389049,,,3, +14979,Allendale Rd & 3rd Av,40.101532,-75.398059,,,8, +14982,1st Av & Allendale Rd - MBFS,40.097257,-75.39747,,,8, +14983,1st Av & Park Av - Ebay,40.095152,-75.406215,,,8, +14984,North Gulph Rd & Guthrie Rd - MBFS,40.089575,-75.412913,,,8, +14986,South Gulph Rd & Hayley Jackson Way - FS,40.082998,-75.382865,,,8, +14989,Ridge Pk & Lynda Dr,40.094962,-75.291854,,,1, +14990,Ridge Pk & Barren Hill Rd - MBFS,40.077316,-75.248686,,,1, +14991,Ridge Av & Spring Ln,40.0707,-75.241298,,,1, +14993,Port Royal Av Ridge Av - FS,40.059904,-75.237861,,,1, +14995,Ridge Av & Osborn St - MBNS,40.016322,-75.210297,,,1, +14996,Broad St & South St,39.943577,-75.165449,,,1, +14997,Henry Av & Cheswick Rd - MBNS,40.056085,-75.232491,,,1, +14998,Market St & High St ,39.959612,-75.604471,,,1, +14999,Ridge Pk & Crescent Av,40.083527,-75.254384,,,1, +15002,Church Ln & Baltimore Av ,39.941031,-75.25602,,,1,0 +15003,Allegheny Av & Emerald St,39.994208,-75.111264,,,1, +15004,Allegheny Av & 3rd St,39.999435,-75.135524,,,1, +15005,Allegheny Av & 34th St,40.005681,-75.185027,,,1, +15006,Allegheny Av & 33rd St,40.005473,-75.183456,,,1, +15007,Allegheny Av & 32nd St,40.005255,-75.181779,,,1, +15009,Allegheny Av & 29th St,40.00463,-75.17703,,,1, +15011,Allegheny Av & 25th St,40.003841,-75.170793,,,1, +15012,Allegheny Av & 24th St,40.003641,-75.169187,,,1, +15013,Allegheny Av & 23rd St,40.003424,-75.16764,,,1, +15014,Allegheny Av & 21st St,40.003015,-75.164391,,,1, +15015,Allegheny Av & 20th St,40.00277,-75.162537,,,1, +15016,Allegheny Av & 19th St,40.002571,-75.160942,,,1, +15018,Allegheny Av & 17th St,40.002171,-75.1578,,,1, +15019,Allegheny Av & 16th St,40.001963,-75.156218,,,1, +15020,Allegheny Av & 15th St,40.001754,-75.154647,,,1, +15021,Allegheny Av & 13th St,40.001281,-75.150808,,,1, +15022,Allegheny Av & Germantown Av,40.000936,-75.148269,,,1, +15023,Sedgley Av & 9th St - MBNS,40.001732,-75.144874,,,1, +15024,Allegheny Av & Glenwood Av,40.000765,-75.143495,,,1, +15025,Allegheny Av & 3rd St,39.999337,-75.135749,,,1, +15026,Allegheny Av & 2nd St,39.99901,-75.13334,,,1, +15027,Allegheny Av & Front St,39.998501,-75.12936,,,1, +15028,Allegheny Av & A St,39.998255,-75.127517,,,1, +15029,Allegheny Av & B St,39.998001,-75.125533,,,1, +15030,Allegheny Av & C St,39.997719,-75.123348,,,1, +15031,Allegheny Av & D St,39.997464,-75.121376,,,1, +15032,Allegheny Av & E St,39.997218,-75.119451,,,1, +15033,Allegheny Av & F St,39.996972,-75.117514,,,1, +15034,Allegheny Av & G St,39.996718,-75.115601,,,1, +15035,Allegheny Av & Jasper St,39.99521,-75.112358,,,1, +15036,Allegheny Av & Emerald St,39.994262,-75.111524,,,1, +15037,Allegheny Av & Frankford Av,39.993019,-75.11043,,,1, +15038,Allegheny Av & Janney St,39.990451,-75.108173,,,1, +15039,Allegheny Av & Tulip St,39.989691,-75.107491,,,1, +15040,Allegheny Av & Aramingo Av,39.988546,-75.106492,,,1, +15041,Allegheny Av & Gaul St,39.987097,-75.105246,,,1, +15042,Allegheny Av & Belgrade St,39.986319,-75.104517,,,1, +15043,Allegheny Av & Almond St,39.985576,-75.103871,,,1, +15044,Allegheny Av & Emery St,39.983331,-75.101873,,,1, +15049,Pennsylvania Av & 22nd St,39.962919,-75.174839,,,1,0 +15052,King of Prussia Park & Ride,40.083713,-75.386876,,,8, +15053,84th St & Crane St - FS,39.894708,-75.246716,,,1, +15054,84th St & Crane St,39.893107,-75.244301,,,1, +15056,State Rd & Anderson Av,39.949844,-75.31405,,,1, +15057,State Rd & Stanbridge Rd,39.948955,-75.317157,,,1, +15060,State Rd & Penarth Av - FS,39.961663,-75.274312,,,1, +15062,Granite Run Mall,39.916644,-75.429361,,,1, +15065,Middletown Rd & Lima Estates - FS,39.923069,-75.443207,,,1, +15067,Middletown Rd & Juv Det Center,39.922177,-75.443254,,,1, +15068,Middletown Rd & Old Forge Rd,39.919625,-75.442923,,,1, +15069,Fair Acres Entrance,39.918036,-75.444163,,,1,0 +15071,Baltimore Pk & Granite Farm - FS,39.908361,-75.449755,,,1, +15073,Baltimore Pk & Valleybrook Rd,39.896349,-75.4799,,,1, +15075,Baltimore Pk & New Seasons,39.897273,-75.48881,,,1, +15076,Baltimore Pk & School House Ln,39.895529,-75.497056,,,1, +15077,Baltimore Pk & Cheyney Rd,39.891294,-75.505689,,,1, +15078,Baltimore Pk & Scott Rd,39.889148,-75.51168,,,1, +15079,Baltimore Pk & Thornton Rd,39.887598,-75.520362,,,1, +15080,Baltimore Pk & Concord Rd,39.886561,-75.522308,,,1, +15088,Baltimore Pk & Brinton Lake Rd - FS,39.883569,-75.536497,,,1, +15091,State Farm Dr & Pond Dr,39.885302,-75.545666,,,1, +15092,Wilmington Pk & Brandywine Dr - FS,39.883915,-75.549156,,,1, +15094,State Rd & Arlington Av - FS,39.960237,-75.283739,,,1, +15095,State Rd & Beverly Blvd,39.960583,-75.282026,,,1, +15096,State Rd & Merion Av - FS,39.960804,-75.280278,,,1, +15097,State Rd & Hilltop Rd,39.961246,-75.276474,,,1, +15098,State Rd & Penarth Av,39.961502,-75.274312,,,1, +15099,State Rd & Sellers Av,39.962481,-75.272054,,,1, +15102,State Rd & Highland Av,39.961007,-75.278541,,,1, +15105,State Rd & Hampshire Rd,39.957178,-75.293335,,,1, +15106,State Rd & Kenwood Rd,39.95635,-75.295569,,,1, +15107,State Rd & Shadeland Av,39.955149,-75.298807,,,1, +15108,State Rd & Turner Av,39.954374,-75.300875,,,1, +15109,State Rd & Mason Av,39.953778,-75.30247,,,1, +15110,State Rd & Ormond Av,39.953173,-75.304089,,,1, +15111,State Rd & Cornell Av,39.952576,-75.305708,,,1, +15112,State Rd & Morgan Av,39.9519,-75.307552,,,1, +15113,State Rd & Childs Av,39.951161,-75.309501,,,1, +15114,State Rd & Clarendon Rd,39.947992,-75.318847,,,1, +15115,State Rd & Anderson Av,39.94963,-75.31418,,,1, +15116,State Rd & Springfield Rd - FS,39.939917,-75.34343,,,1, +15117,State Rd & Rolling Rd - FS,39.944493,-75.327779,,,1, +15118,State Rd & Weymouth Rd,39.942141,-75.33345,,,1, +15119,State Rd & Broadview Rd,39.94329,-75.33006,,,1, +15120,State Farm Dr & Pond Dr,39.885132,-75.54589,,,1, +15123,Brinton Lake Rd & Baltimore Pk - MBFS,39.885275,-75.53572,,,1, +15125,Evergreen Dr & Baltimore Pk - MBNS,39.885662,-75.53171,,,1, +15132,Baltimore Pk & Thornton Rd,39.887348,-75.520161,,,1, +15133,Baltimore Pk & Scott Rd - FS,39.888916,-75.51181,,,1, +15134,Baltimore Pk & Cheyney Rd - FS,39.891035,-75.50563,,,1, +15135,Baltimore Pk & School House Ln,39.895136,-75.497174,,,1, +15136,Baltimore Pk & New Seasons,39.897068,-75.489494,,,1, +15138,Baltimore Pk & Red Roof Dr - FS,39.898816,-75.46927,,,1, +15139,Dickinson Dr & Baltimore Pk,39.879667,-75.548842,,,1, +15141,Wilmington Pk & State Farm Dr,39.883568,-75.548507,,,1, +15143,Baltimore Pk & Granite Farms,39.9082,-75.449448,,,1, +15152,Middletown Rd & Bonsall Dr - FS,39.917893,-75.441023,,,1, +15153,Middletown Rd & Oriole Av,39.917635,-75.435664,,,1, +15154,Granite Run Mall - 1,39.916573,-75.429562,,,1, +15178,Stoddard Av & Fayette St - FS,40.072166,-75.308233,,,1, +15185,Broad St & Chestnut St - FS,39.950482,-75.16409,,,1, +15186,Broad St & Walnut St,39.949394,-75.164342,,,1, +15187,Broad St & Locust St,39.948261,-75.164582,,,1, +15188,Broad St & Spruce St,39.947048,-75.164846,,,1,0 +15189,Broad St & Pine St,39.94563,-75.165147,,,1, +15190,Broad St & Lombard St,39.944702,-75.165339,,,1, +15191,Broad St & South St,39.943703,-75.165567,,,1, +15192,Broad St & Bainbridge St - FS,39.942632,-75.165795,,,1, +15193,Broad St & Fitzwater St,39.941865,-75.165975,,,1, +15194,Broad St & Catherine St,39.940866,-75.166191,,,1, +15195,Broad St & Christian St,39.940099,-75.16636,,,1, +15196,Broad St & Carpenter St,39.939144,-75.166564,,,1, +15197,DeKalb Pk & Henderson Rd - MBFS,40.094245,-75.364897,,,6, +15202,15th St & Washington Av,39.93814,-75.168492,,,1, +15210,Westminster Av & 46th St ,39.969213,-75.213949,,,1, +15229,Spruce St & 37th St,39.95095,-75.197377,,,1, +15230,Spruce St & 37th St,39.951075,-75.197129,,,1, +15231,Hunting Park Av & Broad St,40.016959,-75.149281,,,1,0 +15232,Chapel Rd & Newtown Street Rd - FS,39.987415,-75.400721,,,1, +15236,Broad St & Flagship Dr ,39.888926,-75.175809,,,1, +15262,New Falls Rd & Edgley Rd ,40.154253,-74.855276,,,1,0 +15267,3rd St & Highland Av,39.831909,-75.391047,,,1, +15269,Woodbourne Rd & New Falls Rd - FS,40.154389,-74.855784,,,1, +15270,Bristol Pk & Cedar Av,40.0938,-74.908983,,,1, +15271,Lansdowne Av & 60th St,39.97586,-75.240307,,,1, +15272,Weccacoe Av & Wolf St,39.918666,-75.143964,,,1, +15283,24th St & McKean St - FS,39.927573,-75.186167,,,1, +15287,Horsham Rd & North Wales Rd - FS,40.245385,-75.240398,,,1, +15288,Horsham Rd & North Wales Rd,40.244848,-75.239783,,,1, +15301,General Warren Blvd & Otis - FS,40.074614,-75.539477,,,1, +15319,Fairfield Av Station - FS,39.960882,-75.263743,,,1, +15322,Congress Av Station,39.953092,-75.279101,,,1, +15325,Garrettford Station,39.944052,-75.295958,,,1, +15326,Drexel Manor Station,39.942205,-75.296611,,,1, +15327,Marshall Rd Station,39.940135,-75.296544,,,1, +15328,Creek Rd Station,39.9351,-75.295278,,,1, +15329,Penn St Station,39.928938,-75.292008,,,1, +15330,Springfield Rd Station,39.927288,-75.292684,,,1, +15333,Andrews Av Station,39.911613,-75.281997,,,1, +15334,Andrews Av Station,39.911684,-75.281832,,,1, +15339,Creek Rd Station - FS,39.9351,-75.295136,,,1, +15340,Marshall Rd Station - FS,39.94017,-75.296378,,,1, +15341,Garrettford Station,39.944088,-75.295781,,,1, +15344,Congress Av Station,39.952976,-75.279078,,,1, +15348,Fairfield Av Station,39.960864,-75.263613,,,1, +15349,Huey Av Station,39.947597,-75.29764,,,1, +15355,Saxer Av Station,39.928772,-75.333645,,,1, +15358,Pine Ridge Station,39.915024,-75.370004,,,1, +15366,Pine Ridge Station,39.914872,-75.369922,,,1, +15370,Saxer Av Station,39.928656,-75.333492,,,1, +15376,Huey Av Station,39.94741,-75.297688,,,1, +15379,Monroe St Station,39.917726,-75.387518,,,1, +15380,Monroe St Station,39.917592,-75.387766,,,1, +15383,Sproul Rd & Martens Ln ,39.939573,-75.3497,,,1, +15384,Sproul Rd & State Rd - MBNS,39.9391,-75.350255,,,1, +15392,Ridge Av & Parker Av ,40.04224,-75.226014,,,1, +15393,Evergreen Dr & Baltimore Pk,39.884127,-75.530634,,,1, +15396,17th St & Ontario St ,40.005329,-75.157091,,,1, +15397,17th St & Allegheny Av ,40.002269,-75.157765,,,1, +15398,17th St & Summer St - FS,39.957817,-75.167487,,,1, +15399,17th St & Walnut St ,39.950074,-75.169181,,,1, +15400,17th St & Locust St - FS,39.948637,-75.169481,,,1, +15401,17th St & Spruce St ,39.94771,-75.169673,,,1, +15402,Moyamensing Av & 18th St ,39.914821,-75.17822,,,1, +15403,16th St & Christian St ,39.940364,-75.169488,,,1, +15404,16th St & Lombard St ,39.945003,-75.168479,,,1, +15420,Cedarbrook Plaza Stop 3 ,40.082363,-75.16541,,,1, +15421,Cedarbrook Plaza Stop 6,40.083255,-75.169252,,,1, +15422,Cheltenham Av & 79th Av,40.072802,-75.156042,,,1, +15424,Roumfort Rd & Cheltenham Av - FS,40.083552,-75.174977,,,1, +15427,Germantown Av & Highland Av ,40.076016,-75.206529,,,1, +15428,Roumfort Rd & Pickering Av,40.082465,-75.176022,,,1, +15429,Germantown Av & Gravers Ln ,40.075121,-75.20503,,,1, +15430,Germantown Av & Southampton Av ,40.074333,-75.203719,,,1, +15431,Roumfort Rd & Michener Av,40.080933,-75.17753,,,1, +15432,Michener Av & Gowen Av,40.079823,-75.175712,,,1, +15433,Germantown Av & Hartwell Ln ,40.073252,-75.202764,,,1, +15434,Germantown Av & Abington Av ,40.072009,-75.201881,,,1, +15435,Germantown Av & Willow Grove Av,40.070749,-75.200903,,,1, +15436,Germantown Av & Springfield Av ,40.069542,-75.199866,,,1, +15437,Germantown Av & Moreland Av ,40.068684,-75.198899,,,1, +15438,Germantown Av & Cresheim Valley Dr ,40.066948,-75.196527,,,1, +15439,Germantown Av & Roumfort Rd,40.064884,-75.195221,,,1, +15440,Germantown Av & Mcpherson St - MBFS,40.063926,-75.193923,,,1, +15441,Germantown Av & Gowen Av ,40.062809,-75.193111,,,1, +15442,Germantown Av & Allens Ln ,40.061299,-75.191981,,,1, +15443,Germantown Av & Mt Airy Av ,40.060217,-75.191156,,,1, +15444,Germantown Av & Mt Pleasant Av ,40.058429,-75.189542,,,1, +15447,Nedro Av & Ogontz Av ,40.043727,-75.149673,,,1, +15450,Broad St & Spencer St,40.045649,-75.143174,,,1, +15451,Michener Av & Mt Airy Av,40.078085,-75.17269,,,1, +15453,Michener Av & Mt Pleasant Av,40.076732,-75.170376,,,1, +15454,Broad St & Chelten Av ,40.050493,-75.142126,,,1, +15455,Broad St & 65th Av ,40.051965,-75.141777,,,1, +15456,Mt Pleasant Av & Williams Av,40.075236,-75.171836,,,1, +15457,Thouron Av & Mt Pleasant Av - FS,40.073703,-75.172989,,,1, +15458,Nedro Av & 17 th St,40.043573,-75.148551,,,1, +15459,Thouron Av & Sedgwick St,40.073058,-75.171844,,,1, +15460,Germantown Av & Sedgwick St ,40.056936,-75.188187,,,1, +15461,Thouron Av & Vernon Rd,40.071473,-75.169106,,,1, +15462,Germantown Av & Gorgas Ln ,40.055524,-75.187447,,,1, +15463,Broad St & 66th Av,40.053517,-75.141416,,,1, +15464,Germantown Av & Carpenter Ln ,40.054872,-75.187071,,,1, +15465,Broad St & 67th Av - FS,40.055141,-75.141055,,,1, +15466,Germantown Av & Slocum St ,40.053308,-75.186236,,,1, +15467,Germantown Av & Phil Ellena St ,40.051789,-75.185402,,,1, +15468,Broad St & 68th Av,40.05663,-75.140777,,,1, +15471,Broad St & 71st Av ,40.061118,-75.139801,,,1, +15473,Cheltenham Av & School Ln,40.064092,-75.140569,,,1,0 +15475,Cheltenham Av & Sycamore Av,40.065472,-75.142965,,,1, +15476,Cheltenham Av & Euston Rd ,40.066063,-75.144015,,,1, +15477,Cheltenham Av & Cedar Ln,40.066852,-75.145384,,,1, +15478,Cheltenham Av & Penrose Av,40.067533,-75.146564,,,1, +15479,Thouron Av & Phil Ellena St,40.070174,-75.166816,,,1, +15481,Thouron Av & Sharpnack St,40.069377,-75.165435,,,1, +15482,Cheltenham Av & Massey Way,40.069172,-75.149444,,,1, +15483,Thouron Av & Upsal St,40.06866,-75.164207,,,1, +15484,Upsal St & Woolston Av,40.067494,-75.165714,,,1, +15486,Cheltenham Av & Tulpehocken St,40.070991,-75.152666,,,1, +15488,Upsal St & Lowber Av,40.065268,-75.168123,,,1, +15489,Cheltenham Av & 79th Av - FS,40.072927,-75.156065,,,1, +15490,Upsal St & Stenton Av,40.062667,-75.170829,,,1, +15492,Germantown Av & Sharpnack St ,40.04927,-75.184015,,,1, +15493,Germantown Av & Upsal St ,40.048296,-75.183522,,,1, +15494,Germantown Av & Hortter St - FS,40.050431,-75.184673,,,1, +15495,Germantown Av & Cliveden St ,40.047126,-75.182911,,,1, +15496,Nedro Av & 19th St ,40.043678,-75.151967,,,1, +15497,69th St Transportation Center West Terminal,39.962098,-75.259406,,31034,3,0 +15499,Nedro Av & Kemble Av,40.043719,-75.154119,,,1, +15501,Nedro Av & 21st St ,40.043776,-75.155751,,,1, +15502,Nedro Av & Wister St,40.043835,-75.158163,,,1, +15504,Broad St & 72nd Av,40.062911,-75.139604,,,1, +15506,Vernon Rd & Stenton Av - FS,40.065051,-75.175551,,,1, +15507,Wister St & Church Ln,40.044995,-75.158146,,,1, +15508,Wister St & Sprague St ,40.046432,-75.158058,,,1, +15509,Vernon Rd & Crittenden St,40.063901,-75.176289,,,1, +15510,Vernon Rd & Anderson St,40.062305,-75.177335,,,1, +15511,Wister St & Spencer St,40.04736,-75.158007,,,1, +15512,Broad St & 71St Av,40.061386,-75.139871,,,1, +15513,Broad St & 70th Av,40.059833,-75.140208,,,1, +15514,Vernon Rd & Ardleigh St,40.060789,-75.177636,,,1, +15515,Vernon Rd & Blakemore St,40.059799,-75.178219,,,1, +15516,Sprague St & Phil Ellena St,40.058612,-75.17833,,,1, +15517,Phil Ellena St & Boyers St,40.057134,-75.179849,,,1, +15518,Phil Ellena St & Chew Av,40.055673,-75.181309,,,1, +15519,Chew Av & Montana St,40.054554,-75.179692,,,1, +15520,Chew Av & Upsal St,40.053551,-75.17804,,,1, +15521,Chew Av & Cliveden St ,40.052888,-75.17699,,,1, +15522,Chew Av & Johnson St ,40.052217,-75.175881,,,1, +15523,Chew Av & Duval St ,40.051536,-75.17476,,,1, +15524,Chew Av & Washington Ln ,40.05065,-75.173368,,,1, +15525,Chew Av & Tulpehocken St ,40.049709,-75.17181,,,1, +15526,Chew Av & Herman St ,40.049226,-75.170996,,,1, +15527,Chew Av & High St ,40.047963,-75.168955,,,1, +15528,Wister St & Godfrey Av,40.04893,-75.157907,,,1, +15529,Wister St & Medary Av ,40.05051,-75.157806,,,1, +15530,Broad St & 69th Av,40.058326,-75.140533,,,1, +15535,Wister St & 65th Av,40.05316,-75.15763,,,1, +15538,Easton Rd & Toxony Av,40.097214,-75.156741,,,1, +15539,Easton Rd & Waverly Rd,40.09855,-75.155423,,,1, +15540,Easton Rd & Wesley Av,40.099476,-75.154484,,,1, +15542,Easton Rd & Mt Carmel Av,40.101552,-75.152536,,,1, +15543,Easton Rd & Fairhill Av,40.103146,-75.151098,,,1, +15544,Easton Rd & Rosemore Av,40.104625,-75.149636,,,1, +15545,Easton Rd & Oakdale Av,40.105506,-75.148745,,,1, +15546,Wister St & Stenton Av ,40.054892,-75.157517,,,1, +15547,Easton Rd & Jenkintown Rd,40.109256,-75.145038,,,1, +15549,Easton Rd & Cross Rd,40.110948,-75.143351,,,1, +15550,Easton Rd & Pleasant Av,40.112221,-75.142091,,,1, +15551,Easton Rd & Charles St,40.113566,-75.14076,,,1, +15552,Stenton Av & Haines St ,40.05576,-75.158756,,,1, +15553,Easton Rd & Hilldale Rd,40.115115,-75.139227,,,1, +15554,Stenton Av & Walnut Ln,40.056808,-75.160573,,,1,0 +15555,Easton Rd & Bradfield Rd,40.116709,-75.137646,,,1, +15556,Stenton Av & Beverly Rd ,40.057641,-75.162013,,,1, +15557,Stenton Av & Tupehocken St ,40.058224,-75.16304,,,1, +15558,Stenton Av & Johnson St ,40.060419,-75.166899,,,1, +15559,Broad St & 68th Av,40.056818,-75.140871,,,1, +15560,Easton Rd & Susquehanna Rd,40.121019,-75.133367,,,1, +15561,Easton Rd & Mildred Av,40.12233,-75.132628,,,1, +15562,Easton Rd & East Av,40.123687,-75.132741,,,1, +15563,Easton Rd & Kenderton Av,40.125551,-75.132354,,,1, +15564,Easton Rd & Arlington Av,40.126709,-75.131284,,,1, +15565,Easton Rd & Woodland Rd,40.127787,-75.130321,,,1, +15566,Easton Rd & Pershing Av - FS,40.129416,-75.128704,,,1, +15567,Easton Rd & Patane Av,40.13069,-75.127444,,,1, +15569,Easton Rd & Hamilton Av,40.132533,-75.125636,,,1, +15570,Easton Rd & Lammott Av,40.133744,-75.124447,,,1, +15571,Easton Rd & Rubicam Av - FS,40.135053,-75.123139,,,1, +15572,Easton Rd & Old Welsh Rd,40.137097,-75.121118,,,1, +15573,Broad St & 67th Av,40.055248,-75.141255,,,1, +15574,Broad St & 66th Av ,40.053705,-75.141616,,,1, +15575,Broad St & 65th Av,40.052179,-75.141894,,,1, +15576,Stenton Av & Cliveden St ,40.061368,-75.168539,,,1, +15577,Stenton Av & Cardeza St ,40.06178,-75.169271,,,1, +15578,Broad St & Chelten Av,40.050663,-75.142208,,,1, +15579,Chew Av & Haines St ,40.047256,-75.167822,,,1, +15580,Broad St & Medary Av,40.049093,-75.142581,,,1, +15581,Stenton Av & Upsal St ,40.062586,-75.170687,,,1, +15582,Chew Av & Rittenhouse St ,40.046736,-75.166973,,,1, +15583,Stenton Av & Hortter St,40.063383,-75.172056,,,1, +15584,Chew Av & Price St ,40.046217,-75.166135,,,1, +15585,Stenton Av & Dorset St,40.064297,-75.17365,,,1, +15586,Chew Av & Locust Av ,40.044166,-75.162808,,,1, +15587,Chew Av & Church Ln,40.043297,-75.161404,,,1, +15588,Broad St & Stenton Av,40.047603,-75.142882,,,1, +15589,Stenton Av & Vernon Rd ,40.065211,-75.175196,,,1, +15591,Stenton Av & Gorgas Ln ,40.065891,-75.176424,,,1, +15592,Stenton Av & Sedgwick St ,40.06676,-75.177899,,,1, +15594,Old York Rd & Cedar Av - MBFS,40.147396,-75.115626,,,1, +15595,Old York Rd & Lincoln Av - FS,40.149741,-75.114491,,,1, +15596,Old York Rd & Fairhill St,40.15123,-75.113822,,,1, +15597,Old York Rd & Warren St,40.152559,-75.113389,,,1, +15598,Old York Rd & Reed St,40.153897,-75.112981,,,1, +15599,Stenton Av & Mt Pleasant Av - FS,40.067638,-75.179446,,,1, +15600,Old York Rd & Lakevue Dr - FS,40.15651,-75.112365,,,1, +15602,Old York Rd & Fitzwatertown Rd,40.159677,-75.111795,,,1, +15603,Old York Rd & Warminster Rd,40.163317,-75.111056,,,1, +15604,Stenton Av & Wadsworth Av ,40.069751,-75.183069,,,1, +15606,Old York Rd & Newington Dr,40.166484,-75.110343,,,1, +15607,Old York Rd & Mill Rd - FS,40.167751,-75.110112,,,1, +15608,Stenton Av & Rumfort Rd ,40.071659,-75.186446,,,1, +15609,Old York & Crooked Billet,40.168957,-75.110379,,,1, +15610,Stenton Av & Woodbrook Ln,40.072501,-75.18791,,,1, +15612,Old York Rd & Moreland Av,40.177149,-75.106137,,,1, +15613,Old York Rd & Summit Av,40.181332,-75.105064,,,1, +15614,Stenton & Cresheim Valley,40.073173,-75.189055,,,1, +15615,Old York Rd & Beech St,40.191885,-75.102635,,,1, +15616,Stenton Av & Mermaid Ln,40.074175,-75.19066,,,1, +15617,Stenton Av & Willow Grove Av ,40.076557,-75.19484,,,1, +15618,Stenton Av & Abington Av ,40.07739,-75.196446,,,1, +15619,Stenton Av & Cresheim Valley Rd,40.078008,-75.197485,,,1, +15620,Stenton Av & Gravers Ln ,40.079593,-75.20026,,,1, +15621,Evergreen Av & Prospect Av,40.080259,-75.203428,,,1,0 +15622,Evergreen Av & Anderson St ,40.078932,-75.205089,,,1, +15623,Old York Rd & Hawthorne St,40.197979,-75.101422,,,1, +15624,Old York Rd & Juniper St,40.199995,-75.101033,,,1, +15625,Old York Rd & Henry Av,40.201021,-75.100815,,,1, +15626,Old York Rd & Lemon St,40.202065,-75.100645,,,1, +15627,Evergreen Av & Ardleigh St ,40.077569,-75.20643,,,1, +15628,Germantown Av & Rex Av ,40.077324,-75.208856,,,1, +15629,Germantown Av & Laughlin Ln - FS,40.078677,-75.212341,,,1, +15630,Germantown Av & Norman Ln ,40.079278,-75.213889,,,1, +15631,Germantown Av & Waterman Av ,40.079619,-75.214752,,,1, +15632,Germantown Av & Sunset Av ,40.080587,-75.217422,,,1, +15633,Old York Rd & Nemoral St,40.204063,-75.100268,,,1, +15635,Germantown Av & Bells Mill Rd ,40.082037,-75.219654,,,1, +15637,Street Rd & Evergreen Av,40.206032,-75.098837,,,1, +15638,Street Rd & Mearns Rd,40.203063,-75.093542,,,1, +15639,Street Rd & Sunnemead Av,40.202319,-75.092218,,,1, +15640,Street Rd & Madison Av,40.20057,-75.089216,,,1, +15641,Street Rd & Park Av,40.198696,-75.085931,,,1, +15643,Germantown Pk & Thomas Rd ,40.086445,-75.235459,,,1, +15644,Germantown Pk & Thornhill Dr ,40.085013,-75.244975,,,1, +15645,Germantown Pk & Joshua Rd,40.092927,-75.261863,,,1, +15646,Germantown Av & Duval St,40.044892,-75.181819,,,1, +15647,Germantown Av & Washington Ln ,40.043266,-75.180997,,,1, +15648,Germantown Av & Tulpehocken St ,40.042122,-75.18009,,,1, +15649,Germantown Av & Walnut Ln,40.040468,-75.178736,,,1, +15651,Germantown Av & Harvey St,40.039279,-75.177759,,,1, +15652,Germantown Av & Haines St,40.038474,-75.1771,,,1, +15653,Germantown Av & Rittenhouse St,40.037813,-75.176558,,,1, +15654,Germantown Av & Price St,40.036794,-75.175723,,,1, +15655,Germantown Av & Armat St ,40.035023,-75.173825,,,1, +15657,Morris St & Price St ,40.030114,-75.182804,,,1, +15658,Morris St & Rittenhouse St ,40.030615,-75.183653,,,1, +15659,Pulaski Av & Rittenhouse St - FS,40.031577,-75.182326,,,1, +15660,Pulaski Av & Chelten Av - 2,40.030404,-75.180368,,,1, +15661,Chelten Av & Wayne Av,40.031864,-75.178908,,,1, +15663,Chelten Av & Greene St - FS,40.03402,-75.176726,,,1, +15664,Chelten Av & Germantown Av ,40.035774,-75.174709,,,1, +15665,Chelten Av & Kenyon St ,40.036602,-75.173867,,,1, +15666,Chelten Av & Lena St - FS,40.037422,-75.173025,,,1, +15668,Chelten Av & Morton St ,40.040486,-75.169869,,,1, +15669,Chelten Av & Magnolia St ,40.041626,-75.168706,,,1, +15670,Chelten Av & Musgrave St ,40.043086,-75.167211,,,1, +15671,Chelten Av & McMahon St,40.044173,-75.166107,,,1, +15672,Chelten Av & Knox St,40.032835,-75.177723,,,1, +15697,Olney Av & Front St ,40.035236,-75.121545,,,1, +15698,Olney Av & B St ,40.034753,-75.117693,,,1,0 +15700,Germantown Av & School House Ln,40.03436,-75.172799,,,1, +15701,Germantown Av & Coulter St ,40.033133,-75.170711,,,1, +15702,Germantown Av & Penn St ,40.032372,-75.169473,,,1, +15703,Germantown Av & Bringhurst St,40.031521,-75.167915,,,1, +15704,Germantown Av & Ashmead St ,40.030858,-75.166735,,,1, +15705,Germantown Av & Manheim St,40.03024,-75.165626,,,1, +15706,Germantown Av & Seymour St ,40.029254,-75.163892,,,1, +15707,Germantown Av & Logan St ,40.028341,-75.162382,,,1, +15708,Germantown Av & Abbottsford Av ,40.02673,-75.160674,,,1, +15710,Germantown Av & Berkley St ,40.024015,-75.15968,,,1, +15711,Germantown Av & Windrim Av,40.022854,-75.159129,,,1, +15712,Germantown Av & Roberts Av ,40.021584,-75.158105,,,1,0 +15713,Germantown Av & Dennie St ,40.020493,-75.157022,,,1, +15715,Germantown Av & Saint Paul St ,40.019098,-75.155809,,,1, +15716,Germantown Av & Juniata St ,40.01815,-75.15521,,,1, +15717,Germantown Av & Staub St ,40.017132,-75.154588,,,1, +15718,Germantown Av & Hunting Park Av,40.015943,-75.153966,,,1, +15719,Germantown Av & Lycoming St,40.01446,-75.15318,,,1, +15720,Germantown Av & Pike St ,40.012673,-75.152277,,,1, +15721,Broad St & Green Ln,40.045854,-75.143268,,,1, +15722,Olney Av & Clarkson Av ,40.032806,-75.113634,,,1, +15724,Tabor Rd & Olney Av - FS,40.03074,-75.111787,,,1, +15725,Tabor Rd & Garland St ,40.031679,-75.109147,,,1, +15726,Tabor Rd & Adams ,40.033021,-75.106942,,,1, +15727,Tabor Av & Foulkrod St ,40.034036,-75.105944,,,1, +15728,Tabor Av & Harrison St,40.035265,-75.104733,,,1, +15729,Tabor Av & Godfrey Av ,40.03822,-75.101586,,,1, +15730,Tabor Av & Sanger St - FS,40.039092,-75.100565,,,1, +15731,Tabor Av & Rosaile St - FS,40.040649,-75.098737,,,1, +15732,Tabor Av & Van Kirk St ,40.041298,-75.097966,,,1, +15733,Tabor Av & Comly St ,40.042446,-75.096601,,,1, +15734,Tabor Av & Benner St - FS,40.043826,-75.095246,,,1, +15735,Tabor Av & Devereaux Av ,40.04493,-75.094201,,,1, +15736,Tabor Av & Robbins St ,40.046167,-75.093036,,,1, +15737,Levick St & Martins Mill Rd ,40.047037,-75.091175,,,1, +15738,Levick St & Oxford Av,40.045512,-75.088416,,,1, +15739,Algon Av & Levick St - FS,40.043762,-75.084924,,,1, +15740,Algon Av & Hellerman St ,40.044777,-75.083772,,,1, +15741,Broad St & Champlost Av,40.044534,-75.143557,,,1, +15742,Broad St & Nedro Av,40.043,-75.143894,,,1, +15743,Broad St & Grange St,40.041519,-75.144231,,,1, +15745,Algon Av & Magee Av ,40.045915,-75.082348,,,1, +15746,Magee Av & Summerdale Av ,40.044883,-75.080461,,,1, +15747,Magee Av & Cranford Av ,40.042847,-75.07677,,,1, +15748,Magee Av & Castor Av ,40.041941,-75.075119,,,1, +15749,Magee Av & Large St ,40.040784,-75.073103,,,1, +15750,Magee Av & Horrocks St,40.039788,-75.071323,,,1, +15751,Magee Av & Eastwood St ,40.038783,-75.06953,,,1, +15752,Bustleton Av & Unruh Av,40.039142,-75.066797,,,1, +15753,Bustleton Av & Harbison Av,40.040343,-75.065609,,,1, +15754,Harbison Av & Bradford St ,40.039164,-75.065308,,,1, +15755,Harbison Av & Unruh Av ,40.038315,-75.065064,,,1, +15756,Harbison Av & Roosevelt Blvd ,40.036859,-75.064622,,,1, +15757,Harbison Av & Roosevelt Blvd - FS,40.035502,-75.06425,,,1, +15758,Harbison Av & Hellerman St ,40.033903,-75.063904,,,1, +15759,Harbison Av & Levick St ,40.031795,-75.063454,,,1, +15760,Harbison Av & Robbins Av,40.029652,-75.062992,,,1, +15762,Battersby St & Frankford Av ,40.027186,-75.065014,,,1, +15767,Harbison Av & Frankford Av,40.027535,-75.062577,,,1, +15768,Harbison Av & Benner St ,40.024663,-75.062982,,,1, +15769,Harbison Av & Comly St,40.022575,-75.063276,,,1, +15770,Harbison Av & Van Kirk St ,40.018979,-75.06372,,,1, +15771,Harbison Av & Cheltenham Av ,40.017698,-75.065109,,,1, +15772,Harbison Av & Sanger St ,40.016855,-75.066721,,,1, +15773,Harbison Av & Torresdale Av ,40.01363,-75.068711,,,1, +15774,Bridge St & Ditman St,40.014314,-75.070812,,,1, +15775,Broad St & Somerville Av,40.035355,-75.145592,,,1, +15776,Bridge St & Jackson St,40.015887,-75.071395,,,1, +15777,Bridge St & Cottage St,40.016914,-75.071792,,,1, +15778,Broad St & Fisher Av,40.033802,-75.145929,,,1, +15779,Chew Av & Penn Blvd,40.041694,-75.158797,,,1, +15780,Bridge St & Walker St,40.017781,-75.072118,,,1, +15781,Bridge St & Erdrick St,40.018335,-75.072328,,,1, +15782,Olney Av & Elkins Av ,40.040843,-75.157263,,,1, +15783,Bridge St & Charles St ,40.019623,-75.073291,,,1, +15784,Broad St & Duncannon Av,40.03225,-75.146266,,,1, +15785,Bridge St & Hawthorne St ,40.020875,-75.074349,,,1, +15786,Olney Av & 20th St - MBNS,40.040296,-75.156142,,,1, +15787,Bridge St & Duffield St,40.02152,-75.074925,,,1, +15788,Bridge St & Darrah St ,40.022513,-75.075984,,,1, +15789,Olney Av & 20th St - FS,40.039426,-75.154218,,,1, +15790,Broad St & Fisher Ln,40.03035,-75.146687,,,1, +15791,Olney Av & 18th St - MBNS,40.03919,-75.15241,,,1, +15792,Olney Av & Ogontz Av,40.038935,-75.150165,,,1, +15793,Olney Av & 16th St ,40.038949,-75.148628,,,1, +15794,Olney Av & 15th St ,40.038999,-75.146665,,,1, +15795,Olney Av & 13th St,40.038561,-75.142647,,,1, +15796,Olney Av & 12th St - FS,40.038146,-75.140816,,,1, +15797,Broad St & Ruscomb St - FS,40.029226,-75.146987,,,1, +15798,Olney Av & 11th St ,40.037867,-75.139564,,,1, +15799,Olney Av & 10th St,40.037515,-75.138016,,,1, +15800,Olney Av & Wagner Av ,40.037182,-75.136587,,,1, +15801,Broad St & Rockland St,40.027718,-75.147253,,,1, +15802,Broad St & Loudon St,40.02622,-75.14759,,,1, +15803,Bridge St & Darrah St,40.022541,-75.076161,,,1, +15804,Bridge St & Duffield St,40.021547,-75.075102,,,1, +15805,Bridge St & Hawthorne St - FS,40.020786,-75.074432,,,1, +15806,Bridge St & Charles St,40.019668,-75.073492,,,1, +15807,Bridge St & Edrick St - FS,40.018291,-75.072435,,,1, +15808,Bridge St & Cottage St,40.016995,-75.071945,,,1, +15809,Bridge St & Jackson St,40.015967,-75.071548,,,1, +15810,Bridge St & Dittman St,40.014395,-75.070965,,,1, +15811,Harbison Av & Ditman St ,40.014949,-75.068066,,,1, +15812,Harbison Av & Sanger St ,40.016561,-75.066794,,,1, +15813,Harbison Av & Cheltenham Av ,40.01744,-75.06517,,,1, +15814,Olney Av & 7th St ,40.036846,-75.1342,,,1, +15815,Olney Av & 6th St ,40.036654,-75.132569,,,1, +15816,Harbison Av & Comly St ,40.021754,-75.063198,,,1, +15817,Olney Av & 5th St ,40.036391,-75.130584,,,1, +15818,Olney Av & 4th St ,40.036154,-75.128717,,,1, +15819,Olney Av & 3rd St ,40.036036,-75.127736,,,1, +15820,Olney Av & 2nd St ,40.035736,-75.125468,,,1, +15821,Harbison Av & Benner St ,40.024212,-75.062783,,,1, +15822,Olney Av & Mascher St ,40.035545,-75.123955,,,1, +15823,Front St & Olney Av ,40.035432,-75.121485,,,1, +15825,Harbison Av & Robbins Av,40.029267,-75.062663,,,1, +15829,Battersby St & Frankford Av - FS,40.027265,-75.064789,,,1, +15831,Battersby St & Harbison Av,40.029214,-75.062947,,,1, +15833,Rising Sun Av & Chew Av - MBFS,40.037836,-75.111945,,,1, +15834,Rising Sun Av & Adams Av ,40.039071,-75.110048,,,1, +15835,Rising Sun Av & Adams - MBFS,40.039978,-75.108648,,,1, +15837,Rising Sun Av & Godfrey Av ,40.041232,-75.106775,,,1, +15838,Rising Sun Av & Sanger St ,40.041819,-75.105897,,,1, +15839,Rising Sun Av & Cheltenham Av ,40.042814,-75.104379,,,1, +15840,Harbison Av & Levick St ,40.031312,-75.063101,,,1, +15841,Rising Sun Av & Van Kirk St ,40.043899,-75.102719,,,1, +15842,Rising Sun Av & Comly St ,40.044939,-75.101141,,,1, +15843,Rising Sun Av & Benner St ,40.04597,-75.099564,,,1, +15844,Harbison Av & Hellerman St ,40.033545,-75.063539,,,1, +15845,Rising Sun Av & Devereaux Av ,40.046957,-75.098105,,,1, +15846,Harbison Av & Magee Av ,40.035697,-75.063989,,,1, +15847,Rising Sun Av & Robbins St ,40.048248,-75.096846,,,1, +15848,Rising Sun Av & Levick St ,40.049477,-75.095646,,,1, +15849,Harbison Av & Roosevelt Blvd - FS,40.036975,-75.064385,,,1, +15850,Rising Sun Av & Hellerman St ,40.050981,-75.094196,,,1, +15851,Rising Sun Av & Magee Av ,40.052076,-75.093115,,,1, +15852,Rising Sun Av & Martins Mill Rd,40.053029,-75.092176,,,1, +15853,Harbison Av & Unruh Av ,40.037913,-75.06464,,,1, +15854,Harbison Av & Bradford St ,40.039172,-75.065024,,,1, +15855,Bustleton Av & Harbison Av - FS,40.040299,-75.065798,,,1, +15856,Bustleton Av & Unruh Av,40.039275,-75.066809,,,1, +15857,Magee Av & Eastwood St ,40.038792,-75.069353,,,1, +15858,Magee Av & Horrocks St ,40.039797,-75.071145,,,1, +15859,Magee Av & Large St ,40.040792,-75.072926,,,1, +15860,Magee Av & Castor Av ,40.041949,-75.074942,,,1, +15861,Magee Av & Frontenac St ,40.043896,-75.078515,,,1, +15862,Magee Av & Summerdale Av ,40.044892,-75.080284,,,1, +15863,Algon Av & Magee Av - FS,40.045951,-75.08249,,,1, +15864,Algon Av & Hellerman St ,40.044928,-75.08376,,,1, +15865,Algon Av & Levick St ,40.043896,-75.085042,,,1, +15866,Levick St & Oxford Av - MBNS,40.044848,-75.087012,,,1, +15867,Levick St & Oxford Av,40.045521,-75.088238,,,1, +15868,Levick St & Martins Mill Rd ,40.047027,-75.090963,,,1, +15869,Rising Sun Av & Longshore Av,40.055655,-75.089574,,,1, +15870,Rising Sun Av & Tyson Av,40.056874,-75.088373,,,1, +15871,Rising Sun Av & Friendship St,40.058726,-75.086567,,,1, +15872,Rising Sun Av & Saint Vincent St,40.059358,-75.085925,,,1, +15873,Tabor Av & Robbins Av,40.046328,-75.093035,,,1, +15874,Rising Sun Av & Cottman Av ,40.061405,-75.083822,,,1, +15875,Oxford Av & Bleigh Av ,40.063626,-75.083409,,,1, +15876,Oxford Av & Verree Rd - MBNS,40.064795,-75.083451,,,1, +15877,Oxford Av & Rockwell Av,40.066635,-75.08388,,,1, +15878,Oxford Av & Rockwell Av - MBFS,40.069519,-75.084209,,,1, +15879,Oxford Av & Hartel Av - FS,40.071804,-75.08434,,,1, +15880,Oxford Av & Hasbrook Av,40.073331,-75.084581,,,1, +15883,Tabor Av & Devereaux Av,40.04509,-75.094188,,,1, +15884,Tabor Av & Benner St ,40.043835,-75.095376,,,1, +15885,Tabor Av & Comly St ,40.042589,-75.0966,,,1, +15886,Tabor Av & Van Kirk St ,40.041441,-75.097965,,,1, +15887,Tabor Av & Cheltenham Av ,40.040267,-75.099354,,,1, +15888,Tabor Av & Sanger St ,40.039101,-75.100731,,,1, +15889,Tabor Av & Godfrey Av ,40.038362,-75.101585,,,1, +15890,Tabor Av & Harrison St ,40.035399,-75.104744,,,1, +15891,Tabor Av & Foulkrod St,40.03417,-75.105955,,,1, +15892,Tabor Av & Adams Av ,40.033209,-75.106905,,,1, +15893,Tabor Av & Garland St ,40.03183,-75.108992,,,1, +15894,Tabor Av & Olney Av ,40.030883,-75.111952,,,1, +15895,Olney Av & Clarkson Av ,40.032716,-75.113398,,,1, +15896,Olney Av & Rising Sun Av - FS,40.034568,-75.115211,,,1,0 +15898,Olney Av & Front St ,40.035333,-75.121308,,,1, +15899,Olney Av & Mascher St ,40.035634,-75.123789,,,1, +15907,Olney Av & 11th St ,40.037929,-75.13941,,,1, +15908,Olney Av & 12th St ,40.038281,-75.140957,,,1, +15910,Olney Av & Broad St ,40.039065,-75.144548,,31037,1, +15911,Olney Av & 15th St ,40.039114,-75.146511,,,1, +15912,Olney Av & 16th St ,40.039065,-75.148474,,,1, +15913,Olney Av & Ogontz Av - FS,40.039088,-75.150708,,,1, +15914,Olney Av & 18th St - FS,40.039279,-75.152233,,,1, +15915,Olney Av & 20th St ,40.039551,-75.154348,,,1, +15916,Olney Av & 20st St - MBFS,40.040421,-75.156142,,,1, +15917,Olney Av & Elkins Av - FS,40.040986,-75.15731,,,1, +15918,Olney Av & Penn Blvd - FS,40.041908,-75.15895,,,1, +15919,Chew Av & Church Ln ,40.043306,-75.161227,,,1, +15920,Chelten Av & McMahon St ,40.044334,-75.16613,,,1, +15921,Chelten Av & Musgrave St ,40.043247,-75.167234,,,1, +15922,Chelten Av & Magnolia St ,40.041786,-75.168729,,,1, +15923,Chelten Av & Morton St ,40.040718,-75.169821,,,1, +15924,Chelten Av & Baynton St ,40.038936,-75.171648,,,1, +15925,Chelten Av & Lena St ,40.037502,-75.173131,,,1, +15926,Chelten Av & Kenyon St ,40.036763,-75.17389,,,1, +15929,Chelten Av & Knox St ,40.033004,-75.177734,,,1, +15931,Chelten Av & Pulaski Av ,40.030484,-75.180285,,,1, +15941,Broad St & Walnut St,39.949278,-75.164212,,,1, +15947,18th St & Arch St,39.955153,-75.169505,,,1, +15948,18th St & Vine St ,39.958409,-75.168855,,,1, +15950,Ben Franklin Pkwy & 20th St,39.959334,-75.171852,,,1, +15951,Ben Franklin Pkwy & 21th St,39.960507,-75.173513,,,1, +15952,Ben Franklin Pkwy & 22nd St,39.961545,-75.174938,,,1, +15953,Pennsylvania Av & 22nd St - FS,39.963249,-75.174755,,,1,0 +15954,Pennsylvania Av & Spring Garden St,39.964126,-75.175815,,,1, +15955,Pennsylvania Av & 27th St - MBNS,39.96918,-75.181525,,,1, +15960,Poplar St & 30th St,39.973445,-75.185303,,,1, +15961,33th St & Cecil B Moore Av,39.982563,-75.188331,,,1, +15962,33th St & Montgomery Av,39.984062,-75.187995,,,1, +15963,Germantown Pk & Crescent Av ,40.085897,-75.251172,,,1, +15964,Germantown Pk & Westaway Dr ,40.087856,-75.25422,,,1, +15965,Germantown Pk & Chestnut St ,40.089573,-75.256807,,,1, +15966,Germantown Pk & Warner Rd,40.090968,-75.258862,,,1, +15967,Germantown Pk & Joshua Rd - FS,40.093141,-75.261981,,,1, +15968,Germantown Pk & Fairway Rd ,40.096692,-75.267427,,,1, +15969,Germantown Pk & Colonial Dr - MBFS,40.098248,-75.270122,,,1, +15970,Germantown Pk & Mayflower Rd ,40.098982,-75.271398,,,1, +15971,GermantownPk & Meetinghouse Rd,40.100216,-75.273561,,,1, +15972,Germantown Pk & Marple Ln ,40.101406,-75.275925,,,1, +15973,Broad St & Wyoming Av ,40.024632,-75.147927,,,1, +15974,Broad St & Belfield Av - FS,40.022812,-75.148336,,,1, +15975,Broad St & Wingohocking St,40.021545,-75.148601,,,1, +15976,Germantown Pk & Butler Pk - FS,40.103043,-75.279271,,,1, +15977,Germantown Pk & Chemical Rd ,40.105179,-75.281384,,,1, +15978,Broad St & Saint Lukes St - MBFS,40.019083,-75.149143,,,1, +15983,Broad St & Lycoming St,40.01539,-75.149949,,,1, +15985,Broad St & Pike St,40.012384,-75.150611,,,1, +15986,Broad St & Butler St,40.010903,-75.150924,,,1, +15989,33rd St & Berks St,39.985578,-75.187671,,,1, +15990,33rd St & Norris St,39.987086,-75.187347,,,1, +15991,33rd St & Diamond St,39.988603,-75.187011,,,1, +15992,33rd St & Susquehanna Av ,39.990164,-75.186663,,,1, +15993,33rd St & Dauphin St - FS,39.99193,-75.186291,,,1, +15994,33rd St & York St - FS,39.993366,-75.185955,,,1, +15995,33rd St & Cumberland St,39.994731,-75.185644,,,1, +15996,33rd St & Huntingdon St,39.99623,-75.185319,,,1, +15997,33rd St & Lehigh Av,39.997818,-75.184959,,,1, +15998,Lehigh Av & 31st St,39.997401,-75.181877,,,1, +16000,29th St & Chalmers Av - FS,39.998876,-75.178114,,,1, +16002,Clearfield St & 29th St - FS,40.003176,-75.177449,,,1, +16003,Clearfield St & 30th St,40.00333,-75.178713,,,1, +16004,Henry Av & Roberts Av - MBFS,40.010055,-75.180675,,,1,0 +16005,Henry Av & Abbottsford Av ,40.011557,-75.182029,,,1, +16006,Henry Av & Indian Queen Ln - MBNS,40.012568,-75.183172,,,1, +16007,Henry Av & Bowman St,40.013918,-75.184715,,,1, +16008,Henry Av & Ainslie St,40.01492,-75.185847,,,1, +16009,Henry Av & Queen Ln,40.015842,-75.186943,,,1, +16010,Henry Av & Coulter St,40.017702,-75.189123,,,1, +16011,Henry Av & School House Ln ,40.020502,-75.192293,,,1,0 +16012,Henry Av & Hermit St,40.025931,-75.203139,,,1, +16013,Henry Av & Markle St,40.027173,-75.204388,,,1, +16014,Henry Av & Wendover,40.02922,-75.205848,,,1, +16015,Henry Av & Jamestown St,40.029613,-75.206177,,,1, +16016,Henry Av & Rector St,40.030552,-75.20686,,,1, +16017,Roxborough Av & Henry Av - FS,40.031526,-75.207992,,,1, +16018,Roxborough Av & Houghton St,40.030886,-75.209436,,,1, +16019,Roxborough Av & Ridge Av ,40.030095,-75.2112,,,1, +16020,Ridge Av & Gerhard St,40.030677,-75.212002,,,1, +16021,Ridge Av & Monastery Av ,40.031598,-75.213028,,,1, +16022,Lyceum Av & Mitchell St,40.031617,-75.21643,,,1, +16023,Lyceum Av & Pechin St,40.030684,-75.217876,,,1, +16024,Manayunk Av & Lyceum Av,40.029912,-75.219003,,,1, +16028,Main St & Sumac St - FS,40.016763,-75.212293,,,1, +16030,Main St & Haines St ,40.018077,-75.213494,,,1, +16033,Main St & Shurs Ln,40.02219,-75.218163,,,1, +16034,Main St & Jamestown St ,40.022969,-75.219177,,,1, +16036,Main St & Pensdale St ,40.023648,-75.22005,,,1, +16037,Main St & Rector St ,40.02457,-75.221288,,,1, +16038,Main St & Cotton St ,40.025081,-75.222587,,,1, +16039,Main St & Levering St ,40.025905,-75.224606,,,1, +16040,Main St & Green Ln ,40.026855,-75.226944,,,1, +16042,Umbria St & Hermitage St ,40.030903,-75.230326,,,1, +16043,Dauphin St & 32nd St,39.991561,-75.184839,,,1, +16044,Chew Av & 11th St - FS,40.039052,-75.138873,,,1, +16045,Chew Av & 10th St,40.038871,-75.137751,,,1, +16046,Umbria St & Fountain St ,40.032379,-75.232355,,,1, +16052,Manayunk Av & Monastery Av,40.028893,-75.217907,,,1, +16053,10th St & Tabor Rd,40.036837,-75.138185,,,1, +16054,10th St & Clarkson Av,40.035972,-75.138365,,,1, +16058,Wagner Av & Warnock St - FS,40.034814,-75.139446,,,1, +16061,10th St & Wagner Av - FS,40.034173,-75.140028,,,1, +16064,Ridge Av & Hermitage St ,40.03665,-75.218617,,,1, +16066,Ridge Av & Cinnaminson St ,40.040229,-75.224258,,,1, +16067,10th St & Fisher Av - FS,40.032743,-75.139088,,,1, +16068,Ridge Av & Fairthorne Av ,40.041534,-75.225318,,,1, +16070,Ridge Av & Livezey St ,40.043189,-75.227347,,,1, +16071,10th St & Duncannon Av,40.031351,-75.139389,,,1, +16072,Ridge Av & Paoli Av ,40.043887,-75.228457,,,1, +16073,Ridge Av & Domino Ln - 2,40.045338,-75.231929,,,1, +16074,Ridge Av & Harmon Rd ,40.045919,-75.232802,,,1, +16076,Germantown Av & Venango St ,40.007608,-75.150405,,,1, +16079,Ridge Av & Flamingo St ,40.050307,-75.235948,,,1, +16080,Germantown Av & Tioga St ,40.005929,-75.149868,,,1, +16081,Ridge Av & Minerva St ,40.051637,-75.23624,,,1, +16082,Ridge Av & Shawmont Av ,40.052422,-75.23619,,,1, +16084,Ridge Av & Aurania St ,40.053556,-75.236069,,,1, +16085,Germantown Av & Westmoreland St,40.002732,-75.148912,,,1, +16087,Germantown Av & Allegheny Av ,40.001097,-75.148292,,,1, +16091,Cathedral Rd & Ridge Av - FS,40.064591,-75.238641,,,1, +16092,Cathedral Rd & Brierdale Rd ,40.065062,-75.237185,,,1, +16093,Cathedral Rd & Tiona St ,40.064791,-75.234986,,,1, +16094,Cathedral Rd & Old Line Rd ,40.065243,-75.233234,,,1, +16095,Cathedral Rd & Sagamore Rd ,40.066321,-75.231599,,,1, +16097,Germantown Av & Glenwood Av ,39.999275,-75.147495,,,1, +16098,Germantown Av & Indiana Av ,39.997774,-75.146899,,,1, +16099,Germantown Av & Cambria St ,39.996213,-75.147165,,,1, +16100,Germantown Av & Somerset St ,39.994723,-75.14756,,,1, +16101,Germantown Av & Huntingdon St ,39.991565,-75.148388,,,1, +16102,10th St & Cumberland St ,39.990057,-75.148418,,,1, +16103,10th St & York St ,39.988559,-75.148766,,,1, +16104,10th St & Dauphin St ,39.987078,-75.149067,,,1, +16105,10th St & Susquehanna Av ,39.985472,-75.149416,,,1, +16108,12th St & Susquehanna Av - FS,39.985657,-75.152606,,,1, +16109,12th St & Diamond St ,39.984266,-75.152906,,,1, +16110,12th St & Norris St ,39.982812,-75.153195,,,1, +16111,12th St & Berks St ,39.98134,-75.153473,,,1, +16112,12th St & Montgomery Av ,39.979814,-75.153892,,,1, +16113,12th St & Cecil B Moore Av ,39.978227,-75.154229,,,1, +16114,12th St & Oxford St,39.976862,-75.15453,,,1, +16115,12th St & Jefferson St ,39.975443,-75.154819,,,1, +16116,12th St & Master St ,39.974078,-75.155143,,,1, +16117,12th St & Thompson St ,39.972812,-75.155431,,,1, +16118,12th St & Poplar St ,39.969377,-75.156165,,,1, +16119,12th St & Parrish St ,39.968164,-75.156417,,,1, +16120,12th St & Brown St ,39.967209,-75.156622,,,1, +16121,12th St & Fairmount Av,39.966228,-75.15685,,,1, +16122,12th St & Wallace St ,39.96464,-75.157187,,,1, +16123,12th St & Green St ,39.963044,-75.157547,,,1, +16124,12th St & Ridge Av ,39.962205,-75.157716,,,1, +16125,12th St & Buttonwood St,39.961072,-75.157968,,,1, +16126,12th St & Noble St ,39.960037,-75.158185,,,1, +16127,12th St & Callowhill St ,39.959199,-75.158377,,,1, +16128,12th St & Vine St ,39.957673,-75.158725,,,1, +16129,12th St & Race St ,39.955853,-75.159121,,,1, +16130,12th St & Arch St ,39.954025,-75.159542,,,1, +16131,12th St & Chestnut St ,39.950501,-75.160299,,,1, +16132,12th St & Walnut St ,39.948967,-75.160624,,,1, +16133,10th St & Lindley Av,40.029799,-75.139726,,,1, +16134,10th St & Ruscomb St,40.0283,-75.14004,,,1, +16135,10th St & Rockland St,40.026819,-75.140377,,,1, +16136,9th St & Loudon St - FS,40.024897,-75.139143,,,1, +16137,9th St & Wyoming Av,40.023533,-75.139444,,,1, +16138,9th St & Courtland St,40.021945,-75.139794,,,1, +16139,9th St & Wingohocking St - FS,40.020241,-75.140226,,,1, +16140,9th St & Cayuga St,40.018965,-75.140515,,,1, +16141,Grakyn Ln & Wissahickon Av - FS,40.068286,-75.232753,,,1, +16142,Grakyn Ln & Sagamore Rd - FS,40.06777,-75.233523,,,1, +16143,Grakyn Ln & Old Line Rd ,40.066843,-75.234827,,,1, +16144,Old Line Rd & Cathedral Rd ,40.065369,-75.233482,,,1, +16145,Cathedral Rd & Tiona St ,40.065023,-75.234867,,,1, +16146,9th St & Bristol St - FS,40.017485,-75.14084,,,1, +16147,9th St & Hunting Park Av,40.015879,-75.141189,,,1, +16148,9th St & Lycoming St,40.014291,-75.141538,,,1, +16156,9th St & Luzerne St - FS,40.01256,-75.141912,,,1, +16157,9th St & Pike St - FS,40.01108,-75.142249,,,1, +16158,9th St & Butler St,40.009831,-75.142525,,,1, +16159,Rising Sun Av & 9th St,40.006833,-75.142963,,,1, +16160,Rising Sun Av & 11th St,40.005208,-75.146586,,,1, +16161,Rising Sun Av & Old York Rd,40.004346,-75.148527,,,1, +16162,Rising Sun Av & Germantown Av - FS,40.003929,-75.14938,,,1, +16163,Cathedral Rd & Brierdale Rd ,40.065276,-75.237114,,,1, +16164,Cathedral Rd & Ridge Av ,40.064467,-75.239245,,,1, +16168,Ridge Av & Evergreen Av ,40.055019,-75.235994,,,1, +16169,Ridge Av & Aurania St,40.05385,-75.236151,,,1, +16170,Ridge Av & Shawmont Av ,40.052672,-75.236331,,,1, +16171,Ridge Av & Mitchell St,40.022772,-75.208468,,,1, +16172,Ridge Av & Flamingo St ,40.050387,-75.236101,,,1, +16173,Ridge Av & Wigard Av ,40.048708,-75.235432,,,1, +16175,Ridge Av & Harmon Rd,40.045929,-75.233003,,,1, +16179,Ridge Av & Fairthorne Av - MBFS,40.041677,-75.225613,,,1, +16180,Ridge Av & Cinnaminson St ,40.040283,-75.224447,,,1, +16181,Ridge Av & Leverington Av ,40.035657,-75.21752,,,1, +16182,Ridge Av & Hermit St,40.023824,-75.207827,,,1, +16185,Ridge Av & Monastary Av ,40.031625,-75.213205,,,1,0 +16186,Ridge Av & Gerhard St,40.0309,-75.212392,,,1, +16187,Ridge Av & Roxborough Av ,40.029997,-75.211425,,,1, +16188,Roxborough Av & Mitchell St ,40.029179,-75.21326,,,1, +16189,Roxborough Av & Pechin St ,40.028397,-75.214988,,,1, +16190,Roxborough Av & Manayunk Av ,40.027694,-75.216574,,,1, +16193,Manayunk Av & Green Ln,40.031164,-75.220323,,,1, +16194,Manayunk Av & Dupont St ,40.031736,-75.220925,,,1, +16195,Manayunk Av & Krams St ,40.03238,-75.22162,,,1, +16196,Manayunk Av & Leverington Av ,40.033015,-75.222328,,,1, +16200,Main St & Cotton St ,40.025081,-75.222835,,,1, +16201,Main St & Rector St ,40.024615,-75.221643,,,1, +16202,Main St & Pensdale St ,40.023675,-75.220274,,,1, +16203,Main St & Jamestown St ,40.022996,-75.219402,,,1, +16204,Main St & Shurs Ln,40.022209,-75.218376,,,1, +16205,Main St & Hermit St,40.020375,-75.21597,,,1, +16210,Dauphin St & 31st St ,39.991389,-75.183256,,,1, +16211,Dauphin St & 30th St,39.991171,-75.181591,,,1, +16212,Dauphin St & 29th St,39.990945,-75.179985,,,1, +16213,Dauphin St & 28th St ,39.990736,-75.178332,,,1, +16214,Dauphin St & 27th St ,39.990537,-75.176938,,,1, +16215,Dauphin St & 26th St ,39.990338,-75.17532,,,1, +16216,Dauphin St & 25th St,39.990138,-75.173738,,,1, +16217,Dauphin St & Glenwood Av,39.989685,-75.17036,,,1, +16218,Dauphin St & 21st St,39.989322,-75.167372,,,1, +16219,Dauphin St & 20th St,39.989041,-75.165506,,,1, +16220,Dauphin St & 19th St,39.988841,-75.163924,,,1, +16221,Dauphin St & 18th St ,39.988642,-75.162377,,,1, +16222,Dauphin St & 17th St,39.988442,-75.160818,,,1, +16223,Dauphin St & 16th St,39.988242,-75.159212,,,1, +16224,Dauphin St & 15th St,39.988034,-75.157641,,,1, +16225,Dauphin St & 13th St,39.987543,-75.153803,,,1, +16226,Dauphin St & 12th St,39.987352,-75.152233,,,1, +16227,Dauphin St & 11th St,39.987144,-75.15065,,,1, +16228,Dauphin St & 10th St,39.986953,-75.149068,,,1, +16229,Dauphin St & 9th St,39.986753,-75.147509,,,1, +16230,Dauphin St & 8th St,39.986617,-75.146529,,,1, +16231,Dauphin St & 6th St ,39.986217,-75.143612,,,1, +16232,Dauphin St & 5th St ,39.985981,-75.141593,,,1, +16234,5th St & Cumberland St ,39.988915,-75.140825,,,1, +16236,5th St & Godfrey Av,40.045758,-75.128559,,,1, +16237,5th St & Spencer St ,40.044161,-75.128908,,,1, +16238,5th St & Champlost St ,40.042653,-75.129234,,,1, +16239,5th St & Nedro Av ,40.041128,-75.129559,,,1, +16240,5th St & Grange St ,40.039602,-75.129897,,,1, +16241,5th St & Chew St ,40.038059,-75.130246,,,1, +16242,5th St & Olney Av ,40.036516,-75.130584,,,1, +16243,5th St & Tabor Rd ,40.034821,-75.130945,,,1, +16244,5th St & Somerville Av ,40.033465,-75.131259,,,1, +16245,5th St & Fisher Av ,40.031949,-75.131584,,,1, +16246,5th St & Duncannon Av ,40.030405,-75.131921,,,1, +16247,5th St & Lindley Av ,40.028862,-75.132259,,,1, +16248,5th St & Rockland St ,40.025865,-75.132898,,,1, +16249,5th St & Loudon St ,40.024375,-75.133247,,,1, +16251,5th St & Annsbury St ,40.020423,-75.134102,,,1, +16252,5th St & Wingohocking St ,40.019692,-75.134247,,,1, +16253,5th St & Cayuga St ,40.018202,-75.134573,,,1, +16254,5th St & Bristol St ,40.016703,-75.134898,,,1, +16255,5th St & Hunting Park Av ,40.015115,-75.135247,,,1, +16256,5th St & Lycoming St ,40.013528,-75.135596,,,1, +16257,5th St & Luzerne St ,40.012056,-75.135922,,,1, +16258,5th St & Pike St ,40.010548,-75.136247,,,1, +16260,6th St & Venango St,40.006128,-75.139255,,,1, +16261,6th St & Tioga St ,40.004621,-75.13958,,,1, +16262,6th St & Glenwood Av ,40.002016,-75.140146,,,1, +16263,6th St & Allegheny Av ,40.000062,-75.140579,,,1, +16264,6th St & Indiana Av ,39.997002,-75.141253,,,1, +16265,6th St & Cambria St ,39.995531,-75.141578,,,1, +16266,6th St & Lehigh Av ,39.992453,-75.142252,,,1, +16267,6th St & Huntingdon St ,39.990847,-75.14259,,,1, +16268,6th St & York St ,39.98785,-75.143251,,,1, +16269,6th St & Dauphin St ,39.986342,-75.143588,,,1, +16270,6th St & Susquehanna Av ,39.984835,-75.143925,,,1, +16273,8th St & Norris St ,39.982058,-75.147528,,,1, +16274,8th St & Berks St,39.980622,-75.147864,,,1, +16275,8th St & Montgomery Av ,39.979079,-75.148189,,,1, +16276,8th St & Cecil B Moore Av ,39.977607,-75.148514,,,1, +16277,8th St & Oxford St ,39.976135,-75.148827,,,1, +16278,8th St & Jefferson St ,39.974708,-75.149139,,,1, +16279,8th St & Master St ,39.973334,-75.14944,,,1, +16280,Thompson St & Franklin St,39.971824,-75.148844,,,1, +16281,Franklin St & Girard Av ,39.970566,-75.149026,,,1, +16282,8th St & Poplar St ,39.968044,-75.150595,,,1, +16283,8th St & Brown St ,39.9656,-75.151136,,,1, +16284,8th St & Wallace St,39.963584,-75.151569,,,1, +16285,8th St & Green St ,39.962504,-75.151809,,,1, +16288,8th St & Cherry St ,39.954153,-75.153022,,,1, +16289,8th St & Arch St ,39.953235,-75.153227,,,1, +16290,8th St & Chestnut St ,39.949711,-75.153984,,,1, +16291,8th St & Walnut St ,39.948221,-75.154297,,,1, +16292,8th St & Locust St ,39.947088,-75.154549,,,1, +16293,8th St & Spruce St ,39.945822,-75.154826,,,1, +16294,8th St & Pine St ,39.944403,-75.155103,,,1, +16295,8th St & Lombard St ,39.94352,-75.155331,,,1, +16296,8th St & South St ,39.942485,-75.155559,,,1, +16297,8th St & Fitzwater St ,39.940657,-75.155955,,,1, +16298,8th St & Catharine St ,39.939666,-75.156172,,,1, +16299,8th St & Christian St,39.938667,-75.156376,,,1, +16300,8th St & Carpenter St ,39.937294,-75.156688,,,1, +16301,8th St & Federal St ,39.934145,-75.157373,,,1, +16302,8th St & Wharton St ,39.932949,-75.157638,,,1, +16303,8th St & Reed St ,39.931718,-75.157902,,,1, +16304,8th St & Dickinson St ,39.930505,-75.158202,,,1, +16305,8th St & Tasker St ,39.929283,-75.158454,,,1, +16306,8th St & Morris St ,39.928061,-75.15873,,,1, +16307,8th St & Moore St ,39.926839,-75.158995,,,1, +16309,8th St & McKean St ,39.924403,-75.159523,,,1, +16310,8th St & Jackson St ,39.921959,-75.160076,,,1, +16311,8th St & Wolf St ,39.920737,-75.160328,,,1, +16312,8th St & Ritner St ,39.91947,-75.160604,,,1, +16313,8th St & Porter St ,39.91823,-75.160869,,,1, +16314,8th St & Shunk St ,39.916981,-75.161168,,,1, +16316,Lehigh Av & 4th St,39.991828,-75.13845,,,1, +16318,American St & Lehigh Av - FS,39.991422,-75.13629,,,1, +16319,American St & Cumberland St ,39.988558,-75.136892,,,1, +16320,American St & York St ,39.987068,-75.137205,,,1, +16321,Dauphin St & Palethorp St ,39.985209,-75.135736,,,1, +16322,Dauphin St & Hancock St ,39.985136,-75.135181,,,1, +16323,Dauphin St & Mascher St ,39.985018,-75.134272,,,1, +16325,Jasper St & York St,39.985233,-75.131117,,,1, +16326,Jasper St & Cumberland St,39.986442,-75.128796,,,1, +16327,Cumberland St & Emerald St,39.98561,-75.128008,,,1, +16328,Cumberland St & Coral St,39.984644,-75.127173,,,1, +16329,Cumberland St & Amber St,39.983705,-75.12635,,,1, +16330,Cumberland St & Frankford Av,39.983258,-75.125938,,,1, +16331,Cumberland St & Trenton Av,39.982417,-75.12521,,,1, +16332,Cumberland St & Sepviva St,39.981701,-75.124586,,,1, +16333,Cumberland St & Tulip St,39.981039,-75.123999,,,1, +16334,Cumberland St & Memphis St,39.980386,-75.123422,,,1, +16335,Cumberland St & Cedar St,39.979456,-75.122611,,,1, +16336,Cumberland St & Gaul St,39.97849,-75.121741,,,1, +16337,Cumberland St & Almond St,39.977828,-75.121177,,,1, +16338,Cumberland St & Aramingo Av,39.97637,-75.119884,,,1, +16339,Huntingdon St & Emery St,39.975834,-75.115846,,,1, +16340,Huntingdon St & Edgemont St,39.976728,-75.116634,,,1, +16341,Huntingdon St & Thompson St,39.977283,-75.117116,,,1, +16342,Huntingdon St & Aramingo Av,39.978848,-75.118515,,,1, +16343,Huntingdon St & Moyer St,39.979492,-75.119043,,,1, +16344,Huntingdon St & Cedar St,39.98061,-75.120019,,,1, +16345,Huntingdon St & Memphis St,39.98154,-75.120854,,,1, +16346,Huntingdon St & Tulip St,39.982202,-75.121442,,,1, +16347,Ridge Av & Summit Av,40.056742,-75.235978,,,1,0 +16348,Huntingdon St & Sepviva St,39.982837,-75.121971,,,1, +16349,Huntingdon St & Trenton Av,39.98349,-75.122618,,,1, +16350,Huntingdon St & Frankford Av,39.985136,-75.124017,,,1, +16351,Huntingdon St & Coral St,39.985798,-75.12464,,,1, +16352,Huntingdon St & Emerald St,39.986764,-75.125451,,,1, +16353,Huntingdon St & Jasper St,39.987721,-75.126333,,,1, +16354,Huntingdon St & Kensington Av,39.988785,-75.127167,,,1, +16355,Kensington Av & Cumberland St ,39.987666,-75.129535,,,1, +16358,Susquehanna Av & Mascher St ,39.983528,-75.134396,,,1, +16359,Susquehanna Av & Hancock St ,39.983637,-75.135306,,,1, +16360,Susquehanna Av & 2nd St ,39.983773,-75.136415,,,1, +16361,Susquehanna Av & American St ,39.983946,-75.137655,,,1, +16362,Susquehanna Av & 3rd St,39.984109,-75.138907,,,1, +16363,Susquehanna Av & 4th St,39.984237,-75.139899,,,1, +16364,Susquehanna Av & 5th St,39.984473,-75.141741,,,1, +16365,Susquehanna Av & 6th St ,39.984754,-75.143736,,,1, +16367,Susquehanna Av & 9th St ,39.985254,-75.147633,,,1, +16368,Susquehanna Av & 10th St ,39.985445,-75.149227,,,1, +16369,Susquehanna Av & 11th St,39.985645,-75.150786,,,1, +16370,Susquehanna Av & 12th St ,39.985862,-75.152368,,,1, +16371,Susquehanna Av & 13th St,39.98608,-75.153939,,,1, +16372,Susquehanna Av & 15th St,39.98657,-75.157777,,,1, +16373,Susquehanna Av & 16th St,39.986779,-75.159371,,,1, +16374,Susquehanna Av & 17th St,39.98697,-75.160918,,,1, +16375,Susquehanna Av & 18th St,39.987169,-75.162489,,,1, +16376,Susquehanna Av & 19th St,39.98736,-75.164059,,,1, +16377,Susquehanna Av & 20th St,39.987569,-75.165642,,,1, +16378,Susquehanna Av & 21st St ,39.987823,-75.167519,,,1, +16382,Oxford Av & Borbeck Av,40.07409,-75.084825,,,1, +16383,Oxford Av & Hartel Av ,40.07209,-75.084539,,,1, +16384,Oxford Av & Hartel Av - MBFS,40.07109,-75.084355,,,1, +16385,York St & Sedgley Av,39.991363,-75.170602,,,1, +16386,York St & 24th St,39.991499,-75.17163,,,1, +16387,York St & 25th St,39.991708,-75.173212,,,1, +16388,York St & 26th St,39.991907,-75.174759,,,1, +16389,York St & 27th St - FS,39.992161,-75.176743,,,1, +16390,York St & 28th St ,39.992306,-75.177818,,,1, +16391,York St & 29th St ,39.992515,-75.179471,,,1, +16392,York St & 30th St ,39.992732,-75.181089,,,1, +16393,York St & 31st St ,39.992932,-75.182684,,,1, +16394,York St & 32nd St ,39.993131,-75.184243,,,1, +16395,Aronimink Station,39.949203,-75.306033,,,1, +16396,10th St & Pike St,40.011493,-75.143712,,,1, +16397,10th St & Butler St ,40.010039,-75.144026,,,1, +16398,10th St & Erie Av,40.008452,-75.144398,,,1, +16399,Erie Av & 11th St,40.008589,-75.14578,,,1, +16401,Erie Av & Camac St ,40.008925,-75.148332,,,1, +16402,Aronimink Station,39.949319,-75.306304,,,1, +16404,Moreland Rd & Kimball Av ,40.151717,-75.134259,,,1, +16405,Welsh Rd & Computer Av - FS,40.155059,-75.139823,,,1, +16406,Welsh Rd & Dryden Rd - MBNS,40.15876,-75.146084,,,1, +16408,Dresher Rd & Welsh Rd - MBFS,40.16373,-75.149039,,,1, +16410,Pulaski Av & 17th St ,40.011101,-75.155639,,,1, +16411,Pulaski Av & 18th St ,40.012737,-75.156886,,,1, +16412,Dresher Rd & Walnut Grove Dr ,40.168575,-75.1446,,,1, +16413,Dresher Rd & Witmer Rd ,40.170329,-75.142852,,,1, +16414,18th St & Hunting Park Av,40.014512,-75.156572,,,1, +16415,Clarissa St & Juniata St,40.016622,-75.158136,,,1, +16416,Clarissa St & Bristol St,40.017659,-75.158935,,,1, +16417,Dresher Rd & Witmer Rd - MBFS,40.172344,-75.140847,,,1, +16418,Gibralter Rd & Blair Mill Rd - MBNS,40.170873,-75.131277,,,1, +16419,Electronic Dr & Welsh Rd - MBNS,40.161057,-75.147437,,,1, +16420,Prudential Rd & Gibralter Rd - MBFS,40.172577,-75.134857,,,1, +16421,Prudential Rd & Lakeside Dr ,40.1715,-75.135835,,,1, +16423,Blair Mill Rd & Carrell Ln - FS,40.167119,-75.132537,,,1, +16424,Blair Mill Rd & Witmer Rd - MBNS,40.166059,-75.133666,,,1, +16425,Blair Mill Rd & Witmer Rd - 1 MBFS,40.163433,-75.136472,,,1, +16426,Blair Mill Rd & Welsh Rd - MBNS,40.159853,-75.140218,,,1, +16427,Oxford Av & Rockwell Av ,40.066743,-75.084045,,,1, +16429,Oxford Av & Bleigh Av ,40.063849,-75.083562,,,1, +16430,Rising Sun Av & Cottman Av ,40.061547,-75.083845,,,1, +16431,Rising Sun Av & Saint Vincent St,40.059491,-75.085937,,,1, +16432,Rising Sun Av & Princeton Av,40.058272,-75.087149,,,1, +16433,Rising Sun Av & Tyson Av,40.057008,-75.088385,,,1, +16434,Rising Sun Av & Longshore Av,40.055788,-75.089585,,,1, +16435,Rising Sun Av & Martins Mill Rd,40.053216,-75.09214,,,1, +16436,Rising Sun Av & Magee Av ,40.052246,-75.093078,,,1, +16438,Wayne Av & Berkley St,40.022315,-75.16192,,,1, +16439,Wayne Av & Apsley St,40.02296,-75.1631,,,1, +16440,Wayne Av & Abbottsford Av,40.023731,-75.16448,,,1, +16441,Wayne Av & Logan St,40.024564,-75.166026,,,1, +16442,Wayne Av & Seymour St,40.025379,-75.167488,,,1, +16443,Wayne Av & Hansberry St,40.027225,-75.170886,,,1, +16444,Wayne Av & Queen Ln,40.028049,-75.172373,,,1, +16445,Wayne Av & Coulter St,40.029249,-75.174461,,,1, +16446,Wayne Av & School House Ln,40.030467,-75.176549,,,1, +16447,Wayne Av & Rittenhouse St,40.033083,-75.181091,,,1, +16448,Wayne Av & Harvey St,40.034059,-75.18279,,,1, +16449,Wayne Av & Walnut Ln,40.034892,-75.18423,,,1, +16450,Wayne Av & Tulpehocken St,40.03602,-75.186189,,,1, +16451,Wayne Av & Washington Ln,40.036718,-75.187357,,,1, +16452,Wayne Av & Johnson St,40.038223,-75.189917,,,1, +16454,Wayne Av & Upsal St ,40.039317,-75.192527,,,1, +16455,Wayne Av & Hortter St,40.039997,-75.193778,,,1, +16456,Wayne Av & Springer St ,40.041551,-75.194198,,,1, +16457,Wayne Av & Arbutus St,40.042278,-75.196111,,,1, +16458,Wayne Av & Westview St ,40.042772,-75.197765,,,1, +16459,Sedgwick St & Wayne Av - Loop,40.044248,-75.20009,,,1, +16460,Wayne Av & Westview St,40.042754,-75.198025,,,1, +16461,Wayne Av & Arbutus St - FS,40.042144,-75.196017,,,1, +16462,Wayne Av & Springer St ,40.041587,-75.194423,,,1, +16463,Wayne Av & Hortter St ,40.04015,-75.194049,,,1, +16464,Wayne Av & Lincoln Dr ,40.039191,-75.192373,,,1, +16466,Wayne Av & Washington Ln,40.036719,-75.187605,,,1, +16467,Wayne Av & Tulpehocken St,40.036012,-75.186437,,,1, +16468,Wayne Av & Walnut Ln,40.034874,-75.18449,,,1, +16469,Wayne Av & Harvey St ,40.034041,-75.183051,,,1, +16470,Wayne Av & Rittenhouse St,40.033074,-75.181363,,,1, +16471,Wayne Av & School House Ln,40.03045,-75.176809,,,1, +16472,Wayne Av & Coulter St,40.029232,-75.174721,,,1, +16473,Wayne Av & Queen Ln ,40.028032,-75.172633,,,1, +16474,Wayne Av & Hansberry St,40.027208,-75.171146,,,1, +16475,Wayne Av & Seymour St ,40.025362,-75.167748,,,1, +16476,Wayne Av & Logan St,40.024556,-75.166274,,,1, +16477,Wayne Av & Abbottsford Av,40.023713,-75.16474,,,1, +16478,Wayne Av & Apsley St,40.022943,-75.16336,,,1, +16479,Clarissa St & Dennie St,40.019036,-75.160183,,,1, +16480,Clarissa St & Bristol St ,40.017731,-75.159172,,,1, +16481,Clarissa St & Juniata St,40.016694,-75.158372,,,1, +16482,Clarissa St & Hunting Park Av,40.014762,-75.156843,,,1, +16483,18th St & Pike St,40.01321,-75.157002,,,1, +16489,Erie Av & Old York Rd,40.008727,-75.147706,,,1, +16491,10th St & Erie Av - FS,40.008505,-75.144209,,,1, +16492,10th St & Butler St,40.00987,-75.143896,,,1, +16493,10th St & Pike St,40.011324,-75.143583,,,1, +16494,10th St & Luzerne St ,40.012849,-75.143246,,,1, +16495,12th St & Locust St ,39.947843,-75.160852,,,1, +16496,Oregon Av & 5th St ,39.915035,-75.156573,,,1, +16497,Oregon Av & 6th St ,39.915253,-75.158153,,,1, +16498,12th St & Spruce St ,39.946629,-75.161116,,,1, +16499,12th St & Pine St ,39.945184,-75.161417,,,1, +16500,12th St & Lombard St ,39.944274,-75.161598,,,1, +16501,12th St & South St ,39.94332,-75.161814,,,1, +16502,12th St & Bainbridge St ,39.942419,-75.16203,,,1, +16503,12th St & Fitzwater St ,39.941447,-75.162258,,,1, +16504,12th St & Catharine St ,39.940439,-75.162474,,,1, +16505,12th St & Christian St ,39.939671,-75.162642,,,1, +16506,12th St & Carpenter St ,39.938708,-75.162846,,,1, +16507,12th St & Ellsworth St ,39.936192,-75.163399,,,1, +16509,12th St & Federal St ,39.935175,-75.163615,,,1, +16511,12th St & Wharton St,39.93373,-75.163939,,,1, +16514,12th St & Reed St ,39.932544,-75.164191,,,1, +16516,12th St & Dickinson St ,39.931331,-75.164491,,,1, +16518,12th St & Tasker St ,39.9301,-75.164732,,,1, +16521,Roxborough Av & Houghton St ,40.030628,-75.209744,,,1, +16522,12th St & Morris St ,39.928886,-75.165008,,,1, +16523,Roxborough Av & Henry Av ,40.031437,-75.207909,,,1, +16524,12 th St & Moore St ,39.927691,-75.165295,,,1, +16525,Henry Av & Rector St ,40.030579,-75.20712,,,1, +16526,Henry Av & Jamestown St,40.029631,-75.206437,,,1, +16527,Henry Av & Walnut Ln ,40.028657,-75.205731,,,1, +16528,Henry Av & Markle St,40.027192,-75.20466,,,1, +16529,Henry Av & Hermit St ,40.025842,-75.203387,,,1, +16530,Henry Av & School House Ln ,40.020431,-75.192542,,,1,0 +16531,Henry Av & Coulter St ,40.017738,-75.189312,,,1, +16532,Henry Av & Midvale Av,40.016987,-75.188452,,,1, +16533,Henry Av & Queen Ln ,40.015878,-75.187191,,,1, +16534,Henry Av & Ainslie St,40.014912,-75.186071,,,1, +16535,Henry Av & Bowman St ,40.013928,-75.18494,,,1, +16536,Henry Av & Abbottsford Av ,40.011826,-75.182465,,,1, +16537,Hunting Park Av & Henry Av - FS,40.005141,-75.178305,,,1, +16538,Hunting Park Av & 29th St,40.005897,-75.176884,,,1, +16542,Chalmers Av & Lehigh Av ,39.997318,-75.180223,,,1, +16543,Lehigh Av & 31st St,39.997526,-75.181687,,,1, +16544,Lehigh Av & Douglas St - MBNS,39.997698,-75.183034,,,1, +16545,33rd St & Lehigh Av - FS,39.997453,-75.185185,,,1, +16546,33rd St & Huntingdon St,39.996346,-75.185425,,,1, +16547,33rd St & Cumberland St,39.994848,-75.185773,,,1, +16548,33rd St & York St,39.993367,-75.186097,,,1, +16549,33rd St & Dauphin St,39.991841,-75.186457,,,1, +16550,33rd St & Susquehanna Av,39.990289,-75.186781,,,1, +16551,33rd St & Diamond St,39.988728,-75.187129,,,1, +16552,33rd St & Norris St,39.987158,-75.187477,,,1, +16553,33rd St & Berks St ,39.985677,-75.187801,,,1, +16554,33rd St & Montgomery Av ,39.984187,-75.188113,,,1, +16555,33rd St & Cecil B Moore Av,39.982938,-75.188401,,,1, +16557,Poplar St & 28th St,39.972948,-75.182221,,,1, +16558,Poplar St & 27th St ,39.972775,-75.180792,,,1, +16559,Poplar St & 26th St,39.972576,-75.179199,,,1, +16560,26th St & Parrish St,39.97147,-75.179462,,,1, +16561,26th St & Brown St,39.970372,-75.179702,,,1, +16562,26th St & Aspen St ,39.969159,-75.179978,,,1, +16563,26th St & Pennsylvania Av ,39.968008,-75.180195,,,1, +16564,Pennsylvania Av & 25th St ,39.966632,-75.179066,,,1, +16565,Pennsylvania Av & 24th St,39.965433,-75.177747,,,1, +16566,Pennsylvania Av & 23rd St - FS,39.964002,-75.176122,,,1, +16569,21st St & Ben Franklin Pkwy,39.960614,-75.173654,,,1, +16575,12th St & Mifflin St ,39.926442,-75.165536,,,1, +16576,12th St & McKean St ,39.925229,-75.165836,,,1, +16577,12th St & Snyder Av ,39.924025,-75.166112,,,1, +16585,12th St & Jackson St ,39.922785,-75.166364,,,1, +16586,12th St & Wolf St ,39.921536,-75.16664,,,1, +16587,12th St & Ritner St ,39.920287,-75.166904,,,1, +16588,12th St & Porter St ,39.919065,-75.167192,,,1, +16589,12th St & Shunk St ,39.917771,-75.167457,,,1, +16590,12th St & Oregon Av,39.916522,-75.167709,,,1, +16591,Oregon Av & 10th St ,39.915855,-75.164643,,,1, +16592,10th St & Johnston St ,39.914714,-75.164895,,,1, +16594,11th St & Snyder Av,39.923637,-75.164401,,,1, +16595,Old York Rd & Nedro Av,40.042876,-75.144356,,,1, +16597,Old York Rd & Church Ln,40.046171,-75.145182,,,1, +16598,Old York Rd & Godfrey Av,40.04776,-75.145401,,,1, +16599,Old York Rd & Stenton Av,40.04858,-75.144972,,,1, +16600,11th St & Mifflin St ,39.926073,-75.163861,,,1, +16601,11th St & Moore St ,39.927295,-75.163562,,,1, +16602,Old York Rd & Medary Av - FS,40.049971,-75.144067,,,1, +16603,11th St & Morris St ,39.928517,-75.163309,,,1, +16604,Old York Rd & Chelten Av,40.050675,-75.143592,,,1, +16606,Passyunk Av & Dickinson St ,39.930844,-75.162191,,,1, +16607,Old York Rd & 65th St,40.05211,-75.142628,,,1, +16608,Passyunk Av & 10th St ,39.931689,-75.161125,,,1, +16609,11th St & Wharton St ,39.93337,-75.162229,,,1, +16611,Old York Rd & Broad St - FS,40.054908,-75.140855,,,1, +16612,Old York Rd & 68th Av,40.056477,-75.139926,,,1, +16613,Old York Rd & 69th Av,40.057903,-75.139045,,,1, +16614,Old York Rd & Lakeside Av,40.058625,-75.138604,,,1, +16615,Old York Rd & 70th Av,40.059364,-75.138152,,,1, +16616,Old York Rd & 71st Av,40.060817,-75.137271,,,1, +16618,Old York Rd & Valley Rd,40.062974,-75.135914,,,1, +16619,Old York Rd & Melrose Av,40.066853,-75.134526,,,1, +16620,Old York Rd & Academy Ln,40.068816,-75.134198,,,1, +16621,Old York Rd & Ashbourne Rd,40.071153,-75.133597,,,1, +16622,Old York Rd & Spring Av,40.073014,-75.131626,,,1, +16623,Old York Rd & Chelten Hills Dr,40.074499,-75.129538,,,1, +16624,Old York Rd & Stahr Rd,40.07588,-75.128219,,,1, +16625,Old York Rd & Church Rd,40.076833,-75.127304,,,1, +16626,Old York Rd & Forrest Av,40.07808,-75.126376,,,1, +16628,Old York Rd & Greenbriar Rd,40.080552,-75.126425,,,1, +16629,Old York Rd & Meetinghouse Rd - FS,40.083143,-75.127325,,,1, +16630,Old York Rd & Breyer Dr,40.085018,-75.127814,,,1, +16632,Old York Rd & Lenox Rd,40.088391,-75.127161,,,1, +16635,Old York Rd & Greenwood Av,40.095144,-75.125641,,,1, +16636,Old York Rd & West Av - FS,40.096027,-75.125744,,,1, +16637,Old York Rd & Homestead Rd,40.097081,-75.125763,,,1, +16638,Old York Rd & Vista Rd - FS,40.098536,-75.125793,,,1, +16639,Old York Rd & Rydal Rd,40.099687,-75.125847,,,1, +16640,Old York Rd & Madeira Av,40.101677,-75.125625,,,1, +16641,Old York Rd & Rodman Av,40.103542,-75.125464,,,1, +16642,Old York Rd & Baeder Rd,40.104817,-75.124902,,,1, +16645,Old York Rd & Brook Rd,40.112256,-75.122977,,,1, +16646,Old York Rd & Susquehanna Rd,40.114404,-75.12176,,,1, +16647,Old York Rd & Horace Av,40.117167,-75.120174,,,1, +16648,Old York Rd & Woodland Rd,40.118816,-75.119232,,,1, +16649,Old York Rd & Keith Rd,40.120706,-75.11817,,,1, +16650,Old York Rd & Rockwell Rd,40.122828,-75.117202,,,1, +16651,Old York Rd & London Rd - FS,40.123917,-75.117162,,,1, +16652,Old York Rd & Jericho Rd - MBNS,40.125238,-75.11718,,,1, +16653,Old York Rd & Butler Av,40.129601,-75.11645,,,1, +16654,Old York Rd & Chester Av,40.130591,-75.116186,,,1, +16655,Old York Rd & Rubicam Av,40.132374,-75.115633,,,1, +16656,Old York Rd & Old Welsh Rd,40.134622,-75.114937,,,1, +16657,Old York Rd & Parkview Av,40.13546,-75.114483,,,1, +16659,Old York Rd & Moreland Rd,40.138713,-75.112681,,,1, +16660,Old York Rd & Quigley Av,40.140202,-75.111964,,,1, +16661,Old York Rd & Church St,40.141487,-75.11197,,,1, +16663,Old York Rd & Davisville Rd,40.143091,-75.114284,,,1, +16667,Easton Rd & Center Av,40.145606,-75.117067,,,1, +16670,Easton Rd & Allison Rd,40.14769,-75.118822,,,1, +16671,Easton Rd & Barrett Rd,40.148968,-75.119598,,,1, +16673,Easton Rd & Lincoln Av,40.150514,-75.120409,,,1, +16674,Easton Rd & Ellis Rd,40.151622,-75.120972,,,1, +16675,Easton Rd & Gilpin Av,40.152775,-75.121382,,,1, +16676,Easton Rd & Russell Rd - FS,40.153936,-75.121554,,,1, +16677,Easton Rd & Fitzwatertown Rd - MBNS,40.155873,-75.121724,,,1, +16678,Easton Rd & Wyandotte Rd - FS,40.159741,-75.122903,,,1, +16679,Easton Rd & Maryland Rd,40.162063,-75.123639,,,1, +16680,Easton Rd & Linden Av - FS,40.169818,-75.126781,,,1, +16681,Easton Rd & Blair Mill Rd - MBFS,40.172758,-75.127905,,,1, +16682,Easton Rd & Horsham Rd - FS,40.177766,-75.128216,,,1, +16683,Easton Rd & Meetinghouse Rd,40.182558,-75.131371,,,1, +16685,Easton Rd & Columbia Av - FS,40.185641,-75.1331,,,1, +16686,Easton Rd & County Line Rd,40.211621,-75.139297,,,1, +16687,Easton Rd & Titus Av - MBNS,40.218672,-75.139616,,,1, +16688,Easton Rd & Shetland Dr,40.238098,-75.136462,,,1, +16689,Easton Rd & K St,40.242115,-75.136339,,,1, +16690,Easton Rd & Oxford Dr - FS,40.245354,-75.13578,,,1, +16691,Easton Rd & Bristol Rd,40.251176,-75.133077,,,1, +16692,Easton Rd & Kelly Dr - FS,40.26448,-75.130803,,,1, +16693,Easton Rd & Almshouse Rd - MBFS,40.274266,-75.128117,,,1, +16694,Easton Rd & Edison Furlong Rd - FS,40.281089,-75.125941,,,1, +16695,Main St & Steeplechase Dr - FS,40.301456,-75.128299,,,1, +16696,Street Rd & Park Av - MBFS,40.199054,-75.086285,,,1, +16697,Street Rd & Madison Av,40.200615,-75.089003,,,1, +16698,Old York Rd & Street Rd - FS,40.20609,-75.100122,,,1, +16699,Old York Rd & Cypress Rd ,40.204233,-75.100398,,,1, +16700,Old York Rd & Henry Av,40.201164,-75.100957,,,1, +16701,Old York Rd & 9th Av,40.197845,-75.101612,,,1, +16702,Old York Rd & 4th Av,40.193902,-75.102377,,,1, +16703,Old York Rd & 2nd Av,40.192144,-75.10274,,,1, +16704,Old York Rd & County Line Rd - FS,40.189816,-75.103284,,,1, +16706,Old York Rd & Horsham Rd - FS,40.171437,-75.109942,,,1, +16707,Old York Rd & Crooked Billet Rd,40.169064,-75.110568,,,1, +16709,Old York Rd & Fitzwatertown Rd - FS,40.159678,-75.11196,,,1, +16710,Old York Rd & Lakevue Dr,40.156448,-75.112555,,,1, +16711,Rising Sun Av & Hellerman St ,40.05116,-75.094171,,,1, +16712,Old York Rd & Sampson Av,40.154058,-75.11311,,,1, +16713,Old York Rd & Warren St,40.15272,-75.113507,,,1, +16714,Old York Rd & Cedar Av,40.147138,-75.115864,,,1, +16715,Easton Rd & Moreland Av,40.196435,-75.138138,,,1, +16716,Easton Rd & Welsh Rd,40.137342,-75.121247,,,1, +16717,Easton Rd & Rubicam Av,40.135249,-75.123162,,,1, +16718,Easton Rd & Hamilton Av,40.132729,-75.125659,,,1, +16719,Easton Rd & Patane Av,40.130886,-75.127466,,,1, +16720,Easton Rd & Pershing Av,40.129417,-75.128917,,,1, +16721,Easton Rd & Woodland Rd,40.127983,-75.130343,,,1, +16722,Easton Rd & Arlington Av,40.126915,-75.131413,,,1, +16723,Easton Rd & Kenderton Av,40.125837,-75.132448,,,1, +16724,Easton Rd & Bradfield Rd,40.116888,-75.137681,,,1, +16725,Easton Rd & Tague Av,40.110574,-75.14392,,,1, +16726,Rising Sun Av & Levick St ,40.049646,-75.095645,,,1, +16727,Rising Sun Av & Robbins St ,40.048426,-75.096798,,,1, +16728,Rising Sun Av & Devereaux Av ,40.047162,-75.098045,,,1, +16729,Rising Sun Av & Benner St ,40.046131,-75.09954,,,1, +16730,Rising Sun Av & Comly St ,40.045127,-75.101117,,,1, +16731,Rising Sun Av & Van Kirk St ,40.044069,-75.102683,,,1, +16732,Rising Sun Av & Cheltenham Av ,40.043002,-75.104343,,,1, +16733,Rising Sun Av & Sanger St ,40.041979,-75.105849,,,1, +16734,Rising Sun Av & Godfrey Av ,40.041392,-75.106727,,,1, +16735,Rising Sun Av & Rising Sun Plaza,40.040121,-75.108601,,,1, +16736,Rising Sun Av & Adams Av ,40.039232,-75.11,,,1, +16737,Rising Sun & Adams - MBFS,40.037845,-75.112099,,,1, +16738,Rising Sun Av & Chew Av ,40.035556,-75.114059,,,1, +16739,Olney Av & B St ,40.034842,-75.117479,,,1,0 +16742,Easton Rd & Rosemore Av,40.104821,-75.149659,,,1, +16743,Easton Rd & Mt Carmel Av,40.101713,-75.152606,,,1, +16744,Easton Rd & Glenside Av,40.100679,-75.153509,,,1,0 +16745,Easton Rd & Wesley Av,40.099628,-75.154543,,,1, +16746,Easton Rd & Wavlerly Rd,40.098898,-75.155268,,,1, +16747,Germantown Pk & Launfall Rd,40.114833,-75.285791,,,5, +16748,Germantown Pk & Chemical Rd - FS,40.105099,-75.281467,,,1, +16750,Main St & Hart Av,40.303832,-75.128752,,,1, +16754,Main St & Oakland Av,40.30919,-75.129963,,,1, +16755,Main St & State St,40.309941,-75.130411,,,1, +16757,Main St & Broad St,40.31303,-75.130505,,,1, +16758,Main St & Union St,40.314798,-75.130545,,,1, +16759,Main St & Spruce St,40.316547,-75.13055,,,1, +16760,Main St & Veterans Ln,40.31869,-75.130588,,,1, +16761,Main St & East St,40.321877,-75.130646,,,1, +16762,Main St & Fonthill Rd,40.324179,-75.130233,,,1, +16764,Main St & Swamp Rd - MBNS,40.329167,-75.129535,,,1, +16765,Main St & Fonthill Dr,40.324349,-75.130363,,,1, +16767,Main St & Veterans Ln,40.318931,-75.130765,,,1, +16768,Main St & Spruce St - MBNS,40.316699,-75.130715,,,1, +16769,Main St & Union St,40.31495,-75.130723,,,1, +16770,Main St & Broad St,40.313245,-75.13067,,,1, +16772,Main St & State St,40.31004,-75.130613,,,1, +16773,Main St & Oakland Av,40.309298,-75.130212,,,1, +16775,Main St & Bridge St,40.306743,-75.129357,,,1, +16777,Main St & Hart Av,40.303984,-75.128929,,,1, +16778,Germantown Pk & Meetinghouse Ln,40.103259,-75.280028,,,1, +16780,Germantown Pk & Butler Pk - FS,40.1024,-75.278207,,,1, +16781,Germantown Pk & Marple Ln ,40.101424,-75.276221,,,1, +16783,Germantown Pk & Alden Rd ,40.100762,-75.274897,,,1, +16784,Germantown Pk & Mayflower Rd ,40.099009,-75.271635,,,1, +16785,Easton Rd & Edison Furlong Rd,40.280643,-75.126145,,,1, +16786,Easton Rd & Almshouse Rd ,40.270913,-75.129555,,,1, +16787,Germantown Pk & Colonial Dr,40.097676,-75.269366,,,1, +16788,Easton Rd & Kelly Rd - FS,40.26399,-75.131007,,,1, +16789,Easton Rd & Bristol Rd,40.251614,-75.1333,,,1, +16790,Easton Rd & Freedom Way,40.245328,-75.136113,,,1, +16791,Easton Rd & Shetland Dr,40.238199,-75.136651,,,1, +16792,Easton Rd & Titus Av - FS,40.220799,-75.139971,,,1, +16793,Germantown Pk & Fairway Rd ,40.096719,-75.267664,,,1, +16794,Easton Rd & Maple Av - FS,40.189244,-75.135537,,,1, +16795,Easton Rd & Homestead Av - MBNS,40.184846,-75.132759,,,1, +16796,Easton Rd & Norristown Rd,40.182701,-75.131714,,,1, +16797,Easton Rd & Horsham Rd - 1,40.179762,-75.13047,,,1, +16798,Easton Rd & New Rd,40.171884,-75.128134,,,1, +16799,Easton Rd & Maryland Rd - FS,40.161894,-75.123913,,,1, +16800,Easton Rd & Wyandotte Rd,40.160054,-75.123316,,,1, +16801,Germantown Pk & Warner Rd,40.090968,-75.259064,,,1, +16802,Easton Rd & Fitzwatertown Rd,40.155987,-75.122054,,,1, +16803,Easton Rd & Russell Rd,40.153927,-75.12172,,,1, +16804,Easton Rd & Gilpin Av,40.152757,-75.121548,,,1, +16805,Easton Rd & Ellis Rd,40.15173,-75.121209,,,1, +16806,Easton Rd & Dallas Rd,40.15081,-75.120751,,,1, +16807,Easton Rd & Barrett Rd,40.149076,-75.119835,,,1, +16809,Easton Rd & Summit Av,40.147261,-75.118658,,,1, +16811,Easton Rd & Center Av,40.145696,-75.117327,,,1, +16814,Easton Rd & Park Av,40.144953,-75.11675,,,1, +16819,Wadsworth Av & Cheltenham Av - FS,40.081163,-75.172052,,,1, +16820,Wadsworth Av & Pickering Av,40.080539,-75.17261,,,1, +16822,Wadsworth Av & Michener Av,40.079025,-75.174094,,,1, +16823,Wadsworth Av & Williams Av,40.077448,-75.175602,,,1, +16824,Wadsworth Av & Thouron St,40.076058,-75.176873,,,1, +16825,Easton Rd & Woolston Av - FS,40.073928,-75.178217,,,1, +16828,11th St & Tasker St,39.92973,-75.163045,,,1, +16831,11th St & Carpenter St,39.938312,-75.161171,,,1, +16832,11th St & Federal St ,39.934726,-75.16194,,,1, +16833,11th St & Ellsworth St ,39.935769,-75.161712,,,1, +16834,11th St & Christian St ,39.939311,-75.160955,,,1, +16835,11th St & Catharine St ,39.940078,-75.160775,,,1, +16836,11th St & Fitzwater St ,39.941086,-75.16057,,,1, +16837,11th St & Bainbridge St ,39.942067,-75.160354,,,1, +16838,11th St & South St ,39.942915,-75.16015,,,1, +16839,11th St & Lombard St ,39.943941,-75.159934,,,1, +16840,11th St & Pine St ,39.944833,-75.159742,,,1, +16841,11th St & Spruce St ,39.946242,-75.159441,,,1, +16842,11th St & Locust St,39.947482,-75.159177,,,1, +16843,11th St & Walnut St,39.948606,-75.158913,,,1, +16844,11th St & Chestnut St,39.950131,-75.158576,,,1, +16845,11th St & Arch St,39.953673,-75.157843,,,1, +16846,11th St & Race St,39.955493,-75.157446,,,1, +16847,11th St & Vine St,39.95692,-75.157098,,,1, +16849,11th St & Noble St,39.959694,-75.156509,,,1, +16850,11th St & Ridge Av,39.960328,-75.156376,,,1, +16851,11th St & Spring Garden St,39.961532,-75.1561,,,1, +16852,11th St & Green St ,39.962674,-75.155848,,,1, +16853,11th St & Wallace St,39.964164,-75.155535,,,1, +16854,11th St & Fairmount Av,39.9656,-75.155211,,,1, +16855,11th St & Brown St,39.966554,-75.154983,,,1, +16856,11th St & Parrish St,39.967661,-75.154754,,,1, +16857,11th St & Poplar St,39.968838,-75.15449,,,1, +16858,11th St & Thompson St,39.972415,-75.15372,,,1, +16862,11th St & Master St,39.973718,-75.153431,,,1, +16863,11th St & Jefferson St,39.975074,-75.153143,,,1, +16864,11th St & Oxford St ,39.976501,-75.15283,,,1, +16865,11th St & Cecil B Moore Av,39.977857,-75.152541,,,1, +16866,11th St & Montgomery Av,39.979364,-75.152205,,,1, +16867,11th St & Berks St,39.980997,-75.151844,,,1, +16868,11th St & Norris St,39.982424,-75.151543,,,1, +16869,11th St & Diamond St,39.983896,-75.151206,,,1, +16870,11th St & Susquehanna Av,39.985502,-75.150858,,,1, +16871,11th St & Dauphin St,39.987109,-75.150484,,,1, +16872,11th St & York St,39.988588,-75.150196,,,1, +16873,11th St & Cumberland St,39.990096,-75.149859,,,1, +16874,11th St & Huntingdon St,39.991577,-75.149534,,,1, +16875,Huntingdon St & Germantown Av,39.99145,-75.148483,,,1, +16876,Germantown Av & Somerset St,39.994535,-75.147431,,,1, +16877,Germantown Av & Cambria St,39.996052,-75.147035,,,1, +16878,Germantown Av & Indiana Av,39.997559,-75.146699,,,1, +16879,Germantown Av & Glenwood Av,39.999177,-75.147319,,,1, +16880,Germantown Av & Sedgley Av,40.000632,-75.147963,,,1, +16881,Germantown Av & Hilton St,40.001758,-75.14836,,,1, +16882,Germantown Av & Westmoreland St,40.002589,-75.148688,,,1, +16883,Germantown Av & Rising Sun Av,40.003857,-75.149108,,,1,0 +16884,Germantown Av & Tioga St,40.005804,-75.149656,,,1, +16885,Germantown Av & Venango St,40.007429,-75.15017,,,1, +16886,Germantown Av & Pike St,40.012458,-75.151994,,,1, +16887,Germantown Av & Lycoming St,40.014352,-75.152944,,,1, +16888,Germantown Av & Hunting Park Av,40.015845,-75.153824,,,1, +16889,Germantown Av & Staub St,40.017167,-75.154422,,,1, +16890,Germantown Av & Juniata St,40.017971,-75.154904,,,1, +16891,Germantown Av & Saint Paul St,40.018963,-75.155526,,,1, +16892,Germantown Av & Dennie St,40.020448,-75.156774,,,1, +16893,Germantown Av & 20th St,40.021888,-75.158187,,,1, +16894,Germantown Av & Windrim Av - FS,40.022719,-75.158881,,,1,0 +16903,Easton Rd & Royal Av - FS,40.095051,-75.159152,,,1, +16904,Cheltenham Av & Mt Pleasant Av ,40.079396,-75.167799,,,1, +16908,Cheltenham Av & Washington Ln ,40.071762,-75.1542,,,1, +16909,Cheltenham Av & Tulpehocken St ,40.070974,-75.152831,,,1, +16910,Cheltenham Av & Walnut Ln ,40.07032,-75.151675,,,1, +16911,Cheltenham Av & 20th St ,40.069433,-75.150069,,,1, +16912,Cheltenham Av & Andrews Av ,40.068483,-75.148429,,,1,0 +16913,Cheltenham Av & 19th St ,40.067542,-75.146765,,,1, +16914,Cheltenham Av & Keenan St ,40.064782,-75.141962,,,1, +16915,Cheltenham Av & 15th St ,40.064191,-75.140935,,,1,0 +16923,Old York Rd & 65th Av,40.052279,-75.142663,,,1, +16924,Old York Rd & Chelten Av,40.050809,-75.14365,,,1, +16925,Old York Rd & Godfrey Av,40.047868,-75.145495,,,1, +16926,Old York Rd & Champlost Av,40.044671,-75.144715,,,1, +16930,Cheltenham Av & Greenwood St,40.076108,-75.161826,,,1, +16931,Cheltenham Av & Vernon Rd - FS,40.077075,-75.163525,,,1, +16932,Cheltenham Av & Mt Pleasant Av - MBFS,40.079843,-75.168093,,,1, +16933,Cheltenham Av & Mt Airy Av - FS,40.080962,-75.170018,,,1, +16935,Easton Rd & East Av,40.12383,-75.132941,,,1, +16936,Easton Rd & Susquehanna Rd,40.121207,-75.133414,,,1, +16937,Easton Rd & Tyson Av,40.120022,-75.134567,,,1, +16938,Easton Rd & Royal Av - FS,40.095237,-75.15876,,,1, +16939,Street Rd & Cathrine St,40.201888,-75.091189,,,1, +16941,Old York Rd & 7th Av,40.196293,-75.101927,,,1, +16942,Old York Rd & Summit Av,40.181511,-75.105194,,,1, +16943,Old York Rd & Monument Av,40.180262,-75.105471,,,1, +16944,Old York Rd & Montgomery Av,40.179335,-75.105725,,,1, +16945,Old York Rd & Moreland Av - FS,40.177122,-75.106315,,,1, +16947,Old York Rd & Lehman Av - FS,40.17295,-75.1083,,,1, +16949,Old York Rd & Newington Dr,40.166654,-75.110473,,,1, +16951,Old York Rd & Fairhill St - FS,40.151159,-75.114023,,,1, +16952,Old York Rd & Lincoln Av,40.149741,-75.114669,,,1, +16953,Old York Rd & Summit Av,40.148253,-75.115528,,,1, +16955,Easton Rd & Oakdale Av,40.105729,-75.148732,,,1, +16956,Easton Rd & Toxony Av - FS,40.097215,-75.156966,,,1, +16957,Easton Rd & Springhouse Ln ,40.096173,-75.158023,,,1, +16959,Olney Av & 2nd St ,40.035825,-75.125302,,,1, +16960,Olney Av & American St - FS,40.036034,-75.126873,,,1, +16961,Olney Av & 4th St ,40.036243,-75.128551,,,1, +16962,Olney Av & 5th St ,40.036489,-75.13043,,,1, +16963,Olney Av & 6th St ,40.036734,-75.132392,,,1, +16964,Olney Av & 7th St ,40.036944,-75.134046,,,1, +16965,Olney Av & Wagner Av ,40.037243,-75.136362,,,1, +16966,Olney Av & 10th St ,40.037577,-75.137862,,,1, +16979,Chew Av & Locust Av ,40.044174,-75.162631,,,1, +16980,Chew Av & Price St ,40.046207,-75.165922,,,1, +16981,Chew Av & Rittenhouse St ,40.046718,-75.166736,,,1, +16982,Chew Av & Haines St,40.047228,-75.167562,,,1, +16983,Chew Av & High St,40.047954,-75.168742,,,1, +16984,Chew Av & Walnut Ln ,40.049055,-75.1705,,,1, +16985,Easton Rd & Lowber Av,40.072278,-75.179039,,,1, +16986,Mt Airy Av & Rodney St,40.071494,-75.179432,,,1, +16987,Mt Airy Av & Mansfield Av,40.070309,-75.180489,,,1, +16990,Mt Pleasant Av & Crittenden St,40.066382,-75.180538,,,1, +16992,Mt Pleasant Av & Anderson St,40.065064,-75.181974,,,1, +16993,Victory Av & Cobbs Creek No Stop,39.96611,-75.262231,,,1, +16995,Cardington Rd & Lansdowne No Stop,39.971302,-75.26073,,,1, +16998,Chester Av & 70th St,39.923987,-75.245095,,,1, +16999,Chester Av & 70th St,39.92413,-75.245118,,,1, +17001,Mt Pleasant Av & Ardleigh St,40.063318,-75.183849,,,1, +17003,Mt Pleasant Av & Sprague St - FS,40.062686,-75.184549,,,1, +17005,Mt Pleasant Av & Boyer St,40.061064,-75.186269,,,1, +17006,Mt Pleasant Av & Chew Av,40.059702,-75.187799,,,1, +17009,Mt Pleasant Av & Bryan St,40.057672,-75.190372,,,1, +17010,Mt Pleasant Av & Mower St ,40.056568,-75.191689,,,1, +17011,Mt Pleasant Av & Cresheim Rd ,40.055392,-75.192935,,,1, +17016,Mt Pleasant Av & Lincoln Dr ,40.054474,-75.193919,,,1, +17017,Mt Pleasant Av & Emlen St ,40.052916,-75.195627,,,1, +17018,Mt Pleasant Av & Cherokee St ,40.051695,-75.196967,,,1, +17019,Mt Pleasant Av & McCallum St ,40.050448,-75.198319,,,1, +17020,McCallum St & Glen Echo Rd ,40.049813,-75.197624,,,1, +17021,McCallum St & Ellett St ,40.049187,-75.196621,,,1, +17022,McCallum St & Sedgwick St ,40.048551,-75.195641,,,1, +17023,McCallum St & Carpenter Ln ,40.047826,-75.19452,,,1, +17024,McCallum St & Westview Av ,40.047119,-75.193589,,,1, +17025,McCallum St & Lincoln Dr ,40.046314,-75.19248,,,1, +17026,Lincoln Dr & Greene St ,40.044762,-75.193123,,,1, +17027,Lincoln Dr & Hortter St,40.041806,-75.192211,,,1, +17029,Wayne Av & Cliveden St,40.038859,-75.191263,,,1, +17037,Erie Av & 16th St,40.009644,-75.154794,,,1, +17038,Erie Av & 15th St,40.009408,-75.152998,,,1, +17039,Wayne Av & Johnson St ,40.038232,-75.190165,,,1, +17040,Johnson St & Sherman St - FS,40.039586,-75.188577,,,1, +17044,Germantown Av & Abbottsford Av,40.026667,-75.160438,,,1, +17047,Germantown Av & Logan St,40.028233,-75.161993,,,1, +17048,Germantown Av & Seymour St,40.029263,-75.163632,,,1, +17049,Germantown Av & Wister St,40.029943,-75.164824,,,1, +17050,Germantown Av & Ashmead St,40.030848,-75.166416,,,1, +17051,Germantown Av & Bringhurst St,40.031538,-75.167655,,,1, +17052,Germantown Av & Penn St,40.032326,-75.169071,,,1, +17053,Germantown Av & Coulter St,40.033141,-75.170451,,,1, +17054,Germantown Av & School House Ln,40.034368,-75.172539,,,1, +17055,Germantown Av & Armat St,40.035013,-75.173577,,,1, +17056,Germantown Av & Price St,40.036624,-75.17543,,,1, +17061,Knights Rd & Plum Av,40.09768,-74.958003,,,1, +17062,Franklin Mills Dr & Knights Rd,40.091495,-74.965356,,,1, +17064,Bristol Pk & Home Depot Plaza,40.071395,-74.965475,,,1, +17067,Johnson St & Greene St,40.040788,-75.187343,,,1, +17071,Bristol Pk & Home Depot Plaza - FS,40.071912,-74.965247,,,1, +17072,Bristol Pk & Red Lion Rd,40.065121,-74.980525,,,1, +17075,Greene St & Duval St,40.040251,-75.186399,,,1, +17080,Greene St & Washington Ln ,40.039347,-75.184959,,,1, +17084,Greene St & Tulpehocken St,40.038595,-75.183792,,,1, +17085,Greene St & Walnut Ln - FS,40.037261,-75.181703,,,1, +17099,Greene St & Harvey St,40.036509,-75.1805,,,1, +17100,Greene St & Rittenhouse St,40.035488,-75.178872,,,1, +17102,Old York Rd & Summit Av,40.14811,-75.11541,,,1, +17103,Philadelphia Airport Terminal A,39.876487,-75.249157,,30615,1, +17105,PHL D Terminal,39.878172,-75.241969,,30615,1, +17106,Old York Rd & Horsham Rd,40.171463,-75.109705,,,1, +17109,Old York Rd & Lehman Av,40.172941,-75.108111,,,1, +17110,York Rd & Byberry Rd,40.174526,-75.106824,,,1, +17112,Old York Rd & Madison Av,40.186381,-75.10388,,,1, +17114,Old York & County Line - FS,40.190163,-75.102927,,,1, +17115,Street Rd & Jacksonville Rd - FS,40.196418,-75.081913,,,1, +17117,Broad St & Venango St,40.007718,-75.151622,,,1, +17118,Broad St & Tioga St,40.006237,-75.151947,,,1, +17120,Broad St & Ontario St - FS,40.004524,-75.15232,,,1, +17121,Broad St & Westmoreland Av - FS,40.003035,-75.152645,,,1, +17123,Greene St & Schoolhouse Ln,40.032712,-75.174519,,,1, +17124,Greene St & Coulter St,40.031459,-75.172467,,,1, +17125,Greene St & Penn St,40.030679,-75.171146,,,1, +17126,Greene St & Queen Ln,40.03024,-75.170343,,,1, +17127,Broad St & Indiana Av,39.99861,-75.153619,,,1, +17128,Greene St & Hansberry St,40.029443,-75.168939,,,1, +17129,Broad St & Glenwood Av ,39.996879,-75.154004,,,1, +17130,Greene St & Manheim St,40.02852,-75.167264,,,1, +17132,Broad St & Somerset St,39.995613,-75.154328,,,1, +17133,Broad St & Lehigh Av - FS,39.993498,-75.154738,,,1, +17134,Broad St & Huntingdon St,39.992455,-75.154966,,,1, +17135,Broad St & Cumberland St,39.990947,-75.155291,,,1, +17136,Broad St & York St - FS,39.989252,-75.155652,,,1, +17137,Broad St & Dauphin St,39.987976,-75.15594,,,1, +17138,Broad St & Susquehanna Av ,39.986353,-75.156301,,,1, +17139,Downey Dr & Van Horn Dr,40.187976,-75.086101,,,1, +17140,Van Horn Dr & Craven Av - FS,40.190212,-75.087536,,,1, +17141,Van Horn Dr & Jacksonville Rd,40.190911,-75.08867,,,1, +17142,Old York Rd & Madison Av,40.186551,-75.10401,,,1, +17144,Old York Rd & Mill Rd,40.163523,-75.111209,,,1, +17145,Willow Grove Av & Winston Rd ,40.07213,-75.199255,,,1, +17146,Willow Grove Av & Crittenden St,40.074963,-75.196419,,,1, +17147,Willow Grove Av & Stenton Av ,40.076388,-75.195018,,,1, +17148,Willow Grove Av & Pine Rd ,40.077804,-75.19357,,,1, +17149,Willow Grove Av & Ardmore Av ,40.079114,-75.192253,,,1, +17150,Willow Grove Av & Flourtown Av ,40.081082,-75.190069,,,1, +17151,Willow Grove Av & Traymore Av ,40.081955,-75.189179,,,1, +17152,Willow Grove Av & Queen St ,40.083897,-75.187209,,,1, +17153,Willow Grove Av & Douglas Rd ,40.085634,-75.185452,,,1, +17154,Cheltenham Av & Pleasant St,40.087536,-75.181222,,,1, +17155,Cheltenham Av & Firethorn Ln ,40.087053,-75.180691,,,1, +17156,Cheltenham Av & Woodbrook Ln ,40.084304,-75.175992,,,1, +17158,Broad St & Diamond St,39.984765,-75.15665,,,1, +17159,Broad St & Norris St,39.983248,-75.156974,,,1, +17160,Broad St & Berks St,39.981794,-75.157299,,,1, +17161,Broad St & Montgomery Av,39.980287,-75.157623,,,1, +17162,Broad St & Cecil B Moore Av ,39.978743,-75.157948,,,1, +17163,Broad St & Jefferson St,39.975951,-75.158597,,,1, +17164,Broad St & Poplar St,39.97034,-75.159835,,,1, +17165,Broad St & Ridge Av - FS,39.966558,-75.160664,,,1, +17166,Broad St & Wallace St,39.965229,-75.160964,,,1, +17167,Broad St & Green St - FS,39.963607,-75.161264,,,1, +17168,Broad St & Spring Garden St,39.962579,-75.161494,,,1, +17169,Broad St & Callowhill St,39.959689,-75.162178,,,1, +17170,Broad St & Race St ,39.956317,-75.162911,,,1,0 +17173,Manheim St & Knox St,40.027576,-75.168048,,,1, +17174,Manheim St & Wayne Av,40.026329,-75.169163,,,1, +17175,Manheim St & Pulaski Av,40.024788,-75.170564,,,1, +17176,Manheim St & Morris St,40.02363,-75.171608,,,1, +17177,Broad St & Ellsworth St ,39.936843,-75.167068,,,1, +17178,Manheim St & McKean Av - MBFS,40.022561,-75.172641,,,1, +17179,Easton Rd & Fairhill Av,40.103343,-75.15112,,,1, +17180,Broad St & Federal St,39.935808,-75.167296,,,1, +17181,Manheim St & Erringer Pl,40.022017,-75.173127,,,1, +17182,Broad St & Wharton St,39.934256,-75.167621,,,1, +17184,Broad St & Reed St,39.933069,-75.167897,,,1, +17185,Manheim St & Schuyler St - FS,40.021162,-75.173922,,,1, +17187,Broad St & Dickinson St,39.931811,-75.168184,,,1, +17188,Manheim St & Wissahickon Av,40.02004,-75.174955,,,1, +17189,Broad St & Tasker St,39.930607,-75.168437,,,1, +17190,Broad St & Morris St ,39.929385,-75.168701,,,1, +17191,Germantown Av & Rittenhouse St,40.03741,-75.176016,,,1, +17192,Broad St & Moore St,39.928163,-75.168977,,,1, +17193,Cheltenham Av & Mt Airy Av ,40.081115,-75.170703,,,1, +17194,Broad St & Mifflin St,39.92695,-75.169241,,,1, +17195,Broad St & McKean St,39.925683,-75.169494,,,1, +17196,Germantown Av & Haines St,40.038358,-75.176805,,,1, +17197,Germantown Av & High St,40.039404,-75.177676,,,1, +17198,Broad St & Wolf St,39.922016,-75.17031,,,1, +17200,Germantown Av & Walnut Ln,40.040405,-75.178477,,,1, +17201,Old York Rd & Church Ln,40.046279,-75.145335,,,1, +17202,Germantown Av & Tulpehocken St,40.042025,-75.179834,,,1, +17203,Broad St & Pollack St ,39.913194,-75.172454,,,1, +17205,Broad St & Packer Av,39.911963,-75.172848,,,1, +17206,Germantown Av & Washington Ln,40.043212,-75.180784,,,1, +17207,Germantown Av & Duval St,40.044676,-75.181559,,,1, +17208,Germantown Av & Johnson St,40.045865,-75.182099,,,1, +17209,Broad St & Curtain St,39.910599,-75.173148,,,1, +17210,Germantown Av & Cliveden St,40.047018,-75.182675,,,1, +17211,Germantown Av & Upsal St,40.048187,-75.183289,,,1, +17212,Germantown Av & Sharpnack St,40.049252,-75.183826,,,1, +17213,Germantown Av & Hortter St,40.050538,-75.184531,,,1, +17215,Germantown Av & Phil Ellena St,40.051637,-75.185142,,,1, +17218,Germantown Av & Slocum St,40.053138,-75.185965,,,1, +17225,Broad St & Olney Av - FS,40.038932,-75.144892,,31037,1,0 +17227,Germantown Av & Carpenter Ln,40.054863,-75.186881,,,1, +17228,Germantown Av & Gorgas Ln,40.055425,-75.187222,,,1, +17229,Broad St & Curtin St ,39.910401,-75.1727,,,1, +17230,Broad St & Packer St - FS,39.911864,-75.172305,,,1, +17231,Broad St & Pollack St,39.912881,-75.172066,,,1, +17232,Broad St & Bigler St - FS,39.914416,-75.171742,,,1, +17233,Broad St & Shunk St,39.918037,-75.170949,,,1, +17234,Broad St & Porter St,39.919286,-75.170732,,,1, +17235,Broad St & Ritner St,39.920553,-75.170445,,,1, +17236,Broad St & Wolf St,39.921793,-75.170192,,,1, +17237,Broad St & Jackson St,39.923042,-75.169904,,,1, +17238,Broad St & Snyder Av,39.924246,-75.169652,,,1, +17239,Broad St & McKean St,39.925468,-75.169376,,,1, +17240,Broad St & Mifflin St,39.926691,-75.169136,,,1, +17241,Broad St & Moore St,39.927939,-75.16886,,,1, +17242,Stenton Av & Gowen Av ,40.070566,-75.184498,,,1, +17243,Broad St & Morris St,39.929162,-75.168572,,,1, +17244,Broad St & Tasker St,39.93041,-75.168308,,,1, +17245,Broad St & Dickinson St,39.931588,-75.168067,,,1, +17246,Broad St & Reed St,39.932783,-75.167791,,,1, +17247,Broad St & Wharton St,39.93405,-75.167492,,,1, +17248,Broad St & Federal St,39.935602,-75.167167,,,1, +17249,Broad St & Ellsworth St,39.936592,-75.166951,,,1, +17261,Broad St & Arch St,39.9543,-75.163048,,,1, +17262,Broad St & Race St,39.956102,-75.162663,,,1, +17263,Broad St & Vine St - FS,39.958198,-75.162195,,,1, +17264,Broad St & Callowhill St - FS,39.959679,-75.161894,,,1, +17265,Broad St & Spring Garden St,39.962017,-75.161401,,,1, +17266,Broad St & Green St,39.963676,-75.1611,,,1, +17267,Broad St & Wallace St - FS,39.965326,-75.160668,,,1, +17268,Broad St & Ridge Av,39.966258,-75.160471,,,1, +17269,Broad St & Brown St,39.968074,-75.160068,,,1, +17270,Broad St & Parrish St,39.968886,-75.159899,,,1, +17271,Broad St & Poplar St,39.970117,-75.159611,,,1, +17273,Broad St & Thompson St,39.973087,-75.158962,,,1, +17274,Broad St & Master St,39.974381,-75.158662,,,1, +17275,Broad St & Jefferson St,39.975745,-75.158361,,,1, +17276,Broad St & Oxford St,39.977137,-75.15812,,,1, +17277,Broad St & Cecil Moore Av - FS,39.979046,-75.157734,,,1, +17278,Broad St & Montgomery Av - FS,39.980376,-75.157458,,,1, +17279,Broad St & Polett Walk,39.981651,-75.157181,,,1, +17280,Broad St & Norris St,39.983087,-75.156857,,,1, +17281,Broad St & Diamond St - FS,39.984845,-75.156472,,,1, +17282,Broad St & Susquehanna Av,39.986192,-75.156183,,,1,0 +17283,Broad St & Dauphin St,39.987807,-75.155823,,,1, +17284,Broad St & York St,39.989278,-75.15551,,,1, +17286,Broad St & Cumberland St,39.990777,-75.155173,,,1, +17287,Broad St & Huntingdon St,39.992294,-75.154848,,,1, +17288,Broad St & Lehigh Av,39.993784,-75.154559,,,1, +17290,Broad St & Somerset St,39.995461,-75.15421,,,1, +17291,Broad St & Glenwood Av,39.996692,-75.153898,,,1, +17296,Broad St & Indiana Av,39.998449,-75.15349,,,1, +17297,Broad St & Clearfield St - FS,40.000162,-75.153128,,,1, +17298,Broad St & Ontario St - FS,40.004827,-75.152106,,,1, +17299,Broad St & Tioga St,40.006032,-75.15183,,,1, +17300,Broad St & Venango St,40.007557,-75.151469,,,1, +17301,Broad St & Butler St - FS,40.010992,-75.150758,,,1, +17302,Broad St & Pike St,40.012223,-75.150494,,,1, +17303,Broad St & Lycoming St - FS,40.015407,-75.149772,,,1, +17304,Broad St & Hunting Park Av,40.01687,-75.149447,,,1, +17305,Broad St & Roosevelt Blvd,40.017914,-75.14923,,,1, +17308,Broad St & Wingohocking St - FS,40.021598,-75.148424,,,1, +17309,Broad St & Wyoming Av,40.024471,-75.147822,,,1, +17310,Broad St & Loudon St,40.026059,-75.147473,,,1, +17311,Broad St & Rockland St,40.027549,-75.147136,,,1, +17312,Broad St & Ruscomb St,40.029047,-75.146728,,,1, +17313,Broad St & Lindley Av,40.030528,-75.146497,,,1, +17314,Broad St & Duncannon Av,40.032089,-75.14616,,,1, +17315,Broad St & Fisher Av,40.033633,-75.145811,,,1, +17316,Broad St & Somerville Av,40.035158,-75.145486,,,1, +17317,Broad St & Albert Einstein Dr,40.03663,-75.145161,,,1, +17318,Broad St & Tabor Rd,40.03828,-75.144705,,,1,0 +17319,Broad St & Grange St,40.041296,-75.144137,,,1, +17320,Broad St & Nedro Av ,40.042839,-75.143788,,,1, +17321,Broad St & Champlost Av,40.044355,-75.143475,,,1, +17323,Broad St & Godfrey Av,40.04738,-75.142801,,,1, +17324,Broad St & Medary Av ,40.048923,-75.142463,,,1, +17330,Broad St & 69th Av,40.058147,-75.140439,,,1, +17331,Ridge Av & Lauriston St,40.0204,-75.210012,,,1, +17332,Broad St & 70th Av ,40.059672,-75.140126,,,1, +17334,Broad St & Cheltenham Av,40.063196,-75.139284,,,1, +17335,Cheltenham Av & Keenan St,40.064755,-75.141726,,,1, +17338,Ridge Av & Pensdale St,40.02855,-75.210365,,,1, +17341,Cheltenham Av & Andrews Av ,40.068482,-75.148204,,,1, +17343,Ridge Av & Manayunk Av,40.019812,-75.210605,,,1, +17344,Cheltenham Av & Williams Way ,40.070481,-75.151781,,,1, +17345,Ridge Av & Osborn St - FS,40.017618,-75.211486,,,1, +17350,Pattison Av & 20th St,39.906728,-75.183299,,,1, +17357,Wissahickon Av & Roberts Av,40.015308,-75.170007,,,1, +17359,Oregon Av & Columbus Blvd - FS,39.91262,-75.138465,,,1,0 +17360,Oregon Av & Weccacoe St ,39.912911,-75.140494,,,1, +17361,Oregon Av & Vandalia St,39.913647,-75.146262,,,1, +17362,Oregon Av & Swanson St,39.913882,-75.147571,,,1, +17363,Rising Sun Av & Germantown Av,40.003804,-75.149309,,,1, +17364,Oregon Av & Front St,39.914181,-75.149872,,,1, +17365,Rising Sun Av & Old York Rd - FS,40.004292,-75.148326,,,1, +17366,Rising Sun Av & 11th St,40.004994,-75.146764,,,1, +17367,Rising Sun Av & 9th St,40.006592,-75.143153,,,1, +17368,9th St & Butler St,40.009661,-75.142396,,,1, +17369,9th St & Pike St,40.011142,-75.142059,,,1, +17370,9th St & Luzerne St,40.012622,-75.141734,,,1, +17371,2nd St & Shunk St ,39.915532,-75.1512,,,1, +17372,9th St & Lycoming St,40.01413,-75.141409,,,1, +17373,2nd St & Porter St ,39.916807,-75.150924,,,1, +17374,9th St & Hunting Park Av,40.015754,-75.141072,,,1, +17375,9th St & Bristol St,40.017315,-75.140711,,,1, +17376,2nd St & Ritner St,39.91803,-75.150659,,,1, +17377,9th St & Cayuga St,40.018822,-75.140385,,,1, +17378,2nd St & Wolf St,39.919305,-75.150383,,,1, +17379,9th St & Roosevelt Blvd,40.02082,-75.139916,,,1, +17380,2nd St & Jackson St,39.920554,-75.150118,,,1, +17381,9th St & Roosevelt Blvd - FS,40.022221,-75.13958,,,1, +17382,9th St & Wyoming Av ,40.023363,-75.139315,,,1, +17383,2nd St & Snyder Av,39.921758,-75.149866,,,1, +17384,9th St & Rockland St ,40.026449,-75.138641,,,1, +17385,Snyder Av & 3rd St ,39.922028,-75.150963,,,1, +17386,9th St & Ruscomb St,40.027939,-75.138304,,,1, +17387,9th St & Lindley Av ,40.029447,-75.137978,,,1, +17389,9th St & Duncannon Av ,40.030981,-75.137641,,,1, +17390,9th St & Fisher Av,40.032533,-75.137315,,,1, +17391,Moyamensing Av & McKean St,39.923326,-75.152528,,,1, +17392,Moyamensing Av & Mifflin St,39.924503,-75.152039,,,1, +17393,Fisher Av & 10th St ,40.032885,-75.138851,,,1, +17394,11th St & Somerville Av - FS,40.034717,-75.140108,,,1, +17395,Moyamensing Av & Moore St,39.925716,-75.151586,,,1, +17396,11th St & Clarkson Av,40.035984,-75.13982,,,1, +17397,Moyamensing Av & Morris St,39.926857,-75.151156,,,1, +17398,11th St & Chew St - FS,40.039051,-75.139156,,,1, +17399,Moyamensing Av & Tasker St ,39.928088,-75.150644,,,1, +17400,Grange Av 11th St - FS,40.040866,-75.139823,,,1, +17401,Moyamensing Av & Dickinson St,39.929292,-75.150202,,,1, +17402,Germantown Av & Sedgwick St,40.056828,-75.187951,,,1, +17403,Germantown Av & Mt Pleasant Av,40.058428,-75.189282,,,1, +17404,Germantown Av & Mt Airy Av,40.060163,-75.19092,,,1, +17405,Germantown Av & Allens Ln,40.061262,-75.191768,,,1, +17406,Germantown Av & Gowen Av,40.062621,-75.192792,,,1, +17407,Germantown Av & McPherson St,40.064346,-75.194052,,,1, +17408,Germantown Av & Roumfort Rd,40.06491,-75.194961,,,1, +17409,Germantown Av & Cresheim Valley Dr - FS,40.066849,-75.19635,,,1, +17410,Germantown Av & Moreland Av,40.068639,-75.198627,,,1, +17411,Germantown Av & Springfield Av ,40.069569,-75.199689,,,1, +17412,Germantown Av & Willow Grove Av,40.070695,-75.200655,,,1, +17419,Erie Av & Germantown Av - MBFS,40.009063,-75.150305,,,1, +17420,Erie Av & 13th St,40.008908,-75.149147,,,1, +17421,Erie Av & 11th St,40.008491,-75.145994,,,1, +17425,Erie Av & Rising Sun Av ,40.007836,-75.140808,,,1, +17428,Germantown Pk & Westway Dr - MBNS,40.088133,-75.254858,,,1, +17429,Germantown Pk & Thomas Rd - FS,40.086373,-75.235318,,,1, +17432,Germantown Av & Hillcrest Av ,40.083532,-75.22243,,,1, +17433,Germantown Av & Bells Mill Rd ,40.082082,-75.219914,,,1, +17435,Germantown Av & Sunset Av ,40.080632,-75.217742,,,1, +17436,Germantown Av & Waterman Av ,40.079664,-75.215154,,,1, +17438,Germantown Av & Laughlin Ln ,40.078642,-75.212519,,,1, +17439,Germantown Av & Chestnut Hill Av,40.077978,-75.210806,,,1, +17440,Germantown Av & Rex Av ,40.077351,-75.209175,,,1, +17441,Erie Av & Front St - MBNS,40.007193,-75.129205,,,1,0 +17442,Erie Av & B St - MBFS,40.006943,-75.121654,,,1, +17443,Old York Rd & Davisville Rd,40.143074,-75.114769,,,1, +17444,Old York Rd & Cherry St - FS,40.14223,-75.112902,,,1, +17445,Old York Rd & Church St - FS,40.141282,-75.112149,,,1, +17446,Easton Rd & Limeklin Pk,40.09187,-75.161991,,,1, +17447,Old York Rd & Quigley Ln - FS,40.140194,-75.112224,,,1, +17449,Glenside Av & Stanley Av ,40.098463,-75.148288,,,1, +17450,Old York Rd & Moreland Rd,40.13875,-75.112977,,,1, +17452,Old York Rd & Parkview Av,40.135719,-75.114636,,,1, +17453,Chew Av & Tulpehocken St ,40.0497,-75.171597,,,1, +17454,Old York Rd & Old Welsh Rd,40.134917,-75.115101,,,1, +17456,Old York Rd & Washington Ln,40.092448,-75.125452,,,1, +17457,Old York Rd & Rubicam Av,40.132571,-75.115881,,,1, +17458,Jenkintown Rd & Meetinghouse Rd - FS,40.090871,-75.119412,,,1, +17459,Old York Rd & Chester Av,40.130904,-75.116397,,,1, +17460,Old York Rd & Hamilton Av,40.129369,-75.116807,,,1, +17461,Old York Rd & Jericho Rd,40.125747,-75.11745,,,1, +17462,Erie Av & O St ,40.005765,-75.097126,,,1, +17463,Old York Rd & London Rd,40.123775,-75.11747,,,1, +17466,Old York Rd & Rockwell Rd - FS,40.122757,-75.117475,,,1, +17467,Old York Rd & Keith Rd,40.120956,-75.118323,,,1, +17468,Old York Rd & Horace Av,40.117444,-75.120339,,,1, +17469,Old York Rd & Guernsey Av,40.116223,-75.12103,,,1, +17470,Old York Rd & Susquehanna Rd,40.11469,-75.121913,,,1, +17472,Old York Rd & Canterbury Rd,40.110892,-75.123633,,,1, +17473,Old York Rd & Baeder Rd,40.105032,-75.125079,,,1, +17474,Old York Rd & Rodman Av,40.103668,-75.125723,,,1, +17475,Old York Rd & Madeira Av,40.101901,-75.125908,,,1, +17476,Old York Rd & Cloverly Av,40.100241,-75.126022,,,1, +17477,Old York Rd & Hillside Av,40.099036,-75.12598,,,1, +17478,Old York Rd & Homestead Rd,40.096903,-75.12593,,,1, +17479,Old York Rd & West Av,40.095948,-75.12591,,,1, +17480,Old York Rd & Greenwood Av,40.095207,-75.12583,,,1, +17481,Old York Rd & Washington Ln,40.092805,-75.125462,,,1, +17482,Chew Av & Washington Ln,40.05064,-75.173155,,,1, +17483,Chew Av & Duval St ,40.051527,-75.174559,,,1, +17485,Chew Av & Johnson St ,40.052207,-75.175668,,,1, +17487,Old York Rd & Bryers Dr,40.085215,-75.128121,,,1, +17488,Jenkintown Rd & Holmcrest Rd ,40.08758,-75.116705,,,1, +17489,Chew Av & Cliveden St ,40.05304,-75.177049,,,1, +17490,Jenkintown Rd & Forrest Av - FS,40.085281,-75.114787,,,1, +17491,Chew Av & Upsal St ,40.053542,-75.177827,,,1, +17492,Jenkintown Rd & Tulpehocken Av,40.084128,-75.114058,,,1, +17493,Jenkintown Rd & Cadwalader Av,40.083306,-75.113695,,,1, +17494,Cadwalader Av & Cypress Av,40.081858,-75.116399,,,1, +17495,Chew Av & Montana St ,40.054509,-75.17942,,,1, +17496,Township Line Rd & Cedar Rd ,40.078126,-75.112476,,,1, +17497,Township Line Rd & Church Rd ,40.070183,-75.098695,,,1, +17498,Cottman Av & Oakley St,40.062059,-75.084931,,,1, +17499,Chew Av & Hortter St ,40.055019,-75.18027,,,1, +17500,Phil Ellena St & Chew Av - FS,40.055645,-75.180978,,,1, +17501,Cottman Av & Tabor Av,40.059548,-75.080673,,,1, +17502,Phil Ellena St & Boyer St ,40.056892,-75.17972,,,1, +17503,Cottman Av & Claridge St,40.059037,-75.079801,,,1, +17505,Phil Ellena St & Sprague St ,40.058442,-75.178129,,,1, +17506,Cottman Av & Castor Av,40.051243,-75.066275,,,1, +17507,Cottman Av & Large St,40.05013,-75.064329,,,1, +17508,Cottman Av & Horrocks St,40.049117,-75.062561,,,1, +17510,Cottman Av & Hanford St,40.046416,-75.05788,,,1, +17513,Cottman Av & Revere St,40.043743,-75.053271,,,1,0 +17514,Old York Rd & Meetinghouse Rd,40.083246,-75.127689,,,1, +17515,Revere St & Saint Vincent St ,40.042132,-75.054781,,,1, +17517,Old York Rd & Foxcroft Rd - FS,40.081902,-75.1272,,,1, +17518,Vernon Rd & Blakemore St - FS,40.05971,-75.17816,,,1, +17519,Vernon Rd & Ardleigh St - FS,40.060717,-75.177506,,,1, +17520,Vernon Rd & Anderson St ,40.062118,-75.1773,,,1, +17521,Old York Rd & Church Rd - FS,40.07694,-75.12754,,,1, +17522,Gravers Ln & Germantown Av - FS,40.075219,-75.204734,,,1, +17523,Vernon Rd & Crittenden St ,40.06374,-75.176254,,,1, +17524,Old York Rd & Elkins Av,40.074937,-75.129465,,,1, +17525,Vernon Rd & Stenton Av ,40.065122,-75.175362,,,1, +17526,Old York Rd & Spring Av,40.073273,-75.131684,,,1, +17528,Gravers Ln & Anderson St ,40.077268,-75.202657,,,1, +17529,Gravers Ln & Crittenden St ,40.078417,-75.201494,,,1, +17530,Old York Rd & Ashbourne Rd,40.071279,-75.133822,,,1, +17531,Old York Rd & Academy Ln,40.069013,-75.134458,,,1, +17532,Stenton Av & Hortter St ,40.063339,-75.172222,,,1, +17533,3rd St & Reed St,39.930451,-75.149797,,,1, +17534,Old York Rd & Melrose Av,40.066988,-75.134785,,,1, +17535,3rd St & Wharton St,39.931709,-75.149674,,,1, +17536,Old York Rd & Develon Rd,40.066203,-75.134919,,,1, +17537,Upsal St & Stenton Av - FS,40.062702,-75.17064,,,1, +17538,3rd St & Federal St,39.932949,-75.149397,,,1, +17539,Old York Rd & Beech Av,40.065311,-75.135159,,,1, +17540,Upsal St & Rodney St ,40.064207,-75.169061,,,1, +17541,3rd St & Carpenter St,39.935072,-75.148917,,,1, +17542,Old York Rd & Willow Av,40.063634,-75.135852,,,1, +17543,3rd St & Christian St,39.936419,-75.148616,,,1, +17544,3rd St & Queen St,39.937204,-75.148448,,,1, +17545,Old York Rd & 71st Av - FS,40.0608,-75.13746,,,1, +17546,3rd St & Catharine St,39.937855,-75.148304,,,1, +17547,Old York Rd & 70th Av,40.059552,-75.13821,,,1, +17548,3rd St & Fitzwater St,39.938801,-75.148087,,,1, +17549,Upsal St & Lowber Av ,40.065107,-75.168135,,,1, +17550,Old York Rd & 69th Av,40.05809,-75.139103,,,1, +17552,3rd St & Bainbridge St,39.940469,-75.147727,,,1, +17553,Upsal St & Woolston Av ,40.06712,-75.166046,,,1, +17554,3rd St & South St,39.941325,-75.147534,,,1, +17555,Old York Rd & 68th Av,40.056664,-75.139984,,,1, +17556,Upsal St & Gilbert St ,40.068116,-75.164694,,,1, +17557,3rd St & Lombard St,39.942333,-75.147318,,,1, +17558,3rd St & Pine St,39.943261,-75.147125,,,1, +17559,Thouron Av & Sharpnack St ,40.069367,-75.165222,,,1, +17560,3rd St & Spruce St,39.944688,-75.146813,,,1, +17563,Thouron Av & Phil Ellena St ,40.070164,-75.166603,,,1, +17564,3rd St & Walnut St,39.947007,-75.146308,,,1, +17566,Thouron Av & Vernon Rd ,40.071463,-75.168893,,,1, +17567,3rd St & Chestnut St,39.94856,-75.145935,,,1, +17569,Thouron Av & Gorgas Ln ,40.072162,-75.170109,,,1, +17571,3rd St & Arch St ,39.952092,-75.145177,,,1, +17572,Thouron Av & Sedgwick St ,40.073049,-75.171631,,,1, +17573,Old York Rd & Medary Av,40.049944,-75.144221,,,1, +17574,Thouron Av & Mt Pleasant Av ,40.073828,-75.173024,,,1, +17575,3rd St & Race St ,39.953921,-75.14478,,,1, +17576,Erie Av & I St ,40.005324,-75.109489,,,1, +17578,Mt Pleasant Av & Williams Av ,40.075075,-75.171849,,,1, +17579,3rd St & Vine St ,39.955767,-75.144395,,,1, +17581,3rd St & Callowhill St ,39.957382,-75.14407,,,1, +17582,Michener Av & Mt Pleasant Av ,40.076866,-75.170423,,,1, +17584,Michener Av & Mt Airy Av ,40.078075,-75.172477,,,1, +17586,Michener Av & Gowen Av ,40.079813,-75.175499,,,1, +17587,Michener Av & Roumfort Rd ,40.080852,-75.177388,,,1, +17593,Roumfort Rd & Pickering Av ,40.082322,-75.176023,,,1, +17595,Roumfort Rd & Cheltenham Av ,40.083596,-75.174764,,,1, +17597,Cheltenham Av & Elaine St ,40.08296,-75.173666,,,1, +17598,Cheltenham Av & Gowan Av ,40.082584,-75.173028,,,1, +17600,Erie Av & Castor Av ,40.005699,-75.09917,,,1, +17602,3rd St & Willow St ,39.958426,-75.14383,,,1, +17604,3rd St & Fairmount Av ,39.962262,-75.143047,,,1, +17605,3rd St & Brown St ,39.963296,-75.142818,,,1, +17606,3rd St & Poplar St ,39.964875,-75.142481,,,1, +17607,3rd St & Wildey St ,39.966481,-75.142156,,,1, +17608,3rd St & George St ,39.967596,-75.141915,,,1, +17609,3rd St & Thompson St,39.970888,-75.141193,,,1, +17610,Torresdale Av & Frankford Av ,40.00593,-75.092043,,,1, +17611,Torresdale Av & Salem St ,40.006183,-75.090033,,,1, +17612,Torresdale Av & Adams Av - FS,40.006651,-75.087974,,,1, +17613,Torresdale Av & Womrath St ,40.007103,-75.086885,,,1, +17615,Arrott St & Leiper St ,40.017927,-75.086195,,,1, +17616,Arrott St & Oakland St ,40.01921,-75.088446,,,1, +17617,Germantown Av & Master St,39.972361,-75.141329,,,1, +17618,Germantown Av & Jefferson St,39.973575,-75.141655,,,1, +17619,Oxford St & American St ,39.974874,-75.139913,,,1, +17620,American St & Cecil B Moore Av,39.976247,-75.139364,,,1, +17621,Arrott St & Horrocks St ,40.019873,-75.089602,,,1, +17622,Arrott St & Large St ,40.021029,-75.091393,,,1, +17623,Arrott St & Castor Av ,40.022517,-75.093667,,,1, +17624,Castor Av & Adams Av ,40.022233,-75.094189,,,1, +17625,American St & Berks St,39.979227,-75.138714,,,1, +17626,American St & Norris St,39.980734,-75.138401,,,1, +17627,Castor Av & Orthodox St,40.019712,-75.095903,,,1, +17628,American St & Diamond St,39.982215,-75.138076,,,1, +17629,American St & Susquehanna Av,39.983803,-75.137739,,,1, +17630,American St & Dauphin St ,39.985391,-75.137389,,,1, +17631,Castor Av & Wyoming Av ,40.018332,-75.097268,,,1, +17632,American St & York St ,39.986899,-75.137076,,,1, +17633,American St & Cumberland St ,39.988388,-75.136763,,,1, +17634,Castor Av & Wingohocking St ,40.013825,-75.097419,,,1, +17635,American St & Huntingdon St ,39.989878,-75.13645,,,1, +17636,M St & Cayuga St - FS,40.01334,-75.09949,,,1, +17637,M St & Bristol St ,40.012171,-75.099743,,,1, +17638,M St & Hunting Park Av ,40.010646,-75.100093,,,1, +17639,Hunting Park Av & L St ,40.01083,-75.102137,,,1, +17640,Hunting Park Av & K St ,40.011085,-75.104086,,,1, +17641,Hunting Park Av & J St ,40.011331,-75.105999,,,1, +17642,Hunting Park Av & I St,40.011594,-75.10796,,,1, +17643,Hunting Park Av & H St ,40.01184,-75.109909,,,1, +17644,G St & Lycoming St ,40.010553,-75.112586,,,1, +17645,G St & Luzerne St ,40.009081,-75.112911,,,1, +17646,G St & Erie Av ,40.006111,-75.113551,,,1, +17647,Lehigh Av & 2nd St,39.991365,-75.134967,,,1, +17648,Lehigh Av & Mascher St,39.991093,-75.132971,,,1, +17650,Front St & Somerset St,39.992399,-75.130496,,,1, +17651,Front St & Cambria St,39.993888,-75.130159,,,1, +17652,Front St & Clearfield St,39.996868,-75.129556,,,1, +17653,Front St & Allegheny Av,39.998456,-75.129206,,,1, +17654,Front St & Westmoreland St,40.000026,-75.128869,,,1, +17655,Front St & Tioga St,40.003014,-75.12823,,,1, +17656,Front St & Venango St,40.004227,-75.127953,,,1, +17657,Front St & Luzerne St,40.010721,-75.12659,,,1,0 +17658,Front St & Hunting Park Av,40.013594,-75.125964,,,1, +17659,Front St & Wingohocking St - MBNS,40.017011,-75.125287,,,1, +17661,Wingohocking St & Front St - FS,40.018528,-75.12521,,,1, +17662,Wingohocking St & Rising Sun Av,40.018764,-75.127053,,,1, +17663,Rising Sun Av & Loudon St,40.02306,-75.12441,,,1, +17664,Rising Sun Av & Rockland St,40.024476,-75.123187,,,1, +17665,Rising Sun Av & Ruscomb St,40.025126,-75.122628,,,1, +17666,Rising Sun Av & Roosevelt Blvd - FS,40.026346,-75.121571,,,1, +17667,Rising Sun Av & Sheldon St,40.027584,-75.120561,,,1, +17668,Rising Sun Av & Ashdale St,40.028226,-75.120014,,,1, +17669,Rising Sun Av & C St,40.030132,-75.118446,,,1, +17670,Rising Sun Av & Geneva Av,40.03153,-75.117281,,,1, +17671,Rising Sun Av & Clarkson Av,40.032937,-75.116081,,,1, +17672,Front St & Chew Av,40.036752,-75.12103,,,1, +17673,Front St & Grange St,40.038313,-75.120692,,,1, +17674,Front St & Nedro Av,40.039829,-75.120378,,,1, +17675,Front St & Champlost St,40.041319,-75.120052,,,1, +17678,Crescentville Rd & Walnut Park Dr - FS,40.046521,-75.112474,,,1, +17679,Cottman Av & Revere St,40.043778,-75.052999,,,1, +17680,Cheltenham Av & Rowland Av,40.047897,-75.112834,,,1, +17681,Cottman Av & Roosevelt Blvd - FS,40.044818,-75.054779,,,1, +17683,Cottman Av & Large St,40.050147,-75.064069,,,1, +17684,Cheltenham Av & Ivinetta Rd,40.049143,-75.114981,,,1, +17685,Cheltenham Av & 7 Oaks Dr - FS,40.050299,-75.116998,,,1, +17686,Cottman Av & Castor Av,40.051197,-75.065909,,,1, +17687,Cheltenham Av & Covington Rd,40.05116,-75.118496,,,1, +17689,Cottman Av & Frontenac St,40.053305,-75.069611,,,1, +17690,Cottman Av & Algon St,40.055341,-75.073137,,,1, +17691,Cottman Av & Pennway St,40.056391,-75.074918,,,1, +17692,Cheltenham Av & Brief Rd,40.05168,-75.119405,,,1, +17694,Cottman Av & Claridge St,40.059036,-75.079517,,,1, +17695,Cottman Av & Tabor Av - FS,40.059682,-75.080637,,,1, +17696,Cottman Av & Bingham St,40.06057,-75.08217,,,1, +17697,Cottman Av & Rising Sun Av - FS,40.061655,-75.08401,,,1, +17699,2nd St & 66th Av,40.051205,-75.122599,,,1, +17700,Cottman Av & Ryers Av - MBFS,40.064964,-75.089683,,,1, +17701,2nd St & 65th Av,40.049689,-75.12289,,,1, +17702,2nd St & 64th Av,40.047931,-75.123193,,,1, +17703,2nd St & Chelten Av,40.046638,-75.123423,,,1, +17704,2nd St & Godfrey Av,40.04513,-75.123631,,,1, +17708,Erie Av & D St ,40.006732,-75.119221,,,1, +17709,Godfrey Av & 6th St,40.04594,-75.130343,,,1, +17710,Godfrey Av & 7th St,40.046078,-75.132022,,,1, +17711,Godfrey Av & 10th St,40.046328,-75.135876,,,1, +17712,B St & Erie Av - FS,40.007082,-75.123628,,,1, +17713,11th St & Godfrey Av - FS,40.046636,-75.137672,,,1, +17714,11th St & Spencer St,40.04536,-75.137925,,,1, +17715,B St & Venango St ,40.003897,-75.124232,,,1, +17716,11th St & Champlost Av,40.043808,-75.138286,,,1, +17717,Tioga St & Ormes St,40.002549,-75.123966,,,1, +17718,11th St & Nedro Av,40.042309,-75.1386,,,1, +17719,Township Line Rd & Laurel Av - MBNS,40.067854,-75.094623,,,1, +17721,Township Line Rd & New 2nd St,40.076942,-75.110103,,,1, +17722,Tioga St & C St ,40.002348,-75.12236,,,1, +17723,Cadwalader Av & Cypress Av,40.081644,-75.116435,,,1, +17725,Tioga St & D St ,40.002076,-75.120446,,,1, +17727,Old York Rd & Township Line Rd,40.087268,-75.12797,,,1, +17728,Tioga St & E St ,40.001821,-75.118509,,,1, +17732,Glenside Av & North Av ,40.096372,-75.143433,,,1, +17733,Glenside Av & Rices Mill Rd ,40.097806,-75.145971,,,1, +17734,Tioga St & F St,40.001575,-75.116549,,,1, +17735,Glenside Av & Stanley Av ,40.098498,-75.148051,,,1, +17736,Glenside Av & Keswick Av,40.099341,-75.149882,,,1, +17737,Easton Rd & Limekiln Pk ,40.092218,-75.162037,,,1, +17738,F St & Ontario St ,40.000175,-75.116803,,,1, +17739,F St & Westmoreland St ,39.998676,-75.117152,,,1, +17740,F St & Allegheny Av ,39.997088,-75.117467,,,1, +17741,F St & Clearfield St ,39.995483,-75.117816,,,1, +17742,F St & Kensington Av ,39.994056,-75.11813,,,1, +17743,Kensington Av & Clearfield St ,39.995085,-75.115845,,,1, +17744,Kensington Av & Westmoreland St ,39.997742,-75.111024,,,1, +17745,Kensington Av & Ontario St ,39.998968,-75.108797,,,1, +17747,Kensington Av & Venango St ,40.001411,-75.104366,,,1, +17748,Venango St & Jasper St ,40.000086,-75.103049,,,1, +17749,Venango St & Emerald St ,39.99912,-75.10219,,,1, +17751,Cheltenham Av & Woodbrook Ln ,40.084312,-75.175743,,,1, +17752,Venango St & Frankford Av ,39.998234,-75.101403,,,1, +17753,Cheltenham Av & Firethorn Ln ,40.08707,-75.180431,,,1, +17759,Willow Grove Av & Traymore Av ,40.082152,-75.189202,,,1, +17760,Willow Grove Av & Flourtown Av ,40.08127,-75.190081,,,1, +17761,Willow Grove Av & Ardmore Av ,40.07931,-75.192252,,,1, +17762,Willow Grove Av & Pine Rd ,40.078001,-75.193581,,,1, +17763,Willow Grove Av & Stenton Av ,40.076638,-75.194994,,,1, +17765,Willow Grove Av & Crittenden St,40.075435,-75.196169,,,1, +17766,Willow Grove Av & Winston Rd ,40.072379,-75.19923,,,1, +17768,Aramingo Av & Tioga St ,39.992258,-75.099291,,,1, +17769,Aramingo Av & Ontario St,39.991068,-75.101601,,,1, +17770,Germantown Av & Abington Av ,40.071929,-75.201645,,,1, +17771,Germantown Av & Hartwell Ln ,40.073171,-75.202528,,,1, +17772,Aramingo Av & Westmoreland St,39.989851,-75.103911,,,1, +17773,Aramingo Av & Allegheny Av ,39.98859,-75.106338,,,1, +17774,Germantown Av & Southampton Av,40.074154,-75.203318,,,1, +17775,Aramingo Av & Clearfield St ,39.987329,-75.10879,,,1, +17776,Germantown Av & Gravers Ln ,40.075139,-75.204805,,,1, +17777,Germantown Av & Highland Av ,40.076025,-75.206269,,,1, +17778,Germantown Av & Evergreen Av ,40.076553,-75.207178,,,1, +17779,Cadwalader Av & Jenkintown Rd,40.083136,-75.113672,,,1, +17780,Jenkintown Rd & Tulpehocken Av,40.08402,-75.113834,,,1, +17781,Jenkintown Rd & Forrest Av,40.085406,-75.114703,,,1, +17782,Aramingo Av & Ann St ,39.985864,-75.111573,,,1, +17783,Aramingo Av & Cambria St ,39.984922,-75.113384,,,1, +17784,Aramingo Av & Somerset St ,39.983643,-75.115635,,,1, +17785,Aramingo Av & Lehigh St - FS,39.981416,-75.117582,,,1, +17786,Aramingo Av & Huntingdon St ,39.979027,-75.118656,,,1, +17787,Aramingo Av & Cumberland St ,39.976513,-75.119812,,,1, +17788,Aramingo Av & Norris St ,39.974093,-75.122682,,,1, +17789,Norris St & Almond St ,39.975016,-75.124213,,,1, +17790,Norris St & Belgrade St ,39.97558,-75.125132,,,1, +17791,Norris St & Gaul St ,39.976091,-75.126004,,,1, +17792,Norris St & Cedar St ,39.976799,-75.127206,,,1, +17793,Susquehanna Av & Memphis St ,39.977871,-75.127863,,,1, +17794,Susquehanna Av & Tulip St ,39.978533,-75.128439,,,1, +17795,Susquehanna Av & Frankford Av ,39.979508,-75.129274,,,1, +17796,Susquehanna Av & Trenton Av ,39.980367,-75.13005,,,1, +17797,Susquehanna Av & Amber St ,39.981234,-75.130791,,,1, +17798,Susquehanna Av & Coral St ,39.982138,-75.13159,,,1, +17799,Dauphin St & Emerald St ,39.983797,-75.131501,,,1, +17800,Dauphin St & Coral St ,39.982823,-75.13069,,,1, +17801,Dauphin St & Amber St ,39.981901,-75.129878,,,1, +17802,Dauphin St & Frankford Av ,39.98056,-75.128643,,,1, +17803,Norris St & Tulip St ,39.978045,-75.129599,,,1, +17804,Norris St & Memphis St ,39.977525,-75.128715,,,1, +17805,Norris St & Cedar St ,39.976853,-75.12756,,,1, +17806,Cedar St & Dauphin St ,39.977483,-75.12601,,,1, +17809,York St & Gaul St ,39.977255,-75.124062,,,1, +17811,Aramingo Av & Cumberland St ,39.976263,-75.119754,,,1, +17812,Aramingo Av & Huntingdon St ,39.97875,-75.118598,,,1, +17813,Aramingo Av & Lehigh Av ,39.981434,-75.117393,,,1, +17814,Aramingo Av & Somerset St ,39.983455,-75.115671,,,1, +17815,Aramingo Av & Cambria St ,39.984771,-75.113444,,,1, +17816,Aramingo Av & Ann St ,39.985721,-75.111621,,,1, +17817,Aramingo Av & Clearfield St ,39.987187,-75.108838,,,1, +17818,Aramingo Av & Allegheny Av ,39.988448,-75.106386,,,1, +17819,Aramingo Av & Westmoreland St - FS,39.989815,-75.103781,,,1, +17820,Torresdale Av & Ruan St,40.007804,-75.085251,,,1, +17821,Aramingo Av & Ontario St ,39.990917,-75.101661,,,1, +17822,Aramingo Av & Tioga St ,39.992115,-75.099339,,,1, +17825,Torresdale Av & Kinsey St ,40.009098,-75.082184,,,1, +17828,Torresdale Av & Gillingham St ,40.00979,-75.080537,,,1, +17830,Venango St & Emerald Av ,39.999057,-75.101954,,,1, +17832,Torresdale Av & Orthodox St ,40.010277,-75.079353,,,1, +17833,Market St & 11th St - MBNS,39.951719,-75.157874,,,1, +17834,Venango St & Jasper St ,40.000014,-75.102801,,,1, +17840,Kensington Av & Venango St,40.001696,-75.104128,,,1, +17841,Torresdale Av & Margaret St ,40.011226,-75.077127,,,1, +17842,JFK Blvd & 15th St,39.953653,-75.164987,,,7, +17847,Torresdale Av & Wakeling St,40.012429,-75.073398,,,1, +17848,Kensington Av & J St ,39.99919,-75.108678,,,1, +17849,Torresdale Av & Pratt St ,40.012756,-75.071954,,,1, +17853,Kensington Av & I St ,39.997964,-75.110916,,,1, +17855,11th St & Callowhill St,39.958847,-75.156689,,,1, +17857,G St & Westmoreland St ,39.998261,-75.115074,,,1, +17858,Torresdale Av & Simon St ,40.013936,-75.066677,,,1, +17859,G St & Ontario St ,39.99975,-75.114737,,,1, +17860,Ridge Av & Spring Garden St,39.961651,-75.157304,,,1, +17861,Ridge Av & Mt Vernon St,39.963698,-75.158749,,,1, +17862,Ridge Av & Wallace St,39.96494,-75.159359,,,1, +17863,Ridge Av & Melon St,39.966226,-75.160075,,,1, +17864,Ridge Av & 15th St,39.96797,-75.161804,,,1, +17865,Ridge Av & 16th St,39.969151,-75.16317,,,1, +17866,G St & Tioga St ,40.001267,-75.114423,,,1, +17867,Ridge Av & 17th St,39.970395,-75.164571,,,1, +17870,Tioga St & F St ,40.001673,-75.116324,,,1, +17871,Ridge Av & 19th St,39.973337,-75.167123,,,1, +17872,Ridge Av & Thompson St,39.974239,-75.167628,,,1, +17873,Ridge Av & Master St,39.975687,-75.168438,,,1, +17874,Ridge Av & Jefferson St,39.977188,-75.169283,,,1, +17875,Ridge Av & Oxford St,39.978787,-75.170199,,,1, +17876,Ridge Av & 22nd St,39.979565,-75.170952,,,1, +17877,Tioga St & E St ,40.001919,-75.118285,,,1, +17878,Ridge Av & Cecil B Moore Av,39.980523,-75.172354,,,1, +17879,Ridge Av & 24th St,39.981606,-75.173803,,,1, +17880,Ridge Av & 25th St - FS,39.982859,-75.175429,,,1, +17881,Tioga St & D St ,40.002174,-75.120221,,,1, +17882,Ridge Av & 26th St - NS,39.983691,-75.176549,,,1, +17883,Ridge Av & Montgomery Av,39.982438,-75.174864,,,1, +17884,Tioga St & C St - FS,40.002392,-75.121792,,,1, +17885,Ridge Av & Sedgley Av ,39.986322,-75.180107,,,1, +17887,Ridge Av & 29th St ,39.986769,-75.180685,,,1, +17888,Ridge Av & 30th St ,39.987924,-75.182134,,,1, +17889,Tioga St & B St ,40.00271,-75.124249,,,1, +17890,Ridge Av & 31st St ,39.989122,-75.183465,,,1, +17891,Ridge Av & Susquehanna Av ,39.989847,-75.184195,,,1, +17892,Ridge Av & 32nd St ,39.990535,-75.184783,,,1, +17893,B St & Venango St,40.003736,-75.124091,,,1, +17894,B St & Erie Av ,40.007099,-75.123308,,,1, +17895,Erie Av & D St ,40.006625,-75.119434,,,1, +17896,Erie Av & F St ,40.006098,-75.115501,,,1, +17897,G St & Erie Av - FS,40.006128,-75.113374,,,1, +17898,G St & Luzerne St ,40.008911,-75.112782,,,1, +17899,G St & Lycoming St ,40.010383,-75.112457,,,1, +17900,Hunting Park Av & H St ,40.011743,-75.110134,,,1, +17901,Hunting Park Av & I St ,40.011488,-75.108173,,,1, +17902,Hunting Park Av & J St ,40.011233,-75.106224,,,1, +17903,Hunting Park Av & K St ,40.010987,-75.104311,,,1, +17904,Hunting Park Av & L St ,40.010732,-75.102362,,,1, +17905,M St & Hunting Park Av - FS,40.010645,-75.099928,,,1, +17906,M St & Bristol St ,40.01201,-75.099614,,,1, +17907,M St & Cayuga St ,40.013473,-75.099288,,,1, +17908,Torresdale Av & Sanger St ,40.014565,-75.065066,,,1, +17910,Torresdale Av & Cheltenham Av ,40.015409,-75.063431,,,1, +17911,Orthodox St & Large St ,40.018991,-75.093506,,,1, +17912,Orthodox St & Horrocks St ,40.017906,-75.091455,,,1, +17914,Torresdale Av & Comly St ,40.01753,-75.059342,,,1, +17915,Torresdale Av & Benner St ,40.018382,-75.057683,,,1, +17916,Torresdale Av & Deveraux Av ,40.019402,-75.055727,,,1, +17917,Torresdale Av & Robbins Av,40.020405,-75.053772,,,1, +17918,Torresdale Av & Levick St ,40.021417,-75.051816,,,1, +17919,Torresdale Av & Hellerman St ,40.022331,-75.050062,,,1, +17920,Torresdale Av & Magee Av ,40.023182,-75.048414,,,1, +17921,10th St & Champlost St,40.043383,-75.136596,,,1, +17922,Torresdale Av & Unruh Av ,40.024123,-75.046589,,,1, +17923,10th St & Spencer St,40.044946,-75.136224,,,1, +17924,Torresdale Av & Knorr St ,40.025063,-75.044763,,,1, +17925,10th St & Godfrey Av,40.046203,-75.135947,,,1, +17926,Godfrey Av & 7th St,40.045963,-75.132223,,,1, +17927,Torresdale Av & Longshore Av ,40.025835,-75.043305,,,1, +17928,Godfrey Av & 6th St,40.045843,-75.130568,,,1, +17929,Torresdale Av & Disston St ,40.026402,-75.042178,,,1, +17930,Godfrey Av & 4th St ,40.045343,-75.126739,,,1, +17931,Godfrey Av & 3rd St ,40.045215,-75.125711,,,1, +17932,2nd St & Godfrey Av - FS,40.045174,-75.123465,,,1, +17933,Torresdale Av & Tyson Av ,40.026953,-75.041124,,,1, +17934,Torresdale Av & Princeton Av ,40.02808,-75.038931,,,1, +17935,Torresdale Av & Wellington St ,40.029233,-75.036714,,,1, +17936,2nd St & Chelten Av,40.046459,-75.123258,,,1, +17937,2nd St & 64th Av - FS,40.047743,-75.12304,,,1, +17938,2nd St & 65th Av,40.049528,-75.122737,,,1, +17939,2nd St & 66th Av,40.051044,-75.122458,,,1, +17940,Cheltenham Av & Mascher St - FS,40.051797,-75.119912,,,1, +17941,Cheltenham Av & Covington Rd ,40.051142,-75.118756,,,1, +17942,Cheltenham Av & 7 Oaks Dr ,40.050264,-75.117235,,,1, +17943,Cheltenham Av & Pine Ridge Rd ,40.048812,-75.114699,,,1, +17944,Cheltenham Av & Crescentville Rd,40.047539,-75.112469,,,1, +17945,Torresdale Av & Princeton Av ,40.028267,-75.038883,,,1, +17946,Torresdale Av & Tyson Av ,40.027185,-75.041005,,,1, +17947,Torresdale Av & Disston St ,40.026599,-75.042143,,,1, +17948,Torresdale Av & Longshore Av ,40.026041,-75.043245,,,1, +17949,Crescentville Rd & Walnut Park Dr,40.046441,-75.112664,,,1, +17951,Torresdale Av & Knorr St ,40.025269,-75.044703,,,1, +17952,Champlost St & A St ,40.041234,-75.118078,,,1, +17953,Torresdale Av & Unruh Av ,40.024328,-75.046493,,,1, +17954,Front St & Champlost St - FS,40.041257,-75.12023,,,1, +17955,Front St & Nedro Av,40.039999,-75.120507,,,1, +17956,Front St & Grange St ,40.038483,-75.120821,,,1, +17957,Torresdale Av & Magee Av ,40.023387,-75.048354,,,1, +17958,Front St & Chew St ,40.03693,-75.121147,,,1, +17959,Torresdale Av & Hellerman St ,40.022536,-75.050002,,,1, +17960,Rising Sun Av & Clarkson Av ,40.033134,-75.116115,,,1, +17961,Rising Sun Av & Somerville Av ,40.031726,-75.117316,,,1, +17962,Rising Sun Av & Tabor Rd ,40.030631,-75.118231,,,1, +17964,Rising Sun Av & Duncannon Av ,40.028422,-75.120049,,,1, +17965,Rising Sun Av & Ruscomb St ,40.027558,-75.120774,,,1, +17966,Rising Sun Av & Roosevelt Blvd ,40.026231,-75.121867,,,1, +17967,Rising Sun Av & Rockland St ,40.024672,-75.123221,,,1, +17968,Rising Sun Av & Loudon St ,40.023256,-75.124433,,,1, +17969,Rising Sun Av & Saber St ,40.019629,-75.126872,,,1, +17970,Wingohocking St & Rising Sun Av - FS,40.018621,-75.126971,,,1, +17971,Torresdale Av & Levick St ,40.021622,-75.051756,,,1, +17972,Torresdale Av & Robbins Av,40.02061,-75.053712,,,1, +17973,Torresdale Av & Deveraux Av ,40.019607,-75.055667,,,1, +17974,Torresdale Av & Benner St ,40.018587,-75.057623,,,1, +17975,Torresdale Av & Comly St ,40.017735,-75.059282,,,1, +17976,Torresdale Av & Howell St ,40.017016,-75.060657,,,1, +17978,Torresdale Av & Church St ,40.008594,-75.083699,,,1, +17979,Torresdale Av & Van Kirk St ,40.016412,-75.06183,,,1, +17980,Torresdale Av & Cheltenham Av ,40.015614,-75.063371,,,1, +17981,Torresdale Av & Sanger St ,40.014771,-75.065006,,,1, +17982,Torresdale Av & Pratt St ,40.012934,-75.071811,,,1, +17983,Gravers Ln & Stenton Av ,40.079486,-75.200426,,,1, +17984,Torresdale Av & Wakeling St,40.012608,-75.073255,,,1, +17985,Stenton Av & Cresheim Valley Dr,40.077991,-75.197745,,,1, +17987,Torresdale Av & Orthodox St,40.010473,-75.079258,,,1, +17988,Stenton Av & Abington Av ,40.077346,-75.196636,,,1, +17989,Torresdale Av & Gillingham St ,40.009977,-75.080454,,,1, +17990,Torresdale Av & Kinsey St ,40.009277,-75.082112,,,1, +17992,Stenton Av & Willow Grove Av - FS,40.076334,-75.194912,,,1, +17993,Torresdale Av & Ruan St ,40.008,-75.08512,,,1, +17994,Torresdale Av & Womrath St ,40.007299,-75.086789,,,1, +17995,Torresdale Av & Adams Av ,40.006687,-75.088211,,,1, +17996,Torresdale Av & Paul St - FS,40.006335,-75.08989,,,1, +17997,Torresdale Av & Frankford Av ,40.006071,-75.091699,,,1, +17998,Ridge Av & 33rd St ,39.992697,-75.186064,,,1, +17999,Ridge Av & York St - FS,39.993501,-75.186451,,,1, +18000,Ridge Av & Cumberland St ,39.994949,-75.187179,,,1, +18001,Ridge Av & Huntingdon St ,39.995708,-75.187424,,,1, +18003,Ridge Av & 35th St ,40.002802,-75.187129,,,1, +18006,Erie Av & Castor Av ,40.005832,-75.098969,,,1, +18008,Ridge Av & Scotts Ln - MBFS,40.007385,-75.189418,,,1, +18009,Ridge Av & Minerva St ,40.051637,-75.236382,,,1, +18012,Erie Av & M St ,40.005748,-75.10099,,,1, +18013,Ridge Av & Calumet St,40.009897,-75.196323,,,1, +18014,Ridge Av & Merrick Rd,40.010364,-75.197551,,,1, +18016,Erie Av & L St ,40.005655,-75.103176,,,1, +18017,Ridge Av & I-76 Ramp - MBNS,40.014213,-75.203992,,,1, +18018,Erie Av & K St ,40.005599,-75.105257,,,1, +18020,Erie Av & I St ,40.005448,-75.109276,,,1, +18023,Stenton Av & Mermaid Ln,40.074096,-75.191015,,,1, +18024,Umbria St & Parker St ,40.034882,-75.234807,,,1, +18025,Stenton Av & Woodbrook Ln - FS,40.07234,-75.187922,,,1, +18026,Stenton Av & Roumfort Rd,40.071499,-75.186446,,,1, +18027,Umbria St & Paoli Av ,40.036277,-75.236529,,,1, +18028,Umbria St & Paoli Av - MBFS,40.037512,-75.238441,,,1, +18029,Stenton Av & Gowen Av ,40.070549,-75.184758,,,1, +18030,Domino Ln & Umbria St - MBFS,40.040796,-75.238374,,,1, +18031,Domino Ln & Fowler St ,40.043301,-75.236593,,,1, +18032,Domino Ln & Fowler St - MBFS,40.044333,-75.234261,,,1, +18035,Ridge Av & Lemonte St ,40.039488,-75.223858,,,1, +18036,Erie Av & Whitaker Av ,40.007277,-75.123272,,,1, +18045,Ridge Av & Hermitage St ,40.036659,-75.2189,,,1, +18051,Wingohocking St & Front St,40.018278,-75.12514,,,1, +18052,Front St & Wingohocking St - MBFS,40.016556,-75.125514,,,1, +18053,Front St & Hunting Park Av ,40.013915,-75.126057,,,1, +18054,Front St & Luzerne St ,40.010891,-75.12672,,,1,0 +18055,Erie Av & 2nd St ,40.006851,-75.131464,,,1, +18056,2nd St & Glenwood Av ,40.004621,-75.132147,,,1, +18057,2nd St & Tioga St ,40.003693,-75.13234,,,1, +18058,2nd St & Ontario St ,40.002186,-75.132653,,,1, +18059,2nd St & Westmoreland St ,40.000705,-75.132967,,,1, +18060,2nd St & Allegheny Av ,39.999135,-75.133316,,,1, +18061,2nd St & Clearfield St - FS,39.997547,-75.133641,,,1, +18062,2nd St & Indiana Av ,39.996066,-75.133955,,,1, +18063,2nd St & Cambria St ,39.994594,-75.13428,,,1, +18064,2nd St & Somerset St,39.993069,-75.134593,,,1, +18065,2nd St & Lehigh Av,39.991526,-75.134942,,,1, +18066,American St & Huntingdon St ,39.990048,-75.136579,,,1, +18067,Orthodox St & Oakland St ,40.017368,-75.090476,,,1, +18068,Orthodox St & Leiper St ,40.016148,-75.088201,,,1, +18069,Orthodox St & Penn St ,40.015699,-75.087352,,,1, +18070,Penn St & Overington St ,40.016518,-75.086367,,,1, +18071,Penn St & Arrott St ,40.017381,-75.085547,,,1,0 +18072,Penn St & Foulkrod St ,40.018708,-75.084324,,,1, +18074,American St & Dauphin St ,39.985561,-75.137519,,,1, +18075,American St & Susquehanna Av ,39.983973,-75.137868,,,1, +18076,American St & Diamond St ,39.982385,-75.138205,,,1, +18077,American St & Norris St ,39.980904,-75.13853,,,1, +18078,American St & Berks St ,39.979397,-75.138843,,,1, +18079,American St & Cecil B Moore Av ,39.976417,-75.139493,,,1, +18080,American St & Oxford Av ,39.974981,-75.139794,,,1, +18081,American St & Jefferson St ,39.973902,-75.140023,,,1, +18082,American St & Master St ,39.972671,-75.140324,,,1, +18083,American St & Thompson St ,39.971091,-75.140153,,,1, +18085,4th St & George St ,39.968011,-75.143602,,,1, +18086,4th St & Poplar St ,39.965736,-75.144072,,,1, +18087,4th St & Brown St ,39.963836,-75.144469,,,1, +18088,4th St & Fairmount Av ,39.962783,-75.144698,,,1, +18089,4th St & Spring Garden St ,39.961142,-75.145035,,,1, +18090,4th St & Callowhill St ,39.957698,-75.145757,,,1, +18091,4th St & Vine St,39.956128,-75.146083,,,1, +18092,4th St & Race St,39.954291,-75.14648,,,1, +18093,4th St & Arch St,39.952444,-75.146877,,,1, +18094,4th St & Chestnut St,39.94892,-75.147634,,,1, +18095,4th St & Walnut St ,39.947413,-75.148006,,,1, +18096,Torresdale Av & Margaret St,40.011413,-75.077043,,,1, +18098,4th St & Locust St,39.946128,-75.148283,,,1, +18099,4th St & Spruce St,39.94504,-75.148512,,,1, +18100,4th St & Pine St,39.943613,-75.148812,,,1, +18101,4th St & Lombard St,39.942712,-75.149028,,,1, +18102,4th St & South St,39.941695,-75.149245,,,1, +18103,4th St & Bainbridge St,39.940633,-75.149485,,,1, +18104,4th St & Fitzwater St,39.939251,-75.149786,,,1, +18105,4th St & Catharine St,39.938323,-75.14999,,,1, +18106,Torresdale Av & Simon St ,40.014115,-75.066534,,,1, +18108,Torresdale Av & Harbison Av ,40.013683,-75.068475,,,1, +18114,4th St & Queen St,39.937645,-75.150146,,,1, +18115,4th St & Christian St,39.937003,-75.15029,,,1, +18116,4th St & Carpenter Way,39.935442,-75.150639,,,1, +18119,Moyamensing Av & Federal St,39.93301,-75.148771,,,1, +18120,Moyamensing Av & Wharton St,39.931824,-75.149378,,,1, +18121,Moyamensing Av & Reed St,39.930647,-75.149902,,,1, +18122,Moyamensing Av & Dickinson St,39.929452,-75.15032,,,1, +18123,Moyamensing Av & Tasker St,39.928257,-75.150749,,,1, +18124,Moyamensing Av & Morris St,39.927063,-75.151215,,,1, +18125,Moyamensing Av & Moore St,39.925868,-75.15168,,,1, +18126,Moyamensing Av & Mifflin St,39.924682,-75.152145,,,1, +18127,Moyamensing Av & McKean St,39.923505,-75.152633,,,1, +18128,Moyamensing Av & Snyder Av,39.922372,-75.153121,,,1, +18129,4th St & Jackson St,39.921151,-75.153787,,,1, +18130,4th St & Wolf St,39.919902,-75.154063,,,1, +18131,4th St & Ritner St,39.918653,-75.154328,,,1, +18132,4th St & Porter St,39.917396,-75.154569,,,1, +18133,4th St & Shunk St,39.916165,-75.154833,,,1, +18134,Erie Av & J St ,40.005515,-75.107267,,,1, +18136,Oregon Av & 3rd St - FS,39.914349,-75.152987,,,1, +18137,Oregon Av & 2nd St ,39.914167,-75.15163,,,1, +18138,Oregon Av & Front St ,39.913977,-75.150132,,,1, +18139,Oregon Av & Swanson St - FS,39.913622,-75.147395,,,1, +18140,Oregon Av & Vandalia St - MBFS,39.913394,-75.145154,,,1, +18141,Oregon Av & Weccacoe Av - MBNS,39.913158,-75.143243,,,1, +18142,Oregon Av & Columbus Blvd ,39.912522,-75.138465,,,1, +18143,Erie Av & G St ,40.005977,-75.11341,,,1, +18144,Erie Av & F St - MBFS,40.006486,-75.11739,,,1, +18146,Erie Av & A St ,40.007505,-75.125068,,,1, +18148,Erie Av & 3rd St - FS,40.00708,-75.134193,,,1, +18149,Erie Av & 5th St ,40.007434,-75.136732,,,1, +18150,Erie Av & 6th St ,40.007698,-75.138717,,,1, +18151,Erie Av & Rising Sun Av,40.007898,-75.140359,,,1, +18152,Erie Av & 8th St ,40.00807,-75.141646,,,1, +18153,Erie Av & 9th St ,40.008207,-75.14265,,,1, +18154,Erie Av & Old York Rd ,40.008824,-75.147481,,,1, +18161,Erie Av & 21st St ,40.01067,-75.162756,,,1, +18162,Erie Av & 20th St ,40.010434,-75.160913,,,1, +18163,Erie Av & 19th St ,40.010216,-75.159271,,,1, +18164,Erie Av & 18th St ,40.010016,-75.157712,,,1, +18165,Erie Av & 17th St ,40.009816,-75.156129,,,1, +18166,16th St & Erie Av - FS,40.009813,-75.154356,,,1, +18167,16th St & Butler St,40.011142,-75.154067,,,1, +18168,Butler St & Germantown Av,40.010833,-75.151504,,,1, +18169,Andrews Av & 74th Av ,40.067234,-75.14873,,,1, +18170,74th Av & 20th St ,40.067398,-75.150385,,,1, +18171,74th Av & Walnut Ln ,40.067653,-75.152513,,,1, +18172,74th Av & Briar Rd ,40.067425,-75.154205,,,1, +18173,74th Av & Ogontz Av ,40.067108,-75.156205,,,1, +18174,Washington Ln & Limeklin Pk ,40.067059,-75.158323,,,1, +18175,Washington Ln & Thouron St ,40.066008,-75.159344,,,1, +18176,Washington Ln & Woolston Av ,40.0646,-75.160698,,,1, +18177,Washington Ln & Lowber Av ,40.063202,-75.162028,,,1, +18178,Washington Ln & Rodney St ,40.061999,-75.163191,,,1, +18179,Washington Ln & Mansfield Av ,40.061011,-75.164153,,,1, +18180,Washington Ln & Crittenden St ,40.057748,-75.166093,,,1, +18181,Washington Ln & Anderson St ,40.05635,-75.167541,,,1, +18182,Washington Ln & Ardleigh St ,40.054943,-75.169,,,1, +18183,Washington Ln & Washington La Station,40.051799,-75.172216,,,1, +18184,Washington Ln & Musgrave St ,40.049154,-75.174957,,,1, +18185,Washington Ln & Homer St,40.048005,-75.17612,,,1, +18186,Washington Ln & Morton St,40.046383,-75.177782,,,1, +18187,Morton St & Tulpehocken St,40.04539,-75.176413,,,1, +18188,Erie Av & 9th St ,40.008109,-75.142863,,,1, +18189,Morton St & Walnut Ln,40.044289,-75.174632,,,1, +18190,Walnut Ln & Baynton St,40.042071,-75.176863,,,1, +18191,Walnut Ln & Germantown Av,40.040646,-75.1787,,,1, +18192,Walnut Ln & McCallum St,40.039257,-75.180029,,,1, +18193,Erie Av & 8th St ,40.007973,-75.141871,,,1, +18194,Erie Av & 6th St ,40.0076,-75.138942,,,1, +18195,Erie Av & 5th St ,40.007337,-75.136957,,,1, +18196,Erie Av & 3rd St ,40.006955,-75.134146,,,1, +18197,Erie Av & A St - MBNS,40.007407,-75.125292,,,1, +18198,Erie Av & B St ,40.00718,-75.123615,,,1, +18201,Erie Av & G St ,40.005861,-75.113635,,,1, +18202,Erie Av & I St - MBNS ,40.005606,-75.111651,,,1, +18203,Erie Av & J St ,40.005372,-75.10748,,,1, +18204,Erie Av & K St ,40.005448,-75.105459,,,1, +18205,Erie Av & L St ,40.005523,-75.103402,,,1, +18206,Erie Av & M St ,40.005597,-75.101192,,,1, +18207,Torresdale Av & Harbison St ,40.013452,-75.068783,,,1, +18208,Erie Av & 15th St,40.009497,-75.15275,,,1, +18210,Torresdale Av & Van Kirk St ,40.016207,-75.06189,,,1, +18211,Erie Av & 16th St,40.009687,-75.154321,,,1, +18212,Erie Av & 17th St ,40.009905,-75.155868,,,1, +18213,Erie Av & 18th St ,40.010105,-75.157451,,,1, +18214,Erie Av & 19th St ,40.010314,-75.15901,,,1, +18215,Erie Av & 20th St ,40.010513,-75.160605,,,1, +18216,Erie Av & 21st St ,40.010767,-75.16246,,,1, +18217,Erie Av & 22nd St ,40.010958,-75.164126,,,1, +18218,Hunting Park Av & Wissahickon Av,40.010035,-75.166717,,,1,0 +18219,Wissahickon Av & Abbottsford Av - FS,40.018009,-75.172574,,,1, +18220,Wissahickon Av & Clapier St - FS,40.018626,-75.173376,,,1, +18221,Wissahickon Av & Manheim St ,40.019879,-75.174837,,,1, +18222,Manheim St & Schuyler St ,40.02109,-75.173781,,,1, +18223,Manheim St & Erringer Pl ,40.021883,-75.173045,,,1, +18224,Manheim St & Morris St ,40.023433,-75.171585,,,1, +18225,Manheim St & Pulaski Av ,40.024591,-75.170541,,,1, +18226,Manheim St & Wayne Av ,40.026132,-75.169141,,,1, +18227,Manheim St & Knox St ,40.02738,-75.168025,,,1, +18228,Manheim St & Greene St ,40.028368,-75.167099,,,1, +18229,Greene St & Hansberry St ,40.029452,-75.168679,,,1, +18230,Greene St & Queen Ln,40.030258,-75.170083,,,1, +18231,Greene St & Penn St ,40.030697,-75.170885,,,1, +18232,Greene St & Coulter St ,40.031467,-75.172219,,,1, +18233,Greene St & School House Ln ,40.032712,-75.174271,,,1, +18234,Greene St & Maplewood Av Armat St,40.033401,-75.175333,,,1, +18235,Greene St & Rittenhouse St,40.035487,-75.178636,,,1, +18236,Greene St & Harvey St ,40.036508,-75.180252,,,1, +18237,Greene St & Walnut Ln,40.037404,-75.181691,,,1, +18241,Walnut La & McCallum St,40.039016,-75.180066,,,1, +18243,Walnut Ln & Baynton St ,40.041892,-75.176863,,,1, +18244,Walnut Ln & Morton St ,40.044172,-75.174479,,,1, +18245,Morton St & Tulpehocken St ,40.04539,-75.176165,,,1, +18246,Morton St & Washington Ln ,40.046285,-75.177616,,,1, +18247,Washington Ln & Homer St ,40.047666,-75.17624,,,1, +18248,Washington Ln & Musgrave St ,40.048957,-75.174935,,,1,0 +18249,Washington Ln & Washington La Station,40.051611,-75.172182,,,1, +18250,Washington Ln & Ardleigh St ,40.054746,-75.168977,,,1, +18251,Washington Ln & Anderson St ,40.056154,-75.167518,,,1, +18252,Washington Ln & Crittenden St ,40.057552,-75.166093,,,1, +18253,Washington Ln & Mansfield Av ,40.060814,-75.16413,,,1, +18254,Washington Ln & Rodney St ,40.061803,-75.163168,,,1, +18255,Washington Ln & Lowber Av,40.063059,-75.161981,,,1, +18256,Washington Ln & Thouron Av,40.065811,-75.159321,,,1, +18257,Washington Ln & Limekiln Pk,40.066835,-75.158324,,,1, +18258,74th Av & Ogontz Av,40.066938,-75.156419,,,1, +18259,74th Av & Briar Rd,40.067264,-75.154372,,,1, +18260,74th Av & Walnut Ln,40.067537,-75.152715,,,1, +18261,74th Av & 20th St,40.067301,-75.15061,,,1, +18262,74th Av & Andrews Av,40.067064,-75.148766,,,1, +18264,Cheltenham Av & Washington Ln - FS,40.071887,-75.154212,,,1, +18267,Greene St & Tulpehocken St ,40.038594,-75.183543,,,1, +18268,Greene St & Washington Ln ,40.039346,-75.184723,,,1, +18269,Greene St & Duval St,40.04025,-75.186151,,,1, +18270,Greene St & Johnson St ,40.040904,-75.187189,,,1, +18271,Johnson St & Wayne Av ,40.038348,-75.190047,,,1, +18272,Hunting Park Av & Stokely St,40.008516,-75.170221,,,1, +18273,Broad St & Washington Av,39.937681,-75.166711,,,1, +18275,Wayne Av & Lincoln Dr ,40.03919,-75.191569,,,1, +18276,Lincoln Dr & Hortter St,40.041788,-75.191963,,,1, +18277,Lincoln Dr & Greene St,40.044494,-75.193053,,,1, +18278,McCallum St & Lincoln Dr - FS,40.046475,-75.192467,,,1, +18279,McCallum St & Westveiw Av,40.047101,-75.193328,,,1, +18280,McCallum St & Carpenter Ln,40.04779,-75.19426,,,1, +18281,McCallum St & Sedgwick St,40.048551,-75.195393,,,1, +18282,McCallum St & Ellett St,40.049186,-75.196384,,,1, +18283,McCallum St & Glen Echo Rd,40.04984,-75.197423,,,1, +18284,McCallum St & Mt Pleasant Av,40.050332,-75.19819,,,1, +18285,Mt Pleasant Av & Cherokee St,40.051508,-75.196968,,,1, +18286,Mt Pleasant Av & Emlen St,40.052728,-75.195628,,,1, +18287,Torresdale Av & Church St ,40.008398,-75.083841,,,1, +18288,Mt Pleasant Av & Lincoln Dr,40.054251,-75.193943,,,1, +18289,Mt Pleasant Av & Cresheim Rd,40.055195,-75.192971,,,1, +18290,Mt Pleasant Av & Mower St,40.056416,-75.191595,,,1, +18291,Mt Pleasant Av & Bryan St,40.057493,-75.190373,,,1, +18292,Mt Pleasant Av & Chew Av,40.059514,-75.187824,,,1, +18293,Mt Pleasant Av & Boyer St,40.060877,-75.18627,,,1, +18294,Mt Pleasant Av & Sprague St - FS,40.062498,-75.184514,,,1, +18295,Mt Pleasant Av & Ardleigh St,40.063113,-75.183861,,,1, +18296,Mt Pleasant Av & Anderson St,40.064876,-75.181974,,,1, +18297,Mt Pleasant Av & Crittenden St,40.066194,-75.180539,,,1, +18298,Mt Pleasant Av & Stenton Av,40.067361,-75.17934,,,1, +18299,Stenton Av & Sydney St ,40.068408,-75.180744,,,1, +18300,Mt Airy Av & Mansfield Av,40.070112,-75.180466,,,1, +18301,Mt Airy Av & Rodney St,40.071164,-75.179469,,,1, +18302,Easton Rd & Lowber Av,40.0721,-75.178945,,,1, +18304,Main St & Barbadoes St,40.11562,-75.347088,,,1, +18305,Easton Rd & Woolston Av,40.073972,-75.178016,,,1, +18306,Easton Rd & Thouron St,40.075808,-75.17685,,,1, +18307,Main St & Markley St,40.116522,-75.34872,,,1, +18308,Marshall St & Astor St,40.119646,-75.348006,,,1, +18309,Wadsworth Av & Williams Av,40.077252,-75.175579,,,1, +18310,Wadsworth Av & Michner Av,40.078828,-75.174071,,,1, +18311,Wadsworth Av & Pickering Av,40.080343,-75.172587,,,1, +18312,Wadsworth Av & Cheltenham Av,40.081492,-75.171423,,,1, +18315,Jefferson Av & Eisenhower - FS,40.124839,-75.412112,,,1, +18316,Cheltenham Av & Vernon Rd ,40.076941,-75.163479,,,1, +18318,Jefferson Av & Monroe Blvd,40.120163,-75.417013,,,1, +18319,Cheltenham Av & Greenwood Av ,40.076117,-75.16205,,,1, +18321,Hunting Park Av & Fox St,40.008065,-75.172125,,,1, +18322,Cheltenham Av & Limekiln Pk ,40.075293,-75.160527,,,1, +18323,Trooper Rd & Audubon Rd - FS,40.114799,-75.417855,,,1, +18326,Blvd of Generals & Trooper Rd - MBFS,40.126766,-75.403943,,,1, +18327,Blvd of Generals & Gen Washington,40.124605,-75.400807,,,1, +18331,Hunting Pk Av & Westmoreland St - FS,40.007053,-75.174883,,,1, +18332,Egypt Rd & Willowbrook Dr - FS,40.131227,-75.396779,,,1, +18333,Egypt Rd & Port Indian Rd,40.131511,-75.390647,,,1, +18334,Egypt Rd & School Ln - FS,40.132142,-75.384372,,,1, +18335,Egypt Rd & Varnum Rd,40.132258,-75.382336,,,1,0 +18337,Schuylkill Av & Main St - FS,40.131041,-75.374618,,,1, +18338,Schuylkill Av & Marshall St,40.133226,-75.372509,,,1, +18339,Marshall St & Whitehall Rd,40.13169,-75.369728,,,1, +18340,Marshall St & Prospect Av,40.13018,-75.367007,,,1, +18341,Marshall St & Jefferson Village Dr - FS,40.128384,-75.363729,,,1, +18342,Marshall St & Montgomery Av,40.127339,-75.361812,,,1, +18343,Marshall St & Forrest Av,40.126213,-75.359801,,,1, +18344,Marshall St & Selma St,40.125088,-75.357873,,,1, +18348,Marshall St & Haws Av,40.121621,-75.351827,,,1, +18349,Marshall St & George St,40.120567,-75.349958,,,1, +18350,Marshall St & Astor St,40.119664,-75.348409,,,1, +18351,Marshall St & Markley St,40.118931,-75.347119,,,1, +18352,Marshall St & Barbadoes St,40.118377,-75.345652,,,1, +18353,Marshall St & Cherry St,40.117787,-75.344067,,,1, +18358,Marshall St & George St,40.120566,-75.349603,,,1, +18359,Marshall St & Haws Av,40.121603,-75.351437,,,1, +18364,Marshall St & Forrest Av,40.126249,-75.359505,,,1, +18365,Marshall St & Montgomery Av,40.127357,-75.361493,,,1, +18366,Marshall St & Jefferson Village Dr,40.128402,-75.363362,,,1, +18367,Marshall St & Prospect Av,40.130171,-75.366604,,,1, +18368,Marshall St & Whitehall Rd,40.1316,-75.369195,,,1, +18370,Marshall St & Liberty Av,40.134539,-75.374225,,,1, +18373,Egypt Rd & Varnum Rd,40.132436,-75.382134,,,1,0 +18374,Egypt Rd & School Ln - FS,40.132276,-75.384834,,,1, +18375,Egypt Rd & Port Indian Rd,40.131707,-75.390351,,,1, +18376,Egypt Rd & Willowbrook Dr,40.131334,-75.396791,,,1, +18377,Trooper Rd & Forge Av - FS,40.125392,-75.407176,,,1, +18378,Jefferson Av & Eisenhower Rd - MBFS,40.122983,-75.414054,,,1, +18379,Monroe Blvd & Adams - MBNS,40.120886,-75.418682,,,1, +18380,Domino Ln & Ridge Av - FS,40.045276,-75.232296,,,1, +18381,Domino Ln & Fowler St - MBNS,40.044458,-75.234249,,,1, +18382,Domino Ln & Fowler St,40.043497,-75.236439,,,1, +18383,Domino Ln & Fowler St - MBFS,40.040591,-75.238587,,,1, +18385,Umbria St & Domino St - MBFS,40.037959,-75.239315,,,1, +18386,Umbria St & Paoli Av ,40.036277,-75.236707,,,1, +18387,Umbria St & Parker Av - FS,40.035347,-75.235373,,,1, +18388,Umbria St & Lemonte St ,40.033872,-75.234053,,,1, +18389,Umbria St & Fountain St ,40.032397,-75.232532,,,1, +18390,Umbria St & Hermitage St ,40.030957,-75.230515,,,1, +18391,Umbria St & Leverington Av ,40.02967,-75.229348,,,1, +18393,Main St & Green Ln - FS,40.026784,-75.227051,,,1, +18394,Ridge Av & School House Ln - MBNS,40.014026,-75.203815,,,1, +18395,Ridge Av & School House Ln,40.013309,-75.202446,,,1, +18396,Ridge Av & Merrick Rd,40.010293,-75.197716,,,1, +18397,Ridge Av & Calumet St,40.009674,-75.196099,,,1, +18400,Ridge Av & Ferry Rd,40.008006,-75.192087,,,1, +18402,Ridge Av & Indiana Av ,40.002883,-75.187412,,,1, +18403,Ridge Av & Clearfield St,40.004972,-75.187547,,,1, +18405,Ridge Av & Hunting Park Av,40.000517,-75.187018,,,1, +18406,Ridge Av & Huntingdon St ,39.996645,-75.187693,,,1, +18407,Ridge Av & Cumberland St ,39.994985,-75.18738,,,1, +18408,Ridge Av & 33rd St ,39.992796,-75.186288,,,1, +18409,Ridge Av & 32nd St ,39.990616,-75.18502,,,1, +18410,Ridge Av & Susquehanna Av ,39.989999,-75.184549,,,1, +18411,Ridge Av & 31st St ,39.989176,-75.183713,,,1, +18412,Ridge Av & Diamond St ,39.988121,-75.182594,,,1, +18413,Ridge Av & 29th St ,39.986797,-75.180921,,,1, +18414,Ridge Av & Sedgley Av,39.98634,-75.180367,,,1, +18415,Ridge Av & Glenwood Av ,39.985284,-75.17893,,,1, +18416,Ridge Av & 27th St ,39.98473,-75.178164,,,1, +18417,Ridge Av & 26th St ,39.983709,-75.176809,,,1, +18418,Ridge Av & 25th St ,39.982707,-75.175465,,,1, +18419,Ridge Av & 24th St ,39.981624,-75.174063,,,1, +18420,Ridge Av & Cecil B Moore Av ,39.980622,-75.172696,,,1, +18421,Ridge Av & 22nd St ,39.979584,-75.171212,,,1, +18426,Ridge Av & 19th St,39.973444,-75.167359,,,1, +18428,Ridge Av & Poplar St ,39.970959,-75.165431,,,1, +18429,Ridge Av & Wylie St ,39.970467,-75.164854,,,1, +18430,Ridge Av & Francis St ,39.969689,-75.163971,,,1, +18431,Ridge Av & 16th St ,39.969188,-75.163406,,,1, +18432,Ridge Av & 15th St ,39.967989,-75.162064,,,1, +18433,Ridge Av & Broad St ,39.966754,-75.160663,,,1, +18434,Ridge Av & Wallace St,39.965092,-75.159618,,,1, +18435,Ridge Av & 13th St ,39.963832,-75.158973,,,1, +18436,Ridge Av & 12th St ,39.962044,-75.157775,,,1, +18437,Spring Garden St & 11th St,39.961613,-75.15623,,,1, +18438,Spring Garden St & 9th St,39.961463,-75.153018,,,1, +18439,Spring Garden St & 8th St - FS,39.961397,-75.151554,,,1, +18441,8th St & Callowhill St ,39.9584,-75.152132,,,1, +18442,8th St & Race St ,39.955099,-75.152818,,,1, +18447,Market St & 21st St - FS,39.953727,-75.174883,,,7, +18448,Market St & 20th St,39.953536,-75.173313,,,7, +18451,Market St & 16th St,39.952738,-75.167045,,,7, +18457,Market St & 8th St - MBNS,39.951166,-75.154298,,,1, +18461,Stenton Av & Wadsworth Av - FS,40.069725,-75.183318,,,1, +18462,Stenton Av & Durham St ,40.067943,-75.180225,,,1, +18463,Stenton Av & Mt Pleasant Av ,40.067486,-75.179434,,,1, +18464,Stenton Av & Sedgwick St ,40.066743,-75.178159,,,1, +18465,Stenton Av & Gorgas Ln ,40.065892,-75.176672,,,1, +18466,Stenton Av & Dorset St - FS,40.064324,-75.173934,,,1, +18468,Stenton Av & Cardeza St ,40.061789,-75.169484,,,1, +18469,Stenton Av & Barringer St ,40.060912,-75.16795,,,1, +18470,Stenton Av & Tulpehocken St ,40.058224,-75.163288,,,1, +18471,Stenton Av & Beverly Rd ,40.057642,-75.162261,,,1, +18472,Stenton Av & Walnut Ln,40.056809,-75.160822,,,1,0 +18473,Stenton Av & Haines St ,40.055761,-75.159004,,,1, +18474,Stenton Av & Rittenhouse St ,40.055116,-75.15786,,,1, +18475,Wister St & 65th Av,40.053304,-75.157772,,,1, +18476,Wister St & Medary Av ,40.050662,-75.157959,,,1, +18477,Wister St & Godfrey Av ,40.049038,-75.15806,,,1, +18478,Wister St & Spencer St - FS,40.047414,-75.158173,,,1, +18479,Wister St & Church Ln ,40.045147,-75.158299,,,1, +18480,Nedro Av & Wister St - FS,40.043709,-75.158057,,,1, +18481,Nedro Av & 21st St ,40.04366,-75.155952,,,1, +18482,Nedro Av & Kemble Av ,40.043594,-75.154321,,,1, +18483,Nedro Av & 19th St ,40.043563,-75.152169,,,1, +18484,Nedro Av & Ogontz Av ,40.043629,-75.149957,,,1, +18485,Nedro Av & 17th St ,40.043475,-75.148776,,,1, +18486,Nedro Av & 16th St ,40.043266,-75.147192,,,1, +18487,Nedro Av & 15th St ,40.043094,-75.145927,,,1, +18488,Nedro Av & Old York Rd,40.042948,-75.144568,,,1, +18491,7th St & Shunk St ,39.916612,-75.159482,,,1, +18492,7th St & Porter St ,39.917861,-75.159218,,,1, +18493,7th St & Ritner St ,39.91911,-75.158941,,,1, +18494,7th St & Wolf St ,39.920359,-75.158665,,,1, +18495,7th St & Jackson St ,39.921599,-75.158413,,,1, +18496,7th St & McKean St ,39.924025,-75.15786,,,1, +18497,7th St & Mifflin St ,39.925256,-75.157608,,,1, +18498,7th St & Moore St ,39.926469,-75.15732,,,1, +18499,7th St & Morris St ,39.927691,-75.157056,,,1, +18500,7th St & Tasker St ,39.928904,-75.156779,,,1, +18501,7th St & Dickinson St ,39.930109,-75.156503,,,1, +18502,7th St & Reed St ,39.93134,-75.156227,,,1, +18503,7th St & Warton St ,39.932571,-75.155963,,,1, +18504,7th St & Federal St ,39.933784,-75.155698,,,1, +18505,7th St & Carpenter St ,39.93671,-75.155061,,,1, +18506,7th St & Christian St ,39.938075,-75.154737,,,1, +18508,7th St & Fitzwater St ,39.940233,-75.154269,,,1, +18509,7th St & Bainbridge St ,39.941268,-75.154029,,,1, +18510,7th St & South St ,39.942107,-75.15386,,,1, +18511,7th St & Lombard St ,39.943133,-75.153644,,,1, +18512,7th St & Pine St ,39.944042,-75.153428,,,1, +18513,7th St & Spruce St ,39.945452,-75.153115,,,1, +18514,Washington Sq & Locust St,39.946738,-75.153382,,,1, +18515,7th St & Walnut St,39.947745,-75.152811,,,1, +18516,7th St & Chestnut St ,39.94927,-75.152321,,,1, +18517,7th St & Arch St ,39.952883,-75.151492,,,1, +18518,7th St & Race St - FS,39.955252,-75.151199,,,1, +18519,7th St & Vine St ,39.956452,-75.151278,,,1, +18520,7th St & Willow St ,39.958601,-75.150289,,,1, +18521,7th St & Green St ,39.96225,-75.149602,,,1, +18522,7th St & Fairmount Av ,39.963873,-75.1493,,,1, +18523,7th St & Brown St - MBFS,39.964872,-75.149107,,,1, +18524,7th St & Poplar St - MBFS,39.969021,-75.148323,,,1, +18525,7th St & Thompson St ,39.97167,-75.14784,,,1, +18526,7th St & Master St ,39.97291,-75.147611,,,1, +18527,7th St & Jefferson St ,39.974293,-75.147334,,,1, +18528,7th St & Oxford St ,39.975756,-75.14708,,,1, +18529,7th St & Cecil B Moore Av - FS,39.977407,-75.146766,,,1, +18530,7th St & Montgomery Av ,39.978709,-75.146513,,,1, +18531,7th St & Berks St ,39.980226,-75.146259,,,1, +18532,7th St & Norris St ,39.9817,-75.145957,,,1, +18533,7th St & Diamond St ,39.98319,-75.145656,,,1, +18534,7th St & Dauphin St ,39.986366,-75.145088,,,1, +18537,5th St & York St ,39.987426,-75.141138,,,1, +18539,5th St & Huntingdon St ,39.990414,-75.140488,,,1, +18540,5th St & Lehigh Av ,39.992038,-75.140139,,,1, +18541,5th St & Somerset St ,39.993548,-75.139802,,,1, +18542,5th St & Cambria St ,39.995073,-75.13944,,,1, +18543,5th St & Indiana St ,39.996554,-75.13914,,,1, +18544,5th St & Clearfield St ,39.998044,-75.138803,,,1, +18545,5th St & Westmoreland St ,40.001217,-75.138129,,,1, +18546,5th St & Ontario St ,40.002691,-75.137792,,,1, +18547,5th St & Sedgley Av ,40.004556,-75.13737,,,1, +18548,Willow Grove Av & Germantown Av ,40.070883,-75.200737,,,1, +18549,5th St & Venango St ,40.005704,-75.137129,,,1, +18550,5th St & Butler St,40.008888,-75.136443,,,1, +18552,5th St & Luzerne St ,40.011886,-75.135792,,,1, +18553,5th St & Lycoming St ,40.013411,-75.135455,,,1, +18555,5th St & Hunting Park Av,40.014945,-75.135118,,,1, +18556,5th St & Bristol St ,40.016533,-75.134769,,,1, +18557,5th St & Cayuga St,40.018032,-75.134443,,,1, +18558,5th St & Wingohocking St ,40.019522,-75.134118,,,1, +18559,5th St & Annsbury St ,40.020253,-75.133973,,,1, +18562,5th St & Roosevelt Blvd - FS,40.024357,-75.133081,,,1, +18563,5th St & Rockland St ,40.025695,-75.132769,,,1, +18564,5th St & Ruscomb St ,40.027176,-75.132443,,,1, +18565,5th St & Lindley Av ,40.028701,-75.13213,,,1, +18566,5th St & Duncannon Av ,40.030235,-75.131792,,,1, +18567,5th St & Fisher Av ,40.031755,-75.131455,,,1, +18568,5th St & Somerville Av ,40.033295,-75.131129,,,1, +18569,5th St & Tabor Rd ,40.034651,-75.130816,,,1, +18570,5th St & Olney Av ,40.036346,-75.130454,,,1, +18571,5th St & Chew Av ,40.037889,-75.130117,,,1, +18572,5th St & Nedro Av ,40.040958,-75.12943,,,1, +18573,5th St & Champlost Av ,40.042483,-75.129104,,,1, +18574,5th St & Spencer St ,40.043991,-75.128779,,,1, +18577,Oregon Av & 7th St ,39.915256,-75.159983,,,1, +18578,Oregon Av & 6th St ,39.915066,-75.158355,,,1, +18582,Germantown Av & Johnson St ,40.045928,-75.182312,,,1, +18583,Jacksonville Rd & Walmart - onsite,40.194703,-75.081732,,,1, +18584,Potter St & Jacksonville Rd - FS,40.18749,-75.091174,,,1, +18585,Potter St & Downey St ,40.186433,-75.089722,,,1, +18586,Lyceum Av & Manayunk Av,40.03001,-75.219109,,,1, +18589,Bristol St & Old York Rd,40.018178,-75.147291,,,1, +18590,Old York Rd & Hunting Park Av,40.016714,-75.147261,,,1, +18591,Old York Rd & Lycoming St ,40.015027,-75.147303,,,1, +18592,Luzerne St & 10th St,40.012867,-75.143447,,,1,0 +18593,Lycoming St & Old York Rd,40.015,-75.147055,,,1, +18594,Old York Rd & Hunting Park Av,40.016508,-75.147097,,,1, +18595,Old York Rd & Township Line Rd- MBN,40.086357,-75.127808,,,1, +18596,American St & Lehigh Av,39.991493,-75.1361,,,1, +18597,Walnut St Station - FS,39.958851,-75.2667,,,1, +18598,Hilltop Rd Station,39.955896,-75.273131,,,1, +18599,Beverly Blvd Station,39.955095,-75.274822,,,1, +18600,Drexel Park Station,39.949915,-75.286772,,,1, +18601,Irvington Rd Station,39.948864,-75.288982,,,1, +18602,School Ln Station,39.948751,-75.299799,,,1, +18603,Anderson Av Station,39.94796,-75.312825,,,1, +18604,Drexelbrook Station,39.94724,-75.316144,,,1, +18605,Drexeline Station,39.944666,-75.321757,,,1, +18606,Springfield Rd Station,39.933963,-75.32986,,,1, +18607,Thomson Av Station - FS,39.921159,-75.345542,,,1, +18608,Beatty Rd Station,39.916249,-75.376967,,,1, +18609,Manchester Av Station,39.917055,-75.382738,,,1, +18610,Edgmont St Station,39.917467,-75.385524,,,1, +18611,Jackson St Station,39.917985,-75.389348,,,1, +18612,Olive St Station,39.9182,-75.390917,,,1, +18613,Veterans Square Station,39.918343,-75.391897,,,1, +18614,Leamy Av Station,39.926338,-75.337378,,,1, +18615,Veterans Square Station,39.918209,-75.392145,,,1, +18616,Olive St Station,39.918066,-75.391165,,,1, +18617,Jackson St Station,39.917843,-75.389584,,,1, +18618,Edgmont St Station,39.917333,-75.385772,,,1, +18619,Manchester Av Station,39.91693,-75.382998,,,1, +18620,Beatty Rd Station,39.916071,-75.376861,,,1, +18621,Thomson Av Station,39.921123,-75.345341,,,1, +18622,Leamy Av Station,39.926267,-75.337154,,,1, +18623,Springfield Rd Station,39.934409,-75.329458,,,1, +18624,Drexeline Station,39.944559,-75.321592,,,1, +18625,Drexelbrook Station,39.947106,-75.315955,,,1, +18626,Anderson Av Station,39.947826,-75.312636,,,1, +18627,School Ln Station,39.94859,-75.29987,,,1, +18628,Irvington Rd Station,39.948668,-75.289148,,,1, +18629,Drexel Park Station,39.949709,-75.286949,,,1, +18630,Beverly Blvd Station,39.955326,-75.274066,,,1, +18631,Hilltop Rd Station - FS,39.955967,-75.272718,,,1, +18632,Walnut St Station,39.958921,-75.266263,,,1, +18636,Clifton Aldan Station,39.925723,-75.290161,,,1, +18639,West Chester Pk & Brief Av,39.962639,-75.263243,,,1, +18640,West Chester Pk & College Av,39.963294,-75.265722,,,1, +18641,West Chester Pk & Golf Rd,39.96368,-75.2678,,,1, +18642,West Chester Pk & Ardsley Rd - FS,39.964202,-75.270621,,,3, +18643,West Chester Pk & Kenmore Rd,39.964426,-75.271873,,,1, +18644,West Chester Pk & Pennock Av ,39.964929,-75.274529,,,1, +18646,West Chester Pk & S Lynn Blvd - MBF,39.966457,-75.282758,,,1, +18647,West Chester Pk & Cloverdale Rd,39.966816,-75.284706,,,1, +18648,West Chester Pk & Linden Av,39.967615,-75.28891,,,1, +18649,West Chester Pk & Brighton Av - FS,39.968073,-75.291295,,,1, +18650,West Chester Pk & Township Line Rd - FS,39.968728,-75.294672,,,1, +18651,West Chester Pk & Saint Laurence Rd,39.965756,-75.279098,,,1, +18652,West Chester Pk & Vernon Rd - MBNS,39.969625,-75.299395,,,1, +18653,West Chester Pk & Gilmore Rd - FS,39.970289,-75.302724,,,1, +18654,West Chester Pk & Westwood Ln,39.970837,-75.305806,,,1, +18655,West Chester Pk & Sycamore Rd,39.971501,-75.309762,,,1, +18656,West Chester Pk & Manoa Rd - FS,39.972165,-75.313529,,,1, +18657,West Chester Pk & Washington Av - FS,39.97291,-75.317934,,,1, +18659,West Chester Pk & Glendale Rd - FS,39.97369,-75.32228,,,1, +18660,West Chester Pk & Stanton Rd,39.974255,-75.325599,,,1, +18661,West Chester Pk & Glen Gary Dr,39.974551,-75.327051,,,1, +18662,West Chester Pk & Robinson Av,39.975848,-75.330617,,,1, +18663,West Chester Pk & Old W Chester Pk,39.976349,-75.331892,,,1, +18664,West Chester Pk & New Ardmore Av - FS,39.979804,-75.346725,,,1, +18665,West Chester Pk & Raymond Rd - FS,39.980297,-75.349678,,,1, +18666,West Chester Pk & Edgewood Rd - FS,39.980907,-75.353788,,,1, +18667,West Chester Pk & Church Rd,39.981373,-75.356812,,,1, +18668,West Chester Pk & Malin Rd - FS,39.9826,-75.36521,,,1, +18669,West Chester Pk & E Garden Rd - FS,39.982887,-75.36736,,,1, +18670,West Chester Pk & James Rd,39.983227,-75.369758,,,1, +18671,West Chester Pk & Ann Rd ,39.983809,-75.373869,,,1, +18672,West Chester Pk & Barren Rd,39.984222,-75.380154,,,1, +18673,West Chester Pk & Radnor Dr,39.984294,-75.382411,,,1, +18674,West Chester Pk & Valley View Ln,39.984393,-75.384821,,,1, +18675,West Chester Pk & School House Ln,39.984743,-75.389121,,,1, +18676,West Chester Pk & Bryn Mawr Av - FS,39.985271,-75.392712,,,1, +18677,West Chester Pk & Clover Ln - FS,39.985959,-75.395453,,,1, +18678,West Chester Pk & Saint Albans - MBNS,39.986834,-75.399257,,,1, +18679,West Chester Pk & Clyde Ln,39.986817,-75.402447,,,1,0 +18681,West Chester Pk & Medical Dr - FS,39.986336,-75.408484,,,1, +18684,West Chester Pk & Boot Rd - MBFS,39.984571,-75.418775,,,1, +18685,West Chester Pk & Campus Blvd - MBNS,39.983348,-75.421303,,,1, +18686,West Chester Pk & Campus Dr,39.98159,-75.424907,,,1, +18688,West Chester Pk & Tuxedo Av - FS,39.97985,-75.42851,,,1, +18689,West Chester & Alice Grim Blvd - FS,39.978029,-75.433023,,,1, +18690,West Chester Pk & Crum Creek Rd - FS,39.97611,-75.437748,,,1, +18691,West Chester Pk & Rock Ridge Rd - FS,39.975235,-75.441162,,,1, +18692,West Chester Pk & Papa Blvd - MBNS,39.974949,-75.447068,,,1, +18693,West Chester Pk & Edgmont Plaza,39.974028,-75.454982,,,1, +18694,West Chester Pk & Sandy Flash Dr,39.973403,-75.458537,,,1, +18697,West Chester Pk & Plumsock - FS,39.971276,-75.467502,,,1, +18698,West Chester Pk & Delchester Rd,39.969551,-75.474836,,,1, +18699,West Chester Pk & Garrett Mill Rd,39.965182,-75.48844,,,1, +18700,West Chester Pk & Dutton Mill Rd,39.965176,-75.500369,,,1, +18701,West Chester Pk & Stoneham Dr,39.965502,-75.506299,,,1, +18702,West Chester Pk & Hunters Run - MBFS,39.965785,-75.510268,,,1, +18704,West Chester Pk & Hilltop Rd,39.966068,-75.514544,,,1, +18705,West Chester Pk & Woodcrest Rd - FS,39.966289,-75.517615,,,1, +18706,West Chester Pk & McDaniel Dr - FS,39.966528,-75.520922,,,1, +18708,West Chester Pk & Manley Rd - FS,39.966762,-75.529769,,,1, +18709,West Chester Pk & Chester Hollow Rd,39.966437,-75.534316,,,1, +18710,West Chester Pk & Waterview Rd,39.966139,-75.538284,,,1, +18711,West Chester Pk & Westtown Way,39.965742,-75.543977,,,1, +18712,West Chester Pk & Mary Fran Dr,39.96694,-75.550865,,,1, +18713,West Chester Pk & Ellis Ln - FS,39.967953,-75.555355,,,1, +18714,West Chester Pk & Ellis Ln - MBFS,39.968531,-75.557895,,,1, +18715,West Chester Pk & Strasburg Rd,39.969694,-75.563201,,,1, +18716,West Chester Pk & Kingsway Rd,39.969618,-75.567784,,,1, +18717,West Chester Pk & Spring Ln - FS,39.969051,-75.571645,,,1, +18718,West Chester Pk & Spring Ln - MBFS,39.968737,-75.5737,,,1, +18719,West Chester Pk & Rose Ln - MBFS,39.967972,-75.578801,,,1, +18720,Paoli Pk & Turner Ln,39.968336,-75.588062,,,1, +18721,Paoli Pk & Prospect Av,39.967476,-75.589962,,,1, +18723,Gay St & Bolmar St,39.965042,-75.595248,,,1, +18725,Gay St & Adams St,39.963341,-75.59907,,,1, +18726,Gay St & Patton St - FS,39.962151,-75.601678,,,1, +18727,Chestnut St & Walnut St,39.962164,-75.604642,,,1, +18728,Chestnut St & High St,39.961529,-75.605975,,,1, +18729,Chestnut St & Church St,39.961019,-75.607072,,,1, +18730,Chestnut St & Darlington St,39.960472,-75.608382,,,1, +18733,High St & Union St,39.95734,-75.60208,,,1, +18734,High St & Price St,39.955878,-75.600482,,,1, +18737,High St & Linden St,39.953178,-75.597252,,,1, +18738,High St & Nields St,39.954248,-75.5984,,,1, +18739,High St & Price St,39.955941,-75.600269,,,1, +18740,High St & Union St,39.957278,-75.601737,,,1, +18741,High St & Miner St,39.958784,-75.603311,,,1, +18742,High St & Gay St,39.960664,-75.605229,,,1, +18743,Market St & Walnut St,39.960114,-75.603362,,,1, +18744,Market St & Matlack St,39.960794,-75.601875,,,1, +18745,Market St & Adams St,39.962244,-75.598595,,,1, +18746,Market St & Bolmar St,39.963873,-75.594891,,,1, +18747,Market St & Westtown Rd - MBNS,39.964876,-75.592625,,,1, +18749,Paoli Pk & Turner Ln,39.968149,-75.587825,,,1, +18750,West Chester Pk & Spring Ln - MBNS,39.968505,-75.573416,,,1, +18751,West Chester Pk & Rolling Rd - MBNS,39.968955,-75.570369,,,1, +18752,West Chester Pk & Kingsway Rd,39.969575,-75.566024,,,1, +18753,West Chester Pk & Glen Av,39.969497,-75.563685,,,1, +18754,West Chester Pk & Glen Av - MBFS,39.968272,-75.558072,,,1, +18755,West Chester Pk & Falcon Ln,39.967481,-75.554563,,,1, +18756,West Chester Pk & Mary Fran Dr,39.966699,-75.551053,,,1, +18757,West Chester Pk & Westtown Way - FS,39.965465,-75.543941,,,1, +18758,West Chester Pk & Waterview Ln,39.965845,-75.538449,,,1, +18759,West Chester Pk & Chester Hollow FS,39.966169,-75.534233,,,1, +18760,West Chester Pk & Manley Rd,39.966494,-75.529757,,,1, +18762,West Chester Pk & S Chester Rd - FS,39.966172,-75.519894,,,1, +18763,West Chester Pk & Woodcrest Rd,39.966022,-75.517579,,,1, +18764,West Chester Pk & Hilltop Rd,39.965818,-75.514839,,,1, +18765,West Chester Pk & Green Ln,39.965703,-75.51322,,,1, +18766,West Chester Pk & Hunters Run - MBNS,39.965535,-75.510799,,,1, +18767,West Chester Pk & Stoneham Dr,39.965261,-75.506865,,,1, +18768,West Chester Pk & Dutton Mill Rd,39.964872,-75.499802,,,1, +18769,West Chester Pk & Street Rd,39.964797,-75.489798,,,1, +18770,West Chester Pk & Delchester Rd,39.969141,-75.475167,,,1, +18772,West Chester Pk & Plumsock Rd - FS,39.971143,-75.467041,,,1, +18773,West Chester Pk & Miller Rd,39.972358,-75.462778,,,1, +18774,West Chester Pk & Sandy Flash Dr,39.973073,-75.458868,,,1, +18775,West Chester Pk & Miller Rd - MBNS,39.973921,-75.454143,,,1, +18776,West Chester Pk & Providence - MBFS,39.974672,-75.44728,,,1, +18777,West Chester Pk & Rock Ridge Rd,39.974985,-75.440925,,,1, +18778,West Chester Pk & Crum Creek Rd,39.975914,-75.437464,,,1, +18779,West Chester Pk & Shimer Ln - MBFS,39.977244,-75.434192,,,1, +18780,West Chester Pk & Tuxedo Av,39.979537,-75.428498,,,1, +18782,West Chester Pk & Campus Blvd - FS,39.981313,-75.424789,,,1, +18783,West Chester Pk & Campus Blvd - MBFS,39.983125,-75.421067,,,1, +18784,West Chester Pk & Boot Rd - MBNS,39.98424,-75.418763,,,1, +18785,West Chester Pk & Boot Rd - FS,39.985561,-75.414687,,,1, +18787,West Chester Pk & Ellis Av - FS,39.985935,-75.410363,,,1, +18788,West Chester Pk & School Ln - FS,39.986069,-75.408626,,,1, +18789,West Chester Pk & Bishop Hollow Rd,39.986523,-75.40273,,,1, +18790,WestChester Pk & Saint Albans Av - FS,39.986299,-75.398194,,,1, +18791,West Chester Pk & Newtown Square,39.985727,-75.395914,,,1, +18792,West Chester Pk & Bryn Mawr Av,39.98503,-75.393078,,,1, +18793,West Chester Pk & School House - FS,39.984511,-75.389794,,,1, +18794,West Chester Pk & Valley View - FS,39.984054,-75.384726,,,1, +18795,West Chester Pk & Radnor Dr - FS,39.983973,-75.382411,,,1, +18796,West Chester Pk & Barren Rd - FS,39.983901,-75.380296,,,1, +18798,West Chester Pk & Media Line Rd,39.983838,-75.378548,,,1, +18799,West Chester Pk & Latches Ln,39.983326,-75.372582,,,1,0 +18800,West Chester Pk & Hawthorne Rd,39.982959,-75.370113,,,1, +18801,West Chester Pk & Rittenhouse Rd,39.982601,-75.367632,,,1, +18802,West Chester Pk & Malin Rd,39.982252,-75.365069,,,1, +18803,West Chester Pk & Berkley Rd,39.981069,-75.357001,,,1, +18804,West Chester Pk & Edgewood Rd,39.980594,-75.354001,,,1, +18805,West Chester Pk & Raymond Rd,39.979994,-75.349962,,,1, +18806,West Chester Pk & New Ardmore Av,39.979501,-75.346855,,,1, +18807,West Chester Pk & Old W Chester - FS,39.975822,-75.33142,,,1, +18808,West Chester Pk & Glen Gary Dr,39.974328,-75.327524,,,1, +18809,West Chester Pk & Ivy Rock Ln,39.973853,-75.325091,,,1, +18810,West Chester Pk & Glendale Rd,39.973396,-75.322469,,,1, +18811,West Chester Pk & Washington Av,39.972562,-75.317675,,,1, +18812,West Chester Pk & Pinzon Av - FS,39.9724,-75.316801,,,1, +18813,West Chester Pk & Manoa Rd - FS,39.971799,-75.313306,,,1, +18814,West Chester Pk & Westwood Park - FS,39.971198,-75.309798,,,1, +18815,West Chester Pk & Steel Rd,39.970273,-75.304248,,,1, +18816,West Chester Pk & Gilmore Rd - FS,39.969905,-75.302205,,,1, +18817,West Chester Pk & Darby Rd - MBNS,39.969098,-75.298262,,,1, +18818,West Chester Pk & Township Line - FS,39.968344,-75.294389,,,1, +18819,West Chester Pk & Brighton Av - FS,39.967706,-75.290953,,,1, +18820,West Chester Pk & Linden Av - FS,39.967302,-75.288851,,,1, +18821,West Chester Pk & Cloverdale Av,39.966575,-75.284967,,,1, +18822,West Chester Pk & S Lynn Blvd,39.966126,-75.282594,,,1, +18823,West Chester Pk & Park Av,39.965704,-75.280398,,,1, +18824,West Chester Pk & Cedar Ln - FS,39.965354,-75.278509,,,1, +18825,West Chester Pk & Carol Blvd - FS,39.964958,-75.276312,,,1, +18826,West Chester Pk & Pennock Av,39.964635,-75.274471,,,1, +18827,West Chester Pk & Kenmore Rd,39.964204,-75.272121,,,1, +18828,West Chester Pk & State Rd - FS,39.963745,-75.269571,,,3, +18829,West Chester Pk & Elm Av,39.963475,-75.268048,,,1, +18830,West Chester Pk & College Av,39.963089,-75.265935,,,1, +18838,Moreland Rd & Easton Rd,40.141411,-75.117381,,,1, +18841,Green Ln & Ridge Av,40.033941,-75.216,,,1, +18842,Bartram Av Station,39.914703,-75.284092,,,1, +18843,Magnolia Av Station,39.919419,-75.28675,,,1, +18844,Providence Rd Station,39.921777,-75.288575,,,1, +18846,Drexel Manor Station,39.942196,-75.296446,,,1, +18853,Earlington Rd & Covington Rd - FS,39.974834,-75.288187,,,1, +18854,Earlington Rd & Saint Albans Rd - FS,39.976344,-75.289129,,,1, +18855,Earlington Rd & Devon Rd - FS,39.977942,-75.29013,,,1, +18856,Earlington Rd & Sagamore Rd,39.982417,-75.29311,,,1, +18857,Earlington Rd & Brookline Blvd,39.983212,-75.293711,,,1, +18858,Brookline Blvd & Wexford Rd,39.982616,-75.295602,,,1, +18859,Brookline Blvd & Pembroke Rd,39.981726,-75.297624,,,1, +18860,Brookline Blvd & Allston Rd,39.980711,-75.299942,,,1, +18861,Brookline Blvd & Darby Rd - MBNS,39.979313,-75.303098,,,1, +18863,Darby Rd & Mill Rd,39.981037,-75.304997,,,1, +18864,Darby Rd & Marthart Av,39.984377,-75.307047,,,1, +18865,Darby Rd & Benedict Av,39.985779,-75.308143,,,1, +18867,Hathaway Ln & Merwood Ln SEPTA Pvt,39.99324,-75.307776,,,1, +18869,SEPTA PRW & Belmont Av Sta - FS,39.99849,-75.300488,,,1, +18871,County Line Rd & Cricket Av,40.003932,-75.298351,,,1, +18872,County Line Rd & Ardmore Av,40.005352,-75.299495,,,1, +18873,Ardmore Av & Spring Av,40.005985,-75.298383,,,1, +18874,Ardmore Av & Athens Av,40.008238,-75.293935,,,1, +18875,Lancaster Av & Greenfield Av,40.010006,-75.29509,,,1, +18877,Woodside Av & Montgomery Av,40.011622,-75.29478,,,1, +18878,Montgomery Av & Anderson Av,40.009528,-75.290127,,,1, +18879,Ardmore Av & School Ln,40.007579,-75.295237,,,1, +18880,Coulter Av & Saint James Pl - FS,40.007847,-75.287034,,,1, +18882,Llanfair Rd & Montgomery Av,40.008745,-75.283995,,,1, +18884,Montgomery Av & Saint Georges Rd,40.00942,-75.289017,,,1, +18887,Lancaster Av & Greenfield Av - FS,40.009783,-75.294972,,,1, +18888,Lancaster Av & Ardmore Av,40.008853,-75.293142,,,1, +18889,Lancaster Av & Cricket Av - FS,40.007431,-75.290332,,,1, +18891,Rittenhouse Pl & Athens Av,40.005826,-75.291943,,,1, +18892,Athens Av & Cricket Av,40.006719,-75.292733,,,1, +18893,Cricket Av & School Ln,40.006417,-75.293986,,,1, +18894,Cricket Av & Spring Av,40.004903,-75.296931,,,1, +18895,Cricket Av & County Line Rd,40.004084,-75.29854,,,1, +18896,SEPTA P R W & Belmont Av Station,39.998561,-75.300677,,,1, +18897,SEPTA PRW & Merwood Station,39.993553,-75.30774,,,1, +18898,Darby Rd & Benedict Av,39.985557,-75.30838,,,1, +18899,Darby Rd & Marthart Av - FS,39.98394,-75.307119,,,1, +18900,Darby Rd & Mill Rd,39.980993,-75.305411,,,1, +18903,Brookline Blvd & Allston Av - FS,39.980523,-75.29993,,,1, +18904,Brookline Blvd & Pembroke Rd,39.981494,-75.297696,,,1, +18905,Brookline Blvd & Wexford Rd,39.982366,-75.295733,,,1, +18906,Brookline Blvd & Earlington Rd,39.983132,-75.293995,,,1, +18907,Earlington Rd & Sagamore Rd - FS,39.982248,-75.29324,,,1, +18908,Earlington Rd & Devon Rd,39.977818,-75.290307,,,1, +18909,Earlington Rd & Saint Albans Rd,39.976273,-75.289342,,,1, +18910,Earlington Rd & Covington Rd,39.974719,-75.288376,,,1, +18912,Earlington Rd & Township Line Rd,39.972227,-75.286774,,,1, +18917,Street Rd & West Chester Pk - FS,39.964422,-75.489916,,,1, +18918,Street Rd & Dutton Mill Rd-FS,39.961474,-75.495641,,,1, +18926,University & Alumni,39.930795,-75.529424,,,1, +18927,University Dr & Alumni Dr,39.930876,-75.529696,,,1, +18933,Street Rd & Smedley Rd,39.957641,-75.503952,,,1, +18935,Street Rd & Dutton Mill Rd,39.961046,-75.496102,,,1, +18936,Street Rd & West Chester Pk,39.964405,-75.489479,,,1, +18973,Parx Race Track,40.120677,-74.952135,,,5, +18975,State Rd & West Chester Pike - FS,39.963702,-75.270658,,,1, +18976,State Rd & Windermere Av - MBFS,39.958807,-75.289494,,,1, +18977,State Rd & Drexeline Shopping Ctr,39.946773,-75.322202,,,1, +18978,Middletown Rd & Pennell Rd - MBNS,39.917528,-75.437694,,,1, +18981,Evergreen Dr & Brinton Lake Shopping Ctr,39.885733,-75.531356,,,1, +18983,Pennell Rd & Glenwood Dr,39.914663,-75.43983,,,1, +18984,Baltimore Pk & New Middletown Rd - ,39.914859,-75.426198,,,1, +18985,State Rd & Rolling Green Apts,39.941572,-75.336025,,,1, +18986,State Rd & Drexeline Shopping Ctr,39.946301,-75.323443,,,1, +18987,Front St & Girard Av - FS,39.968958,-75.136003,,,1, +18988,Front St & Girard Av ,39.968948,-75.136145,,,1, +18991,Market St & 63rd St,39.962653,-75.247275,,,1,0 +18992,Market St & 60th St,39.961849,-75.240899,,,1, +18993,Market St & 52nd St - FS,39.95986,-75.224736,,,1, +18994,Market St & Farragut St - FS,39.958494,-75.213828,,,1, +18995,Market St & 34th St - MBNS,39.955803,-75.191645,,,1, +18996,Market St & 30th St,39.954824,-75.183559,,,1,0 +19003,Front St & Berks St,39.978563,-75.133495,,,1, +19004,Front St & Dauphin St ,39.984611,-75.132112,,,1, +19005,Kensington Av & Huntingdon St ,39.988723,-75.127345,,,1, +19006,Kensington Av & Somerset St,39.991335,-75.122537,,,1, +19007,Kensington Av & Tioga St ,40.000202,-75.106522,,,1, +19008,Kensington Av & Torresdale Av ,40.005781,-75.096417,,,1, +19010,Frankford Av & Orthodox St ,40.014641,-75.085513,,,1, +19011,Frankford Av & Orthodox St ,40.014855,-75.085512,,,1, +19013,Kensington Av & Erie Av ,40.005942,-75.096404,,,1, +19014,Kensington Av & K St ,40.000443,-75.106379,,,1, +19016,Kensington Av & Huntingdon St ,39.988946,-75.127238,,,1, +19017,Kensington Av & Front St ,39.986458,-75.13175,,,1, +19018,Front St & Berks St ,39.978787,-75.133601,,,1, +19025,Market St & 30th St - FS,39.954931,-75.183547,,,1,0 +19026,Market St & 34th St ,39.955901,-75.191314,,,1,0 +19027,Market St & 46th St,39.958753,-75.213839,,,1, +19028,Market St & 52nd St,39.960128,-75.224759,,,1, +19029,Market St & 60th St - FS,39.962161,-75.240934,,,1, +19031,Market St & Millbourne Av,39.962846,-75.251692,,,1, +19032,Market St & Millbourne Av,39.962713,-75.25194,,,1, +19033,Manayunk Av & Seville St,40.022565,-75.212689,,,1, +19034,Manayunk Av & Kingsley St,40.023986,-75.213796,,,1, +19035,Manayunk Av & Pensdale St,40.026175,-75.215468,,,1, +19036,Manayunk Av & Salaignac St,40.020867,-75.211441,,,1, +19037,Manayunk Av & Rector St,40.026801,-75.215951,,,1, +19038,Henry Av & Gates St - MBFS,40.041375,-75.215623,,,1, +19040,Henry Av & Livezey Ln,40.0461,-75.217619,,,1, +19041,Henry Av & Seffert St - FS,40.059766,-75.23494,,,1, +19042,Ridge Av & Manatawna Av,40.068333,-75.240263,,,1, +19043,Ridge Pk & Manor Rd,40.076287,-75.247115,,,1, +19044,Ridge Pk & Joshua Rd,40.088638,-75.265446,,,1, +19045,Ridge Pk & Butler Pk - FS ,40.094323,-75.286767,,,1, +19046,Ridge Pk & Lynda Rd,40.095096,-75.291676,,,1, +19047,Metroplex Shop Ctr opposite shelter,40.103623,-75.294547,,,1, +19048,Germantown Pk & Crescent Ave.,40.085852,-75.251409,,,1, +19049,Bethlehem Pk & Lynnebrook Ln - MBFS,40.08435,-75.210053,,,1, +19050,Bethlehem Pk & Chestnut Hill Av,40.080589,-75.208136,,,1, +19051,Bethlehem Pk & Summit St ,40.077965,-75.208156,,,1, +19052,Bethlehem Pk & Germantown Av - FS,40.077456,-75.208063,,,1, +19053,Bethlehem Pk & Newton St,40.081178,-75.208181,,,1, +19054,Bethlehem Pk & Lynnebrook Ln - FS,40.083912,-75.209616,,,1, +19056,Paper Mill Rd & Biddle Woods Ln,40.087893,-75.210018,,,1, +19057,Montgomery Av & Paper Mill Rd - FS,40.089865,-75.209539,,,1,0 +19059,Germantown Av & Hillcrest Av,40.083522,-75.222122,,,1, +19060,Nedro Av & 15th St,40.043192,-75.145844,,,1, +19061,Nedro Av & 16th St,40.043364,-75.146967,,,1, +19062,Stenton Av & Washington Ln - FS,40.059693,-75.165589,,,1,0 +19064,Old York Rd & Grange Av - FS,40.041617,-75.144337,,,1, +19066,Stenton Av & Vernon Rd,40.065202,-75.17548,,,1, +19067,Stenton Av & Upsal St ,40.062596,-75.170924,,,1, +19068,Wister St & Sprague St ,40.046566,-75.158223,,,1, +19073,Market St & 63rd St,39.962411,-75.247039,,,1, +19074,Chestnut St & 62nd St - FS,39.960837,-75.24474,,,1, +19075,Chestnut St & 61st St,39.960639,-75.243205,,,1, +19076,Chestnut St & 59th St,39.960151,-75.239179,,,1, +19077,Chestnut St & 58th St,39.959907,-75.237196,,,1, +19078,Chestnut St & 57th St,39.95968,-75.235271,,,1, +19079,Chestnut St & 56th St,39.959421,-75.233252,,,1, +19080,Chestnut St & 55th St,39.959156,-75.231187,,,1, +19081,Chestnut St & 54th St,39.958885,-75.229026,,,1, +19084,Grant Av & Frankford Av - FS,40.060166,-74.990254,,,1, +19085,Swedesford Rd & Valley Fair Shopping Ctr,40.071109,-75.439012,,,6, +19086,Swedesford Rd & Valley Park Shopping Ctr,40.071118,-75.442714,,,6, +19087,Swedesford Rd & Contention Ln,40.069636,-75.446771,,,6, +19088,Swedesford Rd & Residence Inn,40.067716,-75.451324,,,6, +19089,Swedesford Rd & Chesterbrook Blvd,40.063081,-75.462381,,,6, +19093,Swedesford Rd & Residence Inn,40.067528,-75.451336,,,6, +19094,Swedesford Rd & Contention Ln,40.069305,-75.447126,,,6, +19095,Swedesford Rd & Valley Park Shopping Ctr,40.070939,-75.442738,,,6, +19096,Swedesford Rd & Valley Square Shopping Ctr,40.071055,-75.439627,,,6, +19097,Henderson Rd & South Gulph Rd - FS,40.076736,-75.353414,,,6, +19099,Duportail Rd & Liberty Ridge Dr,40.068231,-75.463507,,,6, +19101,Mall Blvd & Court Blvd,40.08757,-75.388033,,,3, +19102,Long Ln & Chestnut St,39.959613,-75.262978,,,1, +19103,Long Ln & Walnut St,39.957115,-75.263787,,,1, +19104,Long Ln & Pine St,39.953724,-75.263831,,,1, +19106,Marshall Rd & Wycombe Av,39.951258,-75.268383,,,1, +19107,Marshall Rd & Braddock Av,39.951217,-75.271288,,,1, +19108,Marshall Rd & Clearbrook Av,39.949535,-75.275165,,,1, +19110,Marshall Rd & Lincoln Av,39.948538,-75.277469,,,1, +19111,Marshall Rd & Owen Av,39.947523,-75.279821,,,1, +19112,Marshall Rd & Windemere Av - MBFS,39.946571,-75.282032,,,1, +19113,Marshall Rd & Lakeview Av,39.945921,-75.283556,,,1, +19114,Marshall Rd & Mansfield Av - FS,39.945254,-75.285092,,,1, +19115,Marshall Rd & Shadeland Av,39.943251,-75.289678,,,1, +19116,Marshall Rd & Sloan St,39.942405,-75.291486,,,1, +19117,Burmont Rd & Plumstead Av,39.939774,-75.292837,,,1, +19118,Burmont Rd & Berkley Av,39.938273,-75.291695,,,1, +19119,Burmont Rd & Mary St,39.937183,-75.290764,,,1, +19120,Chestnut St & 53rd St,39.958668,-75.227243,,,1, +19121,Chestnut St & 51st St,39.95818,-75.223336,,,1, +19122,Chestnut St & 50th St,39.957936,-75.22134,,,1, +19123,Chestnut St & 47th St,39.957212,-75.215426,,,1, +19124,Chestnut St & 46th St,39.956958,-75.213419,,,1, +19127,Garrett Rd & Burmont Rd - FS,39.94417,-75.297705,,,1, +19128,Garrett Rd & Morgan Av,39.943431,-75.299289,,,1, +19129,Garrett Rd & Childs Av,39.941988,-75.301984,,,1, +19130,Westpark Ln & Bishop Av - FS,39.934926,-75.308773,,,1, +19131,Westpark Ln & Grammercy Dr - FS,39.934059,-75.307665,,,1, +19132,Westpark Ln & Crestwood Dr,39.932703,-75.307384,,,1, +19134,Bishop Av & Brittany Dr,39.929538,-75.310777,,,1, +19135,Bishop Av & Delmar Dr,39.927066,-75.310958,,,1, +19136,Baltimore Pk & Bishop Av - FS,39.924762,-75.31036,,,1, +19137,Baltimore Pk & Upper DarbyPlaza - FS,39.925679,-75.307632,,,1, +19138,Oak Av & Broadway Av,39.92503,-75.30101,,,1, +19139,Oak Av & Bunting Ln,39.923404,-75.299916,,,1, +19140,Oak Av & Providence Rd - FS,39.919413,-75.297952,,,1, +19141,Oak Av & Green Ln,39.91701,-75.29602,,,1, +19142,Oak Av & Magnolia Av,39.916071,-75.294334,,,1, +19143,Rively Av & Oak Ln - FS,39.914874,-75.292708,,,1, +19144,Rively Av & Madison Av,39.913885,-75.294881,,,1, +19145,Beech Av & Madison Av - FS,39.914431,-75.295813,,,1, +19146,Beech Av & Maple Av,39.913808,-75.297218,,,1, +19147,Beech Av & Ashland Av,39.912187,-75.300703,,,1, +19148,Ashland Av & Glenhaven Rd,39.910704,-75.29923,,,1, +19149,Chestnut St & 45th St,39.956714,-75.211471,,,1, +19150,Ashland Av & Stratford Rd,39.909587,-75.297816,,,1, +19151,Ashland Av & Garfield Av,39.907943,-75.295778,,,1, +19155,South Av & Academy Av ,39.903283,-75.303952,,,1, +19159,South Av & Wakefield Dr,39.904239,-75.304671,,,1, +19160,South & Presidential Apartments,39.907133,-75.306849,,,1, +19161,South Av & Armstrong Av - FS,39.90808,-75.307567,,,1, +19162,South Av & YMCA,39.910204,-75.308307,,,1, +19163,South Av & Copper Beach Ln,39.911713,-75.308765,,,1, +19164,Franklin Av & South Av - MBFS,39.913196,-75.310356,,,1, +19165,Franklin Av & Dale Rd - FS,39.912422,-75.312564,,,1, +19166,Franklin Av & Quaint St,39.911585,-75.314926,,,1, +19168,Franklin Av & Secane Rd - MBFS,39.909751,-75.319897,,,1, +19169,Franklin Av & Amosland Av,39.908415,-75.323216,,,1, +19170,Franklin Av & Kedron Av,39.906837,-75.325555,,,1, +19171,Woodland Av & School St,39.909928,-75.329339,,,1, +19173,Woodland Av & Greenbriar Ln,39.915313,-75.332731,,,1, +19174,Baltimore Pk & Thomson Av - FS,39.91562,-75.337912,,,1, +19177,Baltimore Pk & Chester Rd - FS,39.914125,-75.344417,,,1, +19178,Baltimore Pk & Old Sproul Shopping Ctr - FS,39.913877,-75.346471,,,1, +19179,Sproul Rd & Thomson Av - FS,39.922722,-75.348172,,,1, +19180,Sproul Rd & Gleaves Rd - MBFS,39.927587,-75.350103,,,1, +19181,Sproul Rd & Kennerly Rd,39.929578,-75.351033,,,1, +19182,Sproul Rd & Woodland Av,39.933666,-75.352221,,,1, +19183,Sproul Rd & State Rd - MBNS,39.935897,-75.351498,,,1, +19184,Sproul Rd & Old Marple Rd - FS,39.942063,-75.349354,,,1, +19187,Sproul Rd & Cardinal Krol Center,39.953819,-75.352518,,,1, +19188,Reed Rd & Sproul Rd - MBFS,39.958076,-75.352655,,,1, +19190,Parkway Dr & Reed Rd - MBFS,39.960618,-75.349688,,,1, +19191,Parkway Dr & Governor Sproul Apts,39.961466,-75.350915,,,1, +19193,Parkway Dr & Donna Cir,39.963476,-75.352992,,,1, +19194,Long Ln & Bradford Rd,39.95501,-75.264453,,,1, +19196,Parkway Dr & Westbourne Dr - MBFS,39.961163,-75.350833,,,1, +19197,Parkway Dr & Reed Rd - MBNS,39.960359,-75.349546,,,1, +19199,Reed Rd & Sproul Rd - MBNS,39.958308,-75.352501,,,1, +19203,Sproul Rd & Old Marple Rd,39.941653,-75.349591,,,1, +19204,Sproul Rd & State Rd - 2 MBFS,39.936388,-75.35171,,,1, +19205,Sproul Rd & Beatty Rd,39.934006,-75.352516,,,1, +19206,Sproul Rd & Kennerly Rd - FS,39.929453,-75.351222,,,1, +19207,Sproul Rd & Gleaves Rd,39.927302,-75.350186,,,1, +19208,Sproul Rd & Thomson Av,39.922606,-75.348385,,,1, +19210,Baltimore Pk & Chester Rd,39.913902,-75.344795,,,1, +19211,Baltimore Pk & Springfield Square,39.914347,-75.342516,,,1, +19212,Baltimore Pk & Church Rd,39.914845,-75.340297,,,1, +19213,Baltimore Pk & Thomson Av,39.915459,-75.337841,,,1, +19214,Woodland Av & Greenbriar La - FS,39.915143,-75.332896,,,1, +19215,Woodland Av & Eaton Rd,39.913027,-75.331837,,,1, +19216,Woodland Av & School Ln,39.909839,-75.329528,,,1, +19217,Franklin Av & Kedron Av - FS,39.906775,-75.325319,,,1, +19218,Franklin Av & Amosland Rd,39.908058,-75.323476,,,1, +19219,Franklin Av & Amosland Rd - MBFS,39.90927,-75.320642,,,1, +19220,Franklin Av & Quince Ln - FS,39.910748,-75.31678,,,1, +19221,Franklin Av & Quaint St - FS,39.911344,-75.315068,,,1, +19222,Franklin Av & Dale Rd,39.912101,-75.31293,,,1, +19223,Franklin Av & South Av,39.913169,-75.309907,,,1, +19224,South Av & Copper Beach Ln - FS,39.91174,-75.308989,,,1, +19226,South Av & Armstrong Av,39.908187,-75.307909,,,1, +19227,South Av & Presidential Square Apts,39.907026,-75.307014,,,1, +19232,Ashland Av & Academy Av,39.906941,-75.294245,,,1, +19233,Ashland Av & Garfield Av,39.907996,-75.29553,,,1, +19234,Ashland Av & Stratford Rd,39.909542,-75.297462,,,1, +19235,Ashland Av & Glenhaven Rd,39.910775,-75.299018,,,1, +19236,Ashland Av & Beech Av,39.91191,-75.300397,,,1, +19237,Beech Av & Maple Av,39.913228,-75.298034,,,1, +19238,Beech Av & Madison Av,39.91427,-75.295589,,,1, +19239,Madison Av & Rively Av,39.913796,-75.2952,,,1, +19240,Rively Av & Oak Ln,39.914749,-75.292554,,,1, +19241,Oak Av & Magnolia Av - FS,39.916241,-75.294263,,,1, +19242,Oak Ln & Maple Av,39.917305,-75.296055,,,1, +19243,Oak Av & Providence Rd,39.919493,-75.297751,,,1, +19244,Oak Ln & Bunting Ln,39.923297,-75.299621,,,1, +19245,Oak Ln & Broadway Av,39.924994,-75.300715,,,1, +19246,Baltimore Av & Delmar Dr,39.925742,-75.308056,,,1, +19247,Baltimore Av & Bishop Av,39.924977,-75.310667,,,1, +19248,Bishop Av & Delmar Dr,39.926789,-75.31077,,,1, +19250,Bishop Av & Springfield Rd,39.930376,-75.310516,,,1, +19252,Westpark Ln & Crestwood Dr,39.932497,-75.30716,,,1, +19253,Westpark Ln & Grammercy Dr,39.934166,-75.307499,,,1, +19254,Westpark Ln & Bishop Av,39.935337,-75.308713,,,1, +19256,Garrett Rd & Childs Av,39.941711,-75.302208,,,1, +19257,Garrett Rd & Morgan Av - FS,39.943315,-75.299112,,,1, +19258,Garrett Rd & Burmont Rd,39.944152,-75.297351,,,1, +19261,Shadeland Av & Marshall Rd,39.942938,-75.289513,,,1, +19262,Marshall Rd & Eldon Av,39.943927,-75.287752,,,1, +19263,Marshall Rd & Mansfield Av,39.944995,-75.285258,,,1, +19264,Marshall Rd & Ardmore Av,39.945681,-75.283675,,,1, +19265,Marshall Rd & Windemere Av,39.946544,-75.281677,,,1, +19266,Windemere Av & Plumstead Av,39.945168,-75.280405,,,1, +19267,Plumstead Av & Owen Av,39.945764,-75.278467,,,1, +19268,Plumstead Av & Lansdowne Av - FS,39.946779,-75.27667,,,1, +19269,Plumstead Av & Highland Av,39.948025,-75.274306,,,1, +19270,Plumstead Av & Jackson Av,39.948782,-75.272627,,,1, +19271,Plumstead Av & Wabash Av,39.949716,-75.270523,,,1, +19272,Plumstead Av & Wycombe Av,39.95049,-75.268231,,,1, +19274,Long Ln & Pine St,39.953465,-75.263571,,,1, +19275,Long Ln & Locust St,39.954527,-75.264029,,,1, +19276,Long Ln & Walnut St,39.956919,-75.263622,,,1, +19277,Long Ln & Sansom St,39.958301,-75.263135,,,1, +19279,Welsh Rd & Roosevelt Blvd ,40.074175,-75.03461,,,1, +19281,Ridge Av & Cathedral Rd - FS,40.063763,-75.239696,,,1,0 +19284,75th St & Lansdowne Av - FS,39.972667,-75.260408,,,1, +19285,75th St & Brockton Rd - FS,39.973071,-75.262132,,,1, +19286,75th St & Malvern Av,39.974385,-75.264043,,,1, +19287,Woodbine Av & 75th St - FS,39.975619,-75.265835,,,1, +19288,Woodbine Av & 76th St,39.9748,-75.267526,,,1, +19289,Woodbine Av & 77th St,39.973759,-75.269655,,,1, +19290,77th St & Brookhaven Rd,39.974644,-75.270444,,,1, +19291,77th St & Sherwood Rd,39.975734,-75.27134,,,1, +19300,Lancaster Av & Church Rd,39.987892,-75.253319,,,1, +19301,Lancaster Av & Overbrook Av - FS,39.987131,-75.251749,,,1, +19302,Lancaster Av & Sherwood Rd,39.986693,-75.250923,,,1, +19303,Lancaster Av & Woodbine Av,39.985466,-75.248351,,,1, +19304,Lancaster Av & Woodbine Av,39.985421,-75.24789,,,1, +19305,Lancaster Av & Sherwood Rd,39.986656,-75.250451,,,1, +19306,Lancaster Av & Overbrook Rd,39.987238,-75.251619,,,1, +19309,Lancaster Av & Indian Creek Rd,39.992923,-75.264626,,,1, +19311,Lancaster Av & Remington Rd,39.995328,-75.267539,,,1, +19312,Lancaster Av & Stanford Dr - FS,39.998456,-75.27129,,,1, +19313,Wynnewood Rd & Lancaster Av - FS,40.001887,-75.274343,,,1, +19314,Williams Rd & Wynnewood Rd,40.002482,-75.271529,,,1, +19315,Wynnewood Rd & Penn Rd,40.002448,-75.273313,,,1, +19316,Lancaster Av & W Old Wynnewood Rd,40.001802,-75.27751,,,1, +19318,Lancaster Av & Chatham Rd,40.003843,-75.28267,,,1, +19319,Lancaster Av & Argyle Rd,40.00642,-75.287876,,,1, +19320,Lancaster Av & Station Av - FS,40.007833,-75.290816,,,1, +19321,Lancaster Av & Ardmore Av - FS,40.009085,-75.293295,,,1, +19323,Lancaster Av & Wyoming Av,40.011062,-75.297121,,,1, +19324,Lancaster Av & College Ln,40.012072,-75.299152,,,1, +19325,Lancaster Av & Haverford Sta Rd,40.013065,-75.301136,,,1, +19327,Lancaster Av & N Buck Ln,40.015471,-75.305895,,,1, +19328,Lancaster Av & Barrett Av,40.017385,-75.309839,,,1, +19330,Lancaster Av & Lee Av,40.019057,-75.31311,,,1, +19334,Lancaster Av & Warner Av,40.023572,-75.32243,,,1, +19335,Lancaster Av & Roberts Rd - FS,40.024547,-75.324438,,,1, +19336,Lancaster Av & Montrose Av,40.025181,-75.325713,,,1, +19337,Lancaster Av & Airdale Rd - 1,40.027416,-75.329848,,,1, +19340,Lancaster Av & Lowrys Ln,40.0299,-75.333639,,,1, +19341,Lancaster Av & Black Friar Ln,40.031249,-75.335541,,,1, +19342,Lancaster Av & Ithan Av,40.03368,-75.339096,,,1, +19343,Lancaster Av & Villanova Univ Chapl,40.03495,-75.343067,,,1, +19344,Lancaster Av & Spring Mill Rd,40.035944,-75.348717,,,1, +19347,King of Prussia Rd & NHSL Radnor Sta Dr,40.04167,-75.355816,,,1, +19348,King of Prussia Rd & Chilton Bldg,40.042866,-75.356631,,,1, +19350,Radnor Chester Rd & Radnor Hotel Dr,40.040523,-75.364673,,,1, +19352,Lancaster & Saint Davids Square - FS,40.040945,-75.368279,,,1, +19353,Lancaster Av & Cambria Ct,40.042231,-75.371104,,,1, +19354,Lancaster Av & Chamounix Rd,40.042955,-75.373953,,,1, +19355,Lancaster Av & Pembroke Av,40.043555,-75.378079,,,1, +19356,Lancaster Av & Aberdeen Av - FS,40.043789,-75.381496,,,1, +19357,Lancaster Av & Waynewood Av - FS,40.044049,-75.386261,,,1, +19359,Lancaster Av & Strafford Av,40.044258,-75.397872,,,1, +19360,Lancaster Av & Eagle Rd,40.044509,-75.400722,,,1, +19361,Lancaster Av & Sugartown Rd,40.045652,-75.404138,,,1, +19362,Lancaster Av & Devon Shopping Ctr,40.047375,-75.408962,,,1, +19363,Lancaster Av & Berkley Rd,40.047858,-75.411351,,,1, +19364,Lancaster Av & Grove Av,40.048536,-75.415229,,,1, +19366,Lancaster Av & Waterloo Rd,40.045904,-75.423341,,,1, +19368,Lancaster Av & Lakeside Av,40.046913,-75.434622,,,1, +19369,Lancaster Av & Old Lancaster Rd,40.048269,-75.438465,,,1, +19370,Lancaster Av & Bridge Av - FS,40.046252,-75.445394,,,1, +19371,Lancaster Av & Leopard Rd - MBFS,40.044921,-75.447758,,,1, +19372,Lancaster Av & Manchester Ct,40.043778,-75.450513,,,1, +19373,Lancaster Av & Glenn Av,40.042723,-75.460717,,,1, +19376,Lancaster Av & Bear Hill Rd - 1,40.042272,-75.475969,,,1, +19377,Lancaster Av & Darby Rd,40.042011,-75.482543,,,1, +19378,Lancaster Av & Valley Rd - FS,40.041966,-75.484317,,,1, +19379,Lancaster Av & Plank Av,40.041848,-75.487864,,,1, +19380,Lancaster Av & Cedar Hollow Rd,40.041676,-75.492759,,,1, +19382,Lancaster Av & Clover Hill Rd,39.999565,-75.272752,,,1, +19384,Lancaster Av & Banbury Way - MBFS,40.044221,-75.393651,,,1, +19388,Lancaster Av & Cedar Hollow Rd,40.041506,-75.493184,,,1, +19389,Lancaster Av & Plank Av,40.041678,-75.488218,,,1, +19390,Lancaster Av & Valley Rd,40.041805,-75.484222,,,1, +19391,Lancaster Av & Darby Rd,40.041841,-75.482886,,,1, +19392,Lancaster Av & Paoli Shopping Ctr,40.041959,-75.479729,,,1, +19393,Lancaster Av & Leopard Rd,40.042067,-75.476821,,,1, +19396,Lancaster Av & Glenn Av - FS,40.042563,-75.460823,,,1, +19397,Lancaster Av & Manchester Ct - FS,40.043645,-75.450395,,,1, +19400,Lancaster Av & Old Lancaster Rd.,40.048153,-75.439056,,,1, +19403,Lancaster Av & Waterloo Rd,40.045601,-75.423649,,,1, +19405,Lancaster Av & Valley Forge Rd,40.047368,-75.419356,,,1, +19406,Lancaster Av & Berkley Rd,40.047831,-75.412084,,,1, +19407,Lancaster Av & Devon Shopping Ctr,40.047384,-75.409837,,,1, +19408,Lancaster Av & Sugartown Rd - FS,40.045572,-75.404399,,,1, +19409,Lancaster Av & Conestoga Rd,40.044446,-75.401159,,,1, +19411,Lancaster Av & Grove Av - FS,40.048367,-75.415005,,,1, +19412,Lancaster Av & Bloomingdale Av - FS,40.04406,-75.393024,,,1, +19413,Lancaster Av & Louella Av - FS,40.043826,-75.385209,,,1, +19414,Lancaster Av & Aberdeen Av,40.043628,-75.381603,,,1, +19415,Lancaster Av & Pembroke Av,40.043413,-75.378469,,,1, +19416,Lancaster Av & Saint Davids Rd,40.042866,-75.374414,,,1, +19417,Lancaster Av & Cambria Ct,40.04216,-75.371471,,,1, +19418,Lancaster Av & Saint Davids Square,40.040641,-75.36835,,,1, +19419,RadnorChester Rd & Lancaster Av - FS,40.040282,-75.364804,,,1, +19421,King of Prussia Rd & Chilton Bldg,40.042786,-75.356844,,,1, +19422,King of Prussia Rd & NHSL Radnor Sta Dr,40.041732,-75.356053,,,1, +19424,Lancaster Av & Spring Mill Rd - FS,40.035793,-75.3488,,,1, +19425,Lancaster Av & Villanova University,40.034959,-75.344083,,,1, +19426,Lancaster Av & Ithan Av,40.03376,-75.339616,,,1, +19427,Lancaster Av & Black Friar Rd,40.031464,-75.336167,,,1, +19428,Lancaster Av & Lowry's Ln,40.030088,-75.334206,,,1, +19430,Lancaster Av & Radnor House,40.028346,-75.331631,,,1, +19431,Lancaster Av & Airdale Av,40.027318,-75.330013,,,1, +19432,Lancaster Av & Montrose Av - FS,40.025092,-75.325962,,,1, +19433,Lancaster Av & Roberts Rd,40.024431,-75.324615,,,1, +19434,Lancaster Av & Warner Av,40.023573,-75.322855,,,1, +19436,Lancaster Av & Summit Grove Av,40.022312,-75.320268,,,1, +19438,Lancaster & Old Lancaster Rd,40.019013,-75.313642,,,1, +19439,Lancaster Av & Penn St,40.017975,-75.311446,,,1, +19440,Lancaster Av & Old Buck Ln,40.01709,-75.309651,,,1, +19441,Lancaster Av & Buck Ln,40.015516,-75.306391,,,1, +19443,Lancaster Av & Haverford Station Rd,40.013164,-75.301715,,,1, +19444,Lancaster Av & College Ln,40.01193,-75.29927,,,1, +19445,Lancaster Av & Wyoming Av,40.011026,-75.297452,,,1, +19446,Lancaster Av & Argyle Rd - FS,40.006295,-75.28803,,,1,0 +19447,Lancaster Av & Church Rd,40.005257,-75.285964,,,1, +19449,Lancaster Av & Chatham Rd - FS,40.003361,-75.282092,,,1, +19450,Lancaster Av & Old Wynnewood Rd,40.001865,-75.278231,,,1, +19452,Lancaster Av & Clover Hill Rd,39.999619,-75.273225,,,1, +19453,Lancaster Av & Stanford Rd,39.998215,-75.27129,,,1, +19454,Lancaster Av & Remington Rd,39.995444,-75.267964,,,1, +19455,Lancaster Av & 324,39.994014,-75.266254,,,1, +19465,77th St & Overbrook Av,39.976994,-75.272648,,,1, +19469,77th St & Woodbine Av,39.973608,-75.269903,,,1, +19470,Woodbine Av & 76th St,39.974551,-75.267621,,,1, +19472,75th St & Malvern Av,39.97443,-75.264409,,,1, +19473,75th St & Brockton Rd,39.972919,-75.262404,,,1, +19474,75th St & Lansdowne Av,39.972301,-75.260327,,,1, +19477,Fountain St & Ridge Av,40.037898,-75.223153,,,1,0 +19488,Media Line Rd & West Chester Pk - FS,39.98365,-75.378654,,,1, +19489,Media Line Rd & West Chester Pk,39.983722,-75.378241,,,1, +19491,Haverford Av & Lansdowne Av - FS,39.974084,-75.258928,,,1, +19492,Haverford Av & Brockton Rd,39.974702,-75.260463,,,1, +19493,Haverford Av & Ruskin Rd,39.975203,-75.261678,,,1, +19494,Haverford Av & Malvern Av - FS,39.975767,-75.263012,,,1, +19495,Haverford Av & Woodbine Av,39.97634,-75.263979,,,1, +19496,Haverford Av & Brookhaven Rd,39.977261,-75.265501,,,1, +19497,Haverford Av & Sherwood Rd - FS,39.978245,-75.267081,,,1, +19499,Haverford Rd & Greywall Ln,39.981837,-75.270499,,,1, +19500,Haverford Rd & Garden Rd,39.983312,-75.272091,,,1, +19501,Haverford Rd & Manoa Rd,39.984689,-75.27438,,,1, +19503,Haverford Rd & Drayton Ln,39.986119,-75.276055,,,1, +19504,Haverford Rd & Remington Rd,39.988657,-75.278483,,,1, +19505,Haverford Rd & Witley Rd,39.990068,-75.279567,,,1, +19506,Haverford Rd & Powder Mill Ln,39.990667,-75.280676,,,1, +19507,Haverford Rd & Medford Rd,39.991642,-75.282529,,,1, +19508,Argyle Rd & Knox Rd,39.993787,-75.284675,,,1, +19509,Argyle Rd & Grenox Rd,39.996581,-75.285225,,,1, +19511,Argyle Rd & Wynnewood Rd,40.000437,-75.28543,,,1, +19512,Argyle Rd & Hood Rd,40.002303,-75.286254,,,1, +19513,Argyle Rd & Church Rd,40.003687,-75.286983,,,1, +19514,Argyle Rd & Simpson Rd,40.006019,-75.288397,,,1, +19515,Argyle Rd & Linwood Av,40.003795,-75.287231,,,1, +19516,Argyle Rd & Hood Rd,40.00233,-75.286454,,,1, +19517,Argyle Rd & Wynnewood Rd - FS,40.000437,-75.285607,,,1, +19518,Argyle Rd & Athens Av,39.99676,-75.285414,,,1, +19519,Argyle Rd & Knox Rd,39.99393,-75.284888,,,1, +19521,Haverford Rd & Brinton Park Dr,39.991455,-75.282388,,,1, +19522,Haverford Rd & Powder Mill Ln,39.990677,-75.280901,,,1, +19523,Haverford Rd & Witley Rd,39.990068,-75.279768,,,1, +19524,Haverford Rd & Westwood Ln,39.983178,-75.272056,,,1, +19525,Haverford Rd & Drayton Ln,39.987022,-75.277199,,,1, +19527,Haverford Rd & Remington Rd,39.988827,-75.278672,,,1, +19528,Haverford Rd & Greywall Ln,39.98198,-75.270735,,,1, +19529,Overbrook Av & Haverford Av,39.978809,-75.268202,,,1, +19530,Haverford Rd & Sherwood Rd,39.978057,-75.266976,,,1, +19531,Haverford Av & Brookhaven Rd,39.97719,-75.265572,,,1, +19532,Haverford Av & Woodbine Av,39.976367,-75.264192,,,1, +19533,Haverford Av & Malvern Av,39.975741,-75.263153,,,1, +19535,Haverford Av & Brockton Rd - FS,39.974434,-75.260073,,,1, +19536,Lansdowne Av & Haverford Av - FS,39.973414,-75.258788,,,1, +19542,Walnut St & 24th St - MBFS,39.951363,-75.18004,,,1, +19543,UPS Gate 7,39.859014,-75.249649,,,1, +19544,Electronic Dr & UPS,40.162989,-75.14544,,,1,0 +19545,1000 Tinicum Island Rd,39.870136,-75.27083,,,1, +19546,Tinicum Island Rd & Scott Way,39.873338,-75.263061,,,1, +19547,Gov Printz Blvd & Stevens Dr - FS,39.873366,-75.277983,,,1, +19549,Bartram Av & 90th St,39.885101,-75.250079,,,1, +19550,89th St & Bartram Av - FS,39.886027,-75.24885,,,1, +19551,88th St & Bartram Av - MBNS,39.887212,-75.247207,,,1,0 +19554,84th St & Madison Pl,39.896506,-75.250074,,,1, +19555,84th St & Lindbergh Blvd,39.897061,-75.251206,,,1, +19556,Lindbergh Blvd & 83rd St,39.898695,-75.251155,,,1, +19557,Lindbergh Blvd & 82nd St,39.89988,-75.250066,,,1, +19558,Lindbergh Blvd & 81st St,39.901038,-75.248871,,,1, +19559,Lindbergh Blvd & 80th St,39.902134,-75.247169,,,1, +19560,Lindbergh Blvd & 79th St,39.902898,-75.245255,,,1, +19562,78th St & Orpheus Pl,39.905345,-75.245804,,,1, +19563,78th St & Buist Av,39.906168,-75.247348,,,1, +19564,Buist Av & 77th St,39.90738,-75.246271,,,1, +19565,77th St & Elmwood Av,39.908812,-75.248722,,,1, +19566,Elmwood Av & 75th St - FS,39.911146,-75.245824,,,1, +19567,Elmwood Av & 74th St,39.912134,-75.244441,,,1, +19568,Passyunk Av & 73rd St,39.913289,-75.241015,,,1, +19569,Passyunk Av & 72nd St,39.913367,-75.23902,,,1, +19570,72nd St & Dicks Av,39.912714,-75.238149,,,1, +19571,Dicks Av & 71st St,39.913684,-75.23621,,,1, +19572,Dicks Av & 70th St,39.914761,-75.234673,,,1, +19573,Dicks Av & 69th St,39.915759,-75.233313,,,1, +19574,Dicks Av & 68th St,39.916934,-75.231646,,,1, +19575,Dicks Av & 67th St,39.917976,-75.230097,,,1, +19576,Dicks Av & 66th St,39.918911,-75.228784,,,1, +19577,65th St & Dicks Av - FS,39.919971,-75.227589,,,1, +19578,65th St & Buist Av,39.921035,-75.228849,,,1, +19579,65th St & Grays Av,39.923378,-75.231569,,,1, +19580,67th St & Paschall Av,39.922705,-75.235442,,,1, +19581,Paschall Av & 66th St,39.923605,-75.234342,,,1, +19582,Paschall Av & 65th St,39.924406,-75.233207,,,1, +19583,65th St & Greenway Av,39.92665,-75.235503,,,1, +19584,Greenway Av & 66th St,39.925858,-75.236839,,,1, +19585,Greenway Av & 67th St,39.924985,-75.238187,,,1, +19586,Greenway Av & 68th St,39.923917,-75.239677,,,1, +19587,68th St & Kingsessing Av,39.924945,-75.24089,,,1, +19588,68th St & Chester Av,39.926089,-75.242268,,,1, +19589,Chester Av & 69th St,39.924985,-75.243971,,,1, +19590,Church Ln & MacDade Blvd,39.928389,-75.2465,,,1, +19591,Church Ln & Rader Av,39.929443,-75.247218,,,1, +19592,Church Ln & Darnell Av,39.930587,-75.2481,,,1, +19593,Church Ln & Parmley Av,39.932106,-75.249265,,,1, +19594,Church Ln & Guenther Av,39.933383,-75.25023,,,1, +19595,Church Ln & Whitby Av,39.934152,-75.250818,,,1, +19596,Church Ln & Longacre Blvd,39.935483,-75.251819,,,1, +19597,Church Ln & Baily Rd,39.936502,-75.253127,,,1, +19598,Church Ln & Myra Av,39.937826,-75.254882,,,1, +19599,Church Ln & Penn St,39.938826,-75.255683,,,1, +19600,Long Ln & Oak Av - MBNS,39.944709,-75.256377,,,1, +19601,Long Ln & Atlantic Av,39.945665,-75.257567,,,1, +19602,Long Ln & Emerson Av - FS,39.946112,-75.258109,,,1, +19603,Long Ln & Glenwood Av - FS,39.947248,-75.259536,,,1, +19604,Long Ln & Clinton Rd,39.948561,-75.26076,,,1, +19605,Long Ln & Guilford Rd,39.950071,-75.26182,,,1, +19606,Long Ln & Grace Rd,39.951777,-75.263032,,,1, +19607,Grace Rd & Marshall Rd,39.952963,-75.26238,,,1, +19608,Marshall Rd & Hampden Rd ,39.95323,-75.26134,,,1, +19610,69th St & Walnut St - FS,39.95667,-75.257718,,,1, +19611,69th St & Chestnut St ,39.958964,-75.258279,,,1, +19612,69th St & Ludlow St,39.96092,-75.258771,,,1, +19613,69th St & Ludlow St - FS,39.960875,-75.258972,,,1, +19614,69th St Blvd & Chestnut St,39.95875,-75.258445,,,1, +19615,69th St & Walnut St,39.956527,-75.257955,,,1, +19617,Marshall Rd & Hampden Rd,39.953355,-75.261174,,,1, +19618,Grace Rd & Copley Rd - FS,39.952874,-75.262604,,,1, +19619,Grace Rd & Long Ln,39.951956,-75.26315,,,1, +19620,Long Ln & Guilford Rd ,39.950375,-75.26222,,,1, +19621,Long Ln & Clinton Rd - FS,39.948329,-75.260785,,,1, +19622,Long Ln & Glenwood Av,39.947624,-75.260255,,,1, +19623,Long Ln & Emerson Av,39.945952,-75.258157,,,1, +19624,Long Ln & Atlantic Av - FS,39.945344,-75.257379,,,1, +19625,Oak Ln & Pembroke Av,39.943817,-75.256556,,,1, +19626,Church Ln & Penn St - FS,39.938746,-75.255872,,,1, +19627,Church Ln & Myra Av,39.93796,-75.255248,,,1, +19628,Church Ln & Baily Rd,39.936494,-75.253717,,,1, +19629,Church Ln & Longacre Blvd ,39.935483,-75.252031,,,1, +19630,Church Ln & Whitby Av,39.934152,-75.251007,,,1, +19631,Church Ln & Guenther Av - FS,39.933259,-75.250337,,,1, +19632,Church Ln & Parmley Av,39.932115,-75.249478,,,1, +19633,Church Ln & Darnell Av,39.930641,-75.248336,,,1, +19634,Church Ln & Rader Av - FS,39.929301,-75.247312,,,1, +19635,Church Ln & MacDade Blvd,39.928595,-75.246783,,,1, +19636,Chester Av & 69th St,39.924753,-75.244019,,,1, +19637,Chester Av & 68th St,39.925911,-75.242458,,,1, +19638,68th St & Kingsessing Av,39.924936,-75.241138,,,1, +19639,Greenway Av & 67th St,39.924834,-75.238199,,,1, +19640,Greenway Av & 66th St,39.925715,-75.236863,,,1, +19641,Greenway Av & 65th St,39.926579,-75.235597,,,1, +19642,65th St & Paschall Av,39.924576,-75.233242,,,1, +19643,65th St & Grays Av,39.923405,-75.231817,,,1, +19645,65th St & Buist Av,39.921044,-75.229049,,,1, +19646,65th St & Dicks Av,39.919864,-75.227648,,,1, +19647,Dicks Av & 66th St,39.919062,-75.228772,,,1, +19648,Dicks Av & 67th St,39.918127,-75.230084,,,1, +19649,Dicks Av & 68th St,39.917077,-75.231622,,,1, +19650,Dicks Av & 69th St,39.915946,-75.233277,,,1, +19651,Dicks Av & 70th St,39.914957,-75.234649,,,1, +19652,Dicks Av & 71st St,39.913871,-75.236186,,,1, +19653,Dicks Av & 72nd St,39.912696,-75.237889,,,1, +19654,Passyunk Av & 72nd St,39.913465,-75.238843,,,1, +19655,Passyunk Av & 73rd St,39.913592,-75.240743,,,1, +19656,Elmwood Av & 74th St,39.912393,-75.244582,,,1, +19657,Elmwood Av & 75th St,39.911351,-75.24606,,,1, +19658,Elmwood Av & Arcola Pl,39.910318,-75.247396,,,1, +19660,77th St & Elmwood Av - FS,39.908821,-75.248922,,,1, +19661,77th St & Buist Av,39.907434,-75.246389,,,1, +19662,Buist Av & 78th St,39.906231,-75.247454,,,1, +19663,78th St & Centaur Pl,39.905327,-75.245993,,,1, +19664,78th St & Jason Pl,39.904244,-75.243954,,,1, +19665,Lindbergh Blvd & 79th St,39.903095,-75.245467,,,1, +19666,Lindbergh Blvd & 80th St,39.902384,-75.247263,,,1, +19667,Lindbergh Blvd & 81st St,39.901235,-75.24906,,,1, +19668,Lindbergh Blvd & 82nd St,39.900112,-75.250278,,,1, +19669,Lindbergh Blvd & 83rd St,39.898847,-75.251414,,,1, +19670,84th St & Lindbergh Blvd - FS,39.897232,-75.252079,,,1, +19671,84th St & Madison Pl,39.896382,-75.250452,,,1, +19675,Bartram Av & 90th St - MBFS,39.885048,-75.250516,,,1, +19676,Stevens Dr & Governor Printz - FS,39.873884,-75.278147,,,1, +19677,Scott Way & Tinicum Island Rd,39.873525,-75.262683,,,1, +19679,Hog Island Rd & UPS Employment - FS,39.861966,-75.242247,,,1, +19684,Providence Town Center,40.167728,-75.478857,,,1, +19687,North Gulph Rd & 1st Av,40.095671,-75.417515,,,1, +19688,Main St & Church St - FS,40.132809,-75.515865,,,1, +19689,North Gulph Rd & 1st Av - FS,40.095038,-75.417042,,,1, +19690,Main St & Church St,40.132764,-75.515687,,,1, +19691,Valley Forge Rd & Ferry Ln,40.112192,-75.481458,,,1, +19692,Valley Forge Rd & Ferry Ln - FS,40.112049,-75.481589,,,1, +19693,Green Ln & Pechin St,40.031992,-75.219115,,,1, +19694,Green Ln & Mitchell St,40.032917,-75.217635,,,1, +19697,Pennsylvania Av & 24th St,39.965477,-75.177428,,,1, +19698,Pennsylvania Av & 25th St,39.966747,-75.178723,,,1, +19699,Pennsylvania Av & 26th St,39.967874,-75.180065,,,1, +19701,Lehigh Av & Napa St - MBNS,39.997583,-75.183365,,,1, +19702,Henry Av & Roberts Av MBNS,40.009867,-75.18064,,,1, +19703,Henry Av & Indian Queen Ln - MBFS,40.01255,-75.183325,,,1, +19704,Henry Av & Midvale Av ,40.016969,-75.188263,,,1,0 +19707,Henry Av & Roberts Av - MBNS,40.008527,-75.179746,,,1,0 +19708,Henry Av & Phila University Dr,40.022532,-75.194556,,,1, +19709,Henry Av & Phila University Dr,40.022764,-75.194461,,,1, +19711,Winter St & 20th St - MBNS,39.958864,-75.17307,,,1, +19714,69th St Blvd & Patterson Av,39.952018,-75.256572,,,1, +19717,Church Ln & Greenwood Av,39.947527,-75.254906,,,1, +19719,Church Ln & Cleveland Av,39.944993,-75.255644,,,1, +19720,Church Ln & Radbourne Rd,39.94841,-75.254597,,,1, +19721,Church Ln & Walnut Park Dr,39.94957,-75.254535,,,1, +19722,69th St Blvd & Ruskin Ln - FS,39.950677,-75.254733,,,1, +19723,69th St Blvd & Patterson Av,39.952009,-75.256277,,,1, +19724,69th St Blvd & Patterson Av - MBFS,39.952912,-75.257314,,,1, +19729,Chester Pk & Gardner Av,39.899832,-75.289692,,,1, +19732,Oak Ln & Chester Pk,39.90335,-75.28297,,,1, +19734,Primos Av & Elmwood Av,39.899294,-75.279309,,,1, +19735,Primos Av & Warwick Av - FS,39.8969,-75.277508,,,1, +19736,Delmar Dr & Primos Av - FS,39.895275,-75.277063,,,1, +19737,Delmar Dr & Ashland Av,39.894082,-75.27952,,,1, +19738,Delmar Dr & Glencroft Cr,39.893165,-75.281375,,,1, +19739,Delmar Dr & School Ln,39.891713,-75.283407,,,1, +19740,Grant Rd & Delmar Dr - FS,39.890607,-75.284117,,,1, +19741,Grant Rd & Delview Rd,39.889829,-75.283257,,,1, +19742,Grant Rd & Fowler Rd,39.888454,-75.282434,,,1, +19743,Grant Rd & Edwards Dr,39.887632,-75.281858,,,1, +19746,Taylor Dr & Heather Rd,39.885205,-75.28191,,,1, +19747,Taylor Dr & Heather Rd - 1 MBFS,39.884368,-75.283434,,,1, +19748,Taylor Dr & Heather Rd - 2 MBFS,39.883539,-75.28458,,,1, +19750,Taylor Dr & Kent Rd,39.884112,-75.285924,,,1, +19752,Taylor Dr & Carter Rd,39.886093,-75.285637,,,1, +19757,Delmar Dr & School Ln,39.891409,-75.283467,,,1, +19758,Delmar Dr & Delcroft Shopping Ctr,39.892604,-75.28239,,,1, +19759,Delmar Dr & Henderson Blvd,39.892915,-75.281481,,,1, +19760,Delmar Dr & Ashland Av,39.893814,-75.279674,,,1, +19761,Delmar Dr & Primos Av,39.895132,-75.276946,,,1, +19762,Hook Rd & Tribbett Av,39.896851,-75.273839,,,1, +19763,Hook & Greenhill Rd,39.897544,-75.271465,,,1, +19764,Hook Rd & Clifton Av,39.898271,-75.267522,,,1, +19768,Sharon Av & Linden Av,39.901842,-75.268624,,,1, +19769,Elmwood Av & Sharon Av - MBFS,39.904341,-75.268913,,,1, +19770,Elmwood Av & Calcon Hook Rd - MBFS,39.905481,-75.266822,,,1, +19775,Chester Pk & Bartlett Av,39.912969,-75.266852,,,1, +19776,Chester Pk & Laurel Rd,39.913922,-75.265599,,,1, +19777,Chester Pk & Pine St,39.915376,-75.264816,,,1, +19778,Chester Pk & MacDade Blvd,39.917008,-75.264458,,,1,0 +19780,Main St & 12th St,39.922301,-75.264836,,,1, +19782,Main St & 14th St - FS,39.923981,-75.266355,,,1, +19783,Main St & Concord Rd,39.925348,-75.267355,,,1, +19784,Lansdowne Av & Baily Rd,39.928696,-75.268646,,,1, +19785,Lansdowne Av & Providence Rd,39.93008,-75.269139,,,1, +19786,Lansdowne Av & Lincoln Av,39.931045,-75.269526,,,1, +19787,Lansdowne Av & Fairview Av - FS,39.932884,-75.270348,,,1, +19788,Lansdowne Av & Violet Ln,39.934429,-75.270959,,,1, +19789,Lansdowne Av & Nyack Av,39.936206,-75.271722,,,1, +19790,Lansdowne Av & LaCrosse Av,39.939571,-75.272352,,,1, +19791,Lansdowne Av & Stewart Av,39.941392,-75.272655,,,1, +19793,Lansdowne Av & Essex Av,39.944787,-75.274986,,,1, +19794,Lansdowne Av & Plumstead Av,39.946574,-75.276824,,,1, +19795,Lansdowne Av & Marshall Rd,39.947905,-75.278179,,,1, +19796,Lansdowne Av & Greenhill Rd,39.949996,-75.280348,,,1, +19798,Lansdowne Av & Huey Av - FS,39.954052,-75.283929,,,1, +19799,Lansdowne Av & School Ln,39.955249,-75.284801,,,1, +19800,Lansdowne Av & State Rd,39.959197,-75.287521,,,1, +19801,Lansdowne Av & Cedar Ln,39.96093,-75.288439,,,1, +19802,Lansdowne Av & Saint Anthony Ln,39.9621,-75.289393,,,1, +19803,Lansdowne Av & Bond Av,39.963199,-75.290536,,,1, +19804,Lansdowne Av & Harwood Av,39.965638,-75.293319,,,1, +19805,Lansdowne Av & Manor Av - FS,39.966666,-75.294498,,,1, +19806,Darby Rd & West Chester Pike,39.968712,-75.296562,,,1, +19807,Darby Rd & Park Rd - FS,39.970401,-75.298188,,,1, +19808,Darby Rd & Llandillo Rd - FS,39.972161,-75.300028,,,1, +19809,Darby Rd & Mercer Av,39.97351,-75.301148,,,1, +19810,Darby Rd & Manoa Rd,39.975921,-75.302703,,,1, +19814,Manoa Rd & Darby Rd,39.97593,-75.303116,,,1, +19815,Darby Rd & Fulmer Av - FS,39.973519,-75.301561,,,1, +19816,Darby Rd & Llandillo Rd,39.971893,-75.300241,,,1, +19817,Darby Rd & Park Rd,39.970115,-75.298331,,,1, +19818,Darby Rd & West Chester Pk - FS,39.968489,-75.29668,,,1, +19819,Lansdowne Av & Manor Av,39.966657,-75.294735,,,1, +19820,Lansdowne Av & Harwood Av,39.965657,-75.293626,,,1, +19821,Lansdowne Av & Bond Av,39.963217,-75.290855,,,1, +19823,Lansdowne Av & Cedar Ln,39.961028,-75.288769,,,1, +19824,Lansdowne Av & State Rd,39.959555,-75.287945,,,1, +19825,Lansdowne Av & School Ln,39.955419,-75.285178,,,1, +19826,Lansdowne Av & Huey Av,39.953776,-75.283977,,,1, +19827,Lansdowne Av & Greenhill Rd,39.95005,-75.280678,,,1, +19828,Lansdowne Av & Marshall Rd,39.948022,-75.278581,,,1, +19829,Lansdowne Av & Plumstead Av,39.946619,-75.277155,,,1, +19830,Lansdowne Av & Essex Av,39.944796,-75.275269,,,1, +19831,Lansdowne Av & Greenwood Av,39.943599,-75.274091,,,1, +19832,Lansdowne Av & Stewart Av,39.941607,-75.272997,,,1, +19833,Lansdowne Av & LaCrosse Av,39.939848,-75.272612,,,1, +19834,Lansdowne Av & Nyack Av,39.93617,-75.271935,,,1, +19835,Lansdowne Av & Linden Av,39.934063,-75.271042,,,1, +19836,Lansdowne Av & Fairview Rd,39.932759,-75.270478,,,1, +19837,Lansdowne Av & Lincoln Av,39.931241,-75.269844,,,1, +19839,Lansdowne Av & Baily Rd - MBNS,39.928777,-75.268846,,,1, +19840,Main St & 14th St,39.923892,-75.266544,,,1, +19842,Main St & 12th St,39.922427,-75.265213,,,1, +19844,Chester Pk & MacDade Blvd - FS,39.917134,-75.264659,,,1, +19845,Chester Pk & Pine St,39.915635,-75.264957,,,1, +19846,Chester Pk & Cherry St,39.914216,-75.265468,,,1, +19851,Elmwood Av & Calcon Hook Rd,39.906014,-75.265239,,,1, +19852,Elmwood Av & Calcon Hook Rd - MBNS,39.905258,-75.266881,,,1, +19853,Elmwood Av & Brennan Av - FS,39.904858,-75.268216,,,1, +19855,Sharon Av & Linden Av,39.901484,-75.268105,,,1, +19857,Sharon Av & Laurel Av,39.900233,-75.267164,,,1, +19859,Hook Rd & Clifton Av,39.898065,-75.267169,,,1, +19860,Hook Rd & Greenhill Rd,39.897223,-75.271608,,,1, +19861,Hook Rd & Tribbett Av,39.896547,-75.273981,,,1, +19864,Taylor Dr & Delmar Dr,39.889306,-75.285878,,,1, +19879,Primos Av & Warwick Av,39.896811,-75.277697,,,1, +19880,Primos Av & Elmwood Av,39.899491,-75.279698,,,1, +19882,Oak Ln & Chester Pk,39.903154,-75.283065,,,1, +19883,Chester Pk & Lamont Av,39.901828,-75.28649,,,1, +19892,Long Ln & Sansom St,39.958525,-75.2633,,,1, +19893,Wycombe Av & Plumstead Av - MBFS,39.95032,-75.268113,,,1, +19894,Wycombe Av & Blackburn Av,39.948294,-75.26774,,,1, +19895,Wycombe Av & Powelton Av,39.946375,-75.267567,,,1, +19896,Wycombe Av & Greenwood Av,39.944305,-75.268493,,,1, +19897,Wycombe Av & Stewart Av,39.942155,-75.268687,,,1, +19898,Wycombe Av & LaCrosse Av,39.940201,-75.269388,,,1, +19899,Wycombe Av & Baltimore Av,39.938827,-75.269591,,,1, +19900,Baltimore Av & Highland Av,39.938632,-75.270654,,,1, +19901,Baltimore Av & Runnemede Av,39.93771,-75.275249,,,1, +19902,Baltimore Pk & Windermere Av,39.937355,-75.276915,,,1, +19903,Baltimore Av & Ardmore Av,39.937009,-75.278592,,,1, +19904,Baltimore Av & Martin Dr - FS,39.936609,-75.280435,,,1, +19905,Baltimore Av & Jackson St - FS,39.934206,-75.28613,,,1, +19907,Baltimore Av & Marple Av,39.932951,-75.28899,,,1, +19908,Baltimore Av & Edgemont Av - MBFS,39.932025,-75.29101,,,1, +19910,Baltimore Av & Springfield Rd,39.929301,-75.297048,,,1, +19911,Baltimore Av & Sycamore Av,39.928633,-75.299044,,,1, +19912,Baltimore Av & Church St,39.928242,-75.300225,,,1, +19913,Baltimore Pk & North Av,39.923829,-75.314186,,,1, +19914,Baltimore Pk & Homestead Av,39.923108,-75.316513,,,1, +19915,Baltimore Pk & West Av,39.922405,-75.318816,,,1, +19916,Baltimore Pk & Norwinden Dr,39.921622,-75.321071,,,1, +19917,Baltimore Pk & Lehan Cr,39.920803,-75.323445,,,1, +19918,Baltimore Pk & Saxer Av - FS,39.919975,-75.325854,,,1, +19919,Baltimore Pk & Leamy Av,39.918853,-75.329008,,,1, +19924,Chester Rd & Baltimore Pk - FS,39.913893,-75.344665,,,1, +19927,Chester Rd & Swarthmore Av,39.910862,-75.349012,,,1, +19930,Chester Rd & College Av,39.906365,-75.350303,,,1, +19931,Chester Rd & Harvard Av,39.899226,-75.351279,,,1, +19932,Chester Rd & Yale Av,39.897441,-75.351352,,,1, +19933,Chester Rd & Westdale Av,39.895174,-75.351791,,,1, +19934,Chester Rd & Strathaven Av,39.893979,-75.352252,,,1, +19935,Chester Rd & Mt Holyoke Pl - FS,39.889901,-75.354168,,,1, +19936,Chester Rd & Avondale Ln,39.884549,-75.357843,,,1, +19937,Chester Rd & Canterbury Dr,39.88338,-75.359389,,,1, +19938,Chester Rd & Medbury Rd,39.882194,-75.360865,,,1, +19939,Chester Rd & Governors Dr,39.880535,-75.36148,,,1, +19941,Providence Rd & Laurie Ln,39.876063,-75.360965,,,1, +19943,Providence Av & 24th St - FS,39.870022,-75.362163,,,1, +19944,Providence Av & Chestnut St,39.868844,-75.36247,,,1, +19945,Providence Av & 23rd St,39.867934,-75.362471,,,1, +19947,Providence Av & 21st St,39.865997,-75.361919,,,1, +19949,Providence Av & 19th St,39.86431,-75.361012,,,1, +19951,Providence Av & 18th St,39.863176,-75.360459,,,1, +19952,Providence Av & 16th St,39.861605,-75.360118,,,1, +19954,Edgemont Av & 12th St - FS,39.856519,-75.361208,,,1, +19955,Edgmont Av & 11th St,39.855233,-75.36095,,,1, +19957,Edgmont Av & 9th St,39.852895,-75.360799,,,1, +19959,Welsh St & 7th St,39.850762,-75.360365,,,1, +19960,Edgmont Av & 9th St - FS,39.852949,-75.360587,,,1, +19962,Edgmont Av & 11th St,39.855215,-75.360738,,,1, +19963,Edgmont Av & 12th St,39.856581,-75.361008,,,1, +19964,Providence Av & 14th St,39.858374,-75.360239,,,1, +19966,Providence Av & 16th St,39.861533,-75.359788,,,1, +19967,Providence Av & 17th St,39.86248,-75.360118,,,1, +19968,Providence Av & 18th St,39.863533,-75.3604,,,1, +19969,Providence Av & 19th St,39.864113,-75.360682,,,1, +19970,Providence Av & 20th St,39.865015,-75.361082,,,1, +19971,Providence Av & 21st St,39.865907,-75.361624,,,1, +19973,Providence Av & Chestnut St,39.868523,-75.362341,,,1, +19974,Providence Av & 24th St,39.87012,-75.361927,,,1, +19976,Providence Rd & Bullens Ln,39.875902,-75.360683,,,1, +19977,Providence Rd & Chester Rd,39.878812,-75.3616,,,1, +19978,Chester Rd & Fairview Rd,39.892319,-75.352974,,,1, +19979,Chester Rd & Governors Dr,39.880285,-75.361327,,,1, +19980,Chester Rd & Medbury Rd - FS,39.882123,-75.360677,,,1, +19981,Chester Rd & Canterbury Dr,39.883389,-75.359059,,,1, +19982,Chester Rd & Avondale Ln - FS,39.884816,-75.357335,,,1, +19983,Chester Rd & Mt Holyoke Pl,39.889821,-75.353979,,,1, +19984,Chester Rd & Fairview Rd,39.89206,-75.352832,,,1, +19985,Chester Rd & Strathaven Av,39.893666,-75.352158,,,1, +19986,Chester Rd & Westdale Av,39.894826,-75.351697,,,1, +19988,Chester Rd & College Av,39.905972,-75.350127,,,1, +19992,Swarthmore Av & Chester Rd - FS,39.910853,-75.349177,,,1, +19994,Baltimore Pk & Saxer Av,39.919823,-75.325737,,,1, +19995,Baltimore Pk & Lehan Cr,39.920651,-75.323339,,,1, +19996,Baltimore Pk & Andrew Rd - FS,39.921461,-75.321001,,,1, +19997,Baltimore Pk & West Av,39.922173,-75.318922,,,1, +19998,Baltimore Pk & Homestead Av - FS,39.922992,-75.3163,,,1, +19999,Baltimore Pk & North Av,39.923588,-75.314387,,,1, +20000,Baltimore Pk & Church St,39.927983,-75.300438,,,1, +20001,Baltimore Pk & Sycamore Av,39.928473,-75.29895,,,1, +20002,Baltimore Pk & Springfield Rd - FS,39.929211,-75.2968,,,1, +20003,Baltimore Pk & Diamond St,39.929781,-75.295548,,,1, +20004,Baltimore Pk & Edgemont Av - MBNS,39.931953,-75.290751,,,1, +20005,Baltimore Pk & Marple Av - FS,39.932808,-75.288884,,,1, +20007,Baltimore Pk & Jackson St,39.934054,-75.286012,,,1, +20008,Baltimore Pk & Burmont Rd,39.934588,-75.284134,,,1, +20009,Baltimore Pk & Gladstone Rd,39.936422,-75.280506,,,1, +20010,Baltimore Pk & Ardmore Av,39.936777,-75.278888,,,1, +20011,Baltimore Pk & Windemere Av - FS,39.937176,-75.27695,,,1, +20012,Baltimore Pk & Runnemede Av - FS,39.93754,-75.275214,,,1, +20013,Baltimore Av & Wycombe Av,39.938649,-75.269604,,,1, +20014,Baltimore Av & Rigby Av,39.938914,-75.268151,,,1, +20015,Union Av & Baltimore Av - FS,39.939545,-75.265564,,,1, +20016,Union Av & Stewart Av,39.942071,-75.26616,,,1, +20017,Union Av & Wynnewood Av,39.94375,-75.266569,,,1, +20019,Union Av & Powelton Av,39.946089,-75.267107,,,1, +20020,Wycombe Av & LeCarra Dr,39.948222,-75.267516,,,1, +20022,Baltimore Av & Burmont Rd,39.934837,-75.283957,,,1, +20024,Paper Mill Rd Station,39.915428,-75.358036,,,1, +20025,Paper Mill Rd Station,39.915276,-75.357953,,,1, +20026,Baltimore Pike & School Ln,39.916331,-75.415587,,,1, +20028,Baltimore Pike & Elwyn Rd,39.916829,-75.404669,,,1, +20029,Elwyn Rd & Baltimore Pk,39.916597,-75.404397,,,1, +20030,Baltimore Pk & Ridley Creek Rd - FS,39.916677,-75.401458,,,1, +20032,Baltimore Pk & Lemon St,39.917559,-75.395474,,,1, +20033,Baltimore Pk & Orange St,39.917264,-75.393397,,,1, +20034,Baltimore Pk & South Av,39.91713,-75.392393,,,1, +20035,Baltimore Pk & Olive St,39.917004,-75.391414,,,1, +20037,Baltimore Pk & Monroe St,39.91653,-75.388062,,,1, +20038,Baltimore Pk & Edgmont St,39.916253,-75.386079,,,1, +20039,Baltimore Pk & Radnor St,39.916029,-75.384486,,,1, +20040,Baltimore Pk & Manchester Av,39.915877,-75.383377,,,1, +20042,Baltimore Pk & Beatty Rd,39.91501,-75.378916,,,1, +20044,Baltimore Pk & Grandview Rd,39.913972,-75.372885,,,1, +20045,Baltimore Pk & Pine Ridge Ln,39.913578,-75.370324,,,1, +20046,Baltimore Pk & Turner Rd,39.913291,-75.367173,,,1, +20048,Township Line Rd & Bella Vista Rd,39.946427,-75.325178,,,1, +20049,Township Line Rd & Arrowhead Ln - FS,39.949336,-75.323958,,,1, +20051,Pontiac Rd & Dermond Rd ,39.954129,-75.324317,,,1, +20052,Township Line Rd & Pontiac Rd,39.954823,-75.322497,,,1, +20053,Township Line Rd & Burmont Rd - FS,39.956624,-75.32064,,,1, +20054,Township Line Rd & Alexander Av,39.957631,-75.318643,,,1, +20055,Township Line Rd & Belfield Av,39.958326,-75.317107,,,1, +20056,Township Line Rd & Drexel Av,39.959537,-75.31427,,,1, +20057,Township Line Rd & Lindale Av - FS,39.960499,-75.312084,,,1, +20058,Township Line Rd & Concord Av,39.961158,-75.31063,,,1, +20059,Township Line Rd & Edmonds Av,39.961826,-75.309129,,,1, +20060,Township Line Rd & Foss Av - FS,39.96261,-75.307356,,,1, +20061,Township Line Rd & Old Lane St,39.963732,-75.304815,,,1, +20062,Township Line Rd & Cobbs St,39.964123,-75.303928,,,1, +20063,Township Line Rd & Harding Av,39.965103,-75.301765,,,1, +20064,Township Line Rd & Wilson Dr - FS,39.965887,-75.299992,,,1, +20065,Township Line Rd & Hollywood Av,39.96667,-75.298243,,,1, +20066,Township Line Rd & Greenview Ln,39.964391,-75.303715,,,1, +20067,Township Line Rd & Belfield Av,39.958424,-75.317213,,,1, +20068,Township Line Rd & Pontiac Rd - FS,39.954779,-75.322769,,,1, +20069,Township Line Rd & Pilgrim Ln,39.949023,-75.324254,,,1, +20070,Township Line & Bella Vista Rd,39.947881,-75.324574,,,1, +20071,Baltimore Pike & Chesley Dr ,39.914097,-75.372566,,,1, +20072,Baltimore Pike & 605 East,39.914705,-75.376697,,,1, +20073,Baltimore Pk & Monroe St,39.916646,-75.38772,,,1, +20074,Baltimore Pike & Jackson St,39.916932,-75.389573,,,1, +20075,Baltimore Pike & State St,39.918006,-75.397398,,,1, +20076,Baltimore Pk & Ridley Creek Rd - FS,39.916963,-75.401895,,,1, +20082,Pembroke Av & Oak Av,39.943897,-75.256344,,,1, +20083,Pembroke Av & Wildwood Av,39.943551,-75.258375,,,1, +20085,Pembroke Av & Penn Blvd,39.943206,-75.260478,,,1, +20086,Pembroke Av & Hirst Av,39.942657,-75.263573,,,1, +20087,Stewart Av & Union Av,39.942357,-75.26623,,,1, +20088,Stewart Av & Wycombe Av,39.942154,-75.268415,,,1, +20089,Stewart Av & Highland Av,39.941917,-75.271001,,,1, +20090,Stewart Av & Lansdowne Av,39.941776,-75.272643,,,1, +20123,MacDade Blvd & Pine St,39.916885,-75.265993,,,1, +20124,MacDade Blvd & Cherry St,39.91604,-75.26786,,,1, +20126,MacDade Blvd & Roberta Av,39.914785,-75.270719,,,1, +20127,MacDade Blvd & Wolfenden Av - FS,39.914403,-75.271629,,,1, +20129,MacDade Blvd & Jackson Av,39.913806,-75.272976,,,1, +20131,MacDade Blvd & Felton Av - FS,39.912961,-75.274913,,,1, +20132,MacDade Blvd & Sharon Av - FS,39.912196,-75.276626,,,1, +20133,MacDade Blvd & Clifton Av - FS,39.911688,-75.277784,,,1, +20134,MacDade Blvd & Collingdale Av - FS,39.911092,-75.279083,,,1, +20135,MacDade Blvd & Lafayette St,39.909641,-75.282273,,,1, +20136,MacDade Blvd & Willows Av,39.908849,-75.284009,,,1, +20137,MacDade Blvd & Oak Ln - 1,39.908252,-75.285332,,,1, +20138,MacDade Blvd & Oak Ln - 2 MBFS,39.906926,-75.288285,,,1, +20139,MacDade Blvd & Cooke Av,39.906214,-75.289845,,,1, +20140,MacDade Blvd & Ashland Av,39.905154,-75.292172,,,1, +20145,South Av & MacDade Blvd - FS,39.901184,-75.302292,,,1, +20149,MacDade Blvd & Norwood Av,39.897801,-75.310228,,,1, +20150,MacDade Blvd & Amosland Rd,39.897204,-75.311834,,,1, +20152,MacDade Blvd & Kedron Av,39.896047,-75.314951,,,1, +20154,MacDade Blvd & Folsom Av - FS,39.893196,-75.320407,,,1, +20156,MacDade Blvd & Sycamore Av,39.891645,-75.322851,,,1, +20157,MacDade Blvd & Fernwood Av,39.890612,-75.324481,,,1, +20158,MacDade Blvd & Edgewood Av,39.889899,-75.325615,,,1, +20159,MacDade Blvd & Linda Vista Av,39.888963,-75.327091,,,1, +20160,MacDade Blvd & Monta Vista Av,39.888116,-75.328426,,,1, +20161,MacDade Blvd & Rio Vista Av,39.887376,-75.329689,,,1, +20162,MacDade Blvd & Morton Av - FS,39.886307,-75.331366,,,1, +20163,MacDade Blvd & Belmont Av,39.885433,-75.332724,,,1, +20165,MacDade Blvd & Virginia Av,39.883704,-75.335499,,,1, +20166,MacDade Blvd & Milmont Av,39.882679,-75.337104,,,1, +20167,MacDade Blvd & Forrest Av,39.881698,-75.338687,,,1, +20168,MacDade Blvd & Kossuth Av,39.880825,-75.340103,,,1, +20169,MacDade Blvd & School Ln,39.879479,-75.342335,,,1, +20170,MacDade Blvd & Springfield Av,39.894257,-75.318729,,,1, +20171,MacDade Blvd & Bullens Ln,39.871347,-75.353716,,,1, +20172,MacDade Blvd & Woodlyn Shopping Ctr,39.870009,-75.355994,,,1, +20173,Melrose Av & 22nd St - FS,39.868217,-75.358744,,,1, +20175,Melrose Av & 19th St,39.865985,-75.356941,,,1, +20180,Melrose Av & 15th St,39.862592,-75.354716,,,1, +20181,Melrose Av & 14th St,39.861655,-75.354127,,,1, +20182,Melrose Av & 12th St,39.8597,-75.352914,,,1, +20184,Morton Av & Hyatt St - FS,39.85796,-75.353164,,,1, +20185,Morton Av & 10th St - FS,39.856479,-75.353708,,,1, +20186,Morton Av & 9th St,39.855426,-75.353697,,,1, +20188,Morton Av & 7th St,39.853418,-75.353829,,,1, +20196,3rd St & Concord St,39.84474,-75.363307,,,1, +20199,3rd St & Kerlin St,39.843136,-75.368143,,,1, +20201,3rd St & Lloyd St,39.84179,-75.372164,,,1, +20202,3rd St & Lamokin St,39.840702,-75.374252,,,1, +20204,3rd St & Tilghman St,39.839088,-75.377225,,,1, +20205,3rd St & Central Av,39.838598,-75.378251,,,1, +20207,Flower St & 3rd St - FS ,39.837037,-75.380233,,,1, +20209,Flower St & Seaport Dr,39.834448,-75.377935,,,1, +20210,Seaport Dr & Rivertown Development,39.830569,-75.385365,,,1, +20212,Highland Av & 2nd St,39.830766,-75.389939,,,1, +20218,3rd St & Wilcox St,39.82802,-75.39844,,,1, +20220,Post Rd & Price St - FS,39.828681,-75.400904,,,1, +20264,Highland Av & 2nd St,39.830874,-75.390293,,,1, +20266,Seaport Dr & Rivertown Development,39.830381,-75.385059,,,1, +20267,Flower St & Seaport Dr - FS,39.834466,-75.3777,,,1, +20269,Flower St & 3rd St,39.837269,-75.380173,,,1, +20271,3rd St & Central Av,39.83833,-75.378392,,,1, +20272,3rd St & Tilghman St,39.83882,-75.377343,,,1, +20274,3rd St & Lamokin St,39.840434,-75.37437,,,1, +20275,3rd St & Lloyd St,39.84154,-75.372259,,,1, +20277,3rd St & Kerlin St,39.842904,-75.368343,,,1, +20280,3rd St & Concord Av,39.844499,-75.363401,,,1, +20296,Morton Av & 9th St,39.855283,-75.353509,,,1, +20298,Melrose Av & Morton Av - FS,39.859155,-75.352384,,,1, +20299,Melrose Av & 12th St,39.859655,-75.35269,,,1, +20300,Melrose Av & 14th St,39.861548,-75.353868,,,1, +20301,Melrose Av & 15th St,39.862467,-75.354386,,,1, +20302,Melrose Av & 16th St,39.86336,-75.354951,,,1, +20303,Melrose Av & 17th St,39.864226,-75.355492,,,1, +20304,Melrose Av & 18th St,39.865181,-75.356128,,,1, +20305,Melrose Av & 19th St,39.865905,-75.356658,,,1, +20306,Melrose Av & 20th St,39.866717,-75.357283,,,1, +20308,Melrose Av & 22nd St,39.86836,-75.358602,,,1, +20309,MacDade Blvd & Woodlyn Shopping Ctr,39.869617,-75.356419,,,1, +20310,MacDade Blvd & Bullens Ln,39.870963,-75.35374,,,1, +20311,MacDade Blvd & School Ln - FS,39.879443,-75.342052,,,1, +20312,MacDade Blvd & Kossuth Av,39.880557,-75.340198,,,1, +20313,MacDade Blvd & Forrest Av - FS,39.881618,-75.338474,,,1, +20314,MacDade Blvd & Milmont Av - FS,39.882634,-75.336845,,,1, +20315,MacDade Blvd & Virginia Av - MBNS,39.883445,-75.33557,,,1, +20316,MacDade Blvd & Arlington Av,39.884051,-75.334602,,,1, +20317,MacDade Blvd & Belmont Av - FS,39.885237,-75.332712,,,1, +20318,MacDade Blvd & Morton Av - FS,39.886315,-75.330882,,,1, +20321,MacDade Blvd & Linda Vista Av - FS,39.888927,-75.32682,,,1, +20322,MacDade Blvd & Edgewood Av,39.889667,-75.325639,,,1, +20323,MacDade Blvd & Fernwood Av - FS,39.890745,-75.323938,,,1, +20324,MacDade Blvd & Sycamore Av,39.891387,-75.322923,,,1, +20325,MacDade Blvd & Swarthmore Av,39.892652,-75.320927,,,1, +20326,MacDade Blvd & Folsom Av,39.893125,-75.320183,,,1, +20328,MacDade Blvd & Sutton Av,39.894889,-75.317301,,,1, +20329,MacDade Blvd & Kedron Av,39.895717,-75.3154,,,1, +20331,MacDade Blvd & Amosland Rd,39.896946,-75.312035,,,1, +20332,MacDade Blvd & Norwood Av - FS,39.897765,-75.30985,,,1, +20333,MacDade Blvd & Holmes Rd,39.898308,-75.308351,,,1, +20335,MacDade Blvd & South Av,39.900551,-75.302057,,,1, +20336,MacDade Blvd & Grays Av,39.901281,-75.300404,,,1, +20339,MacDade Blvd & Gardner Av,39.903863,-75.294629,,,1, +20340,MacDade Blvd & Ashland Av,39.904904,-75.29229,,,1, +20341,MacDade Blvd & Cooke Av - FS,39.906088,-75.28968,,,1, +20343,MacDade Blvd & Oak Ln,39.907477,-75.286597,,,1, +20344,MacDade Blvd & Willows Av,39.908563,-75.284222,,,1, +20345,MacDade Blvd & Lafayette Av,39.909373,-75.282427,,,1, +20347,MacDade Blvd & Clifton Av,39.911563,-75.277631,,,1, +20348,MacDade Blvd & Sharon Av - FS,39.912186,-75.276225,,,1, +20349,MacDade Blvd & Felton Av,39.912827,-75.274772,,,1, +20351,MacDade Blvd & Jackson Av,39.91353,-75.273153,,,1, +20352,MacDade Blvd & Marshall Av - FS,39.914037,-75.271984,,,1, +20354,MacDade Blvd & Roberta Av,39.914633,-75.270649,,,1, +20356,MacDade Blvd & Cherry St,39.915915,-75.267695,,,1, +20357,MacDade Blvd & Pine St,39.916627,-75.266135,,,1, +20358,MacDade Blvd & Chester Pike,39.91725,-75.264729,,,1, +20359,Stewart Av & Highland Av,39.941712,-75.271474,,,1, +20360,Stewart Av & Wycombe Av,39.941967,-75.268687,,,1, +20361,Stewart Av & Union Av - FS,39.942196,-75.266207,,,1, +20362,Pembroke Av & Hirst Av,39.942452,-75.263833,,,1, +20364,Pembroke Av & Penn Blvd,39.942983,-75.260785,,,1, +20365,Pembroke Av & Wildwood Av,39.943329,-75.258659,,,1, +20366,Pembroke Av & Oak Av,39.943683,-75.256604,,,1, +20367,Chester Pk & Bartlett Av,39.913085,-75.26697,,,1, +20368,Chester Pk & Calcon Hook Rd,39.912149,-75.268223,,,1, +20369,Chester Pk & Ridley Av,39.909994,-75.271391,,,1, +20370,Chester Pike & Sharon Av,39.908738,-75.273754,,,1, +20371,Chester Pike & Florence Av,39.907919,-75.275243,,,1, +20375,Worthington Rd & Southampton Rd - FS,40.123872,-75.001913,,,1, +20382,Hawthorne St & MaGee Av ,40.032367,-75.057681,,,1, +20388,Hawthorne St & Magee Av - FS,40.03234,-75.057504,,,1, +20395,Verree Rd & Bloomfield Av - FS,40.089764,-75.056886,,,1, +20398,Worthington Rd & Southampton Rd,40.123758,-75.001806,,,1, +20399,Walnut Grove Drive - culdesac,40.166068,-75.14127,,,1, +20402,PA 291 & Penn St,39.844864,-75.362068,,,1, +20404,Ridge Av & Paoili Av,40.043878,-75.228634,,,1, +20405,Ridge Av & Gates St ,40.037359,-75.220908,,,1, +20407,Schuylkill Av & Chestnut St,39.952964,-75.181676,,,1, +20408,Ridge Av & Domino Ln - 1,40.044935,-75.231079,,,1, +20409,Ridge Av & Evergreen Av ,40.054716,-75.235865,,,1, +20410,Ridge Av & Port Royal Av ,40.059735,-75.238063,,,1, +20412,Spring Garden St & 17th St,39.96316,-75.166145,,,1, +20414,Broad St & S Penn Sq,39.951446,-75.163755,,,1, +20417,Harrah's Chester Casino,39.849569,-75.350236,,,1, +20420,Township Line Rd & Ridge Pk - FS,40.214561,-75.500235,,,1, +20423,Red Lion Rd & Decatur Rd - MBNS,40.083383,-75.001173,,,1, +20427,Shadeland Av & Berkley Av,39.93967,-75.287666,,,1, +20428,Tasker St & 33rd St,39.934496,-75.199107,,,1, +20430,29th St & Montgomery Av,39.983371,-75.181606,,,1, +20431,Sharon Hill Station,39.906673,-75.278314,,,1,0 +20432,Tri State Mall 2,39.815047,-75.448939,,,1, +20435,Spruce St & 33rd St - FS,39.95002,-75.191405,,,1, +20440,Spring Garden St & Kelly Dr,39.964944,-75.178646,,,1, +20443,Oxford Av & Harrison St,40.020323,-75.084233,,,1, +20444,Oxford Av & Wakeling St ,40.022304,-75.08433,,,1, +20445,Oxford Av & Roosevelt Blvd ,40.031142,-75.084784,,,1, +20446,Castor Av & Van Kirk St ,40.033146,-75.083367,,,1, +20447,Castor Av & Comly St,40.034374,-75.082203,,,1, +20448,Oxford Av & Sanger St ,40.030223,-75.084966,,,1, +20449,Castor Av & Everett Av,40.041834,-75.075025,,,1, +20450,Castor Av & Unruh Av ,40.043053,-75.073837,,,1, +20451,Castor Av & Bleigh Av ,40.052924,-75.064292,,,1, +20452,Castor Av & Shelmire Av ,40.054179,-75.063114,,,1, +20453,Castor Av & Glendale Av ,40.055763,-75.061616,,,1, +20454,Castor Av & Napfle Av ,40.056644,-75.060784,,,1, +20455,Castor Av & Hartel Av ,40.057926,-75.059583,,,1, +20456,Castor Av & Borbeck St ,40.059172,-75.058406,,,1, +20457,Castor Av & Loney St ,40.060418,-75.057228,,,1, +20458,Castor Av & Rhawn St ,40.061655,-75.056063,,,1, +20459,Castor Av & Stanwood St ,40.062893,-75.054897,,,1, +20460,Castor Av & Arthur St,40.063498,-75.054326,,,1, +20461,Castor Av & Solly Av ,40.064139,-75.05372,,,1, +20462,Castor Av & Hoffnagle St ,40.065394,-75.052542,,,1, +20463,Castor Av & Hoffnagle St ,40.065635,-75.052647,,,1, +20464,Castor Av & Solly Av,40.06438,-75.053837,,,1, +20465,Castor Av & Arthur St,40.063739,-75.054443,,,1, +20466,Castor Av & Stanwood St ,40.063143,-75.055014,,,1, +20467,Castor Av & Rhawn St ,40.061906,-75.05618,,,1, +20468,Castor Av & Loney St,40.060668,-75.057333,,,1, +20469,Castor Av & Borbeck Av ,40.059414,-75.058523,,,1, +20470,Castor Av & Hartel Av ,40.058176,-75.0597,,,1, +20471,Castor Av & Napfle Av ,40.056886,-75.060889,,,1, +20472,Castor Av & Faunce St ,40.055675,-75.062042,,,1, +20473,Castor Av & Shelmire Av ,40.05442,-75.063231,,,1, +20474,Castor Av & Bleigh Av ,40.053174,-75.064409,,,1, +20476,Castor Av & Saint Vincent St ,40.049445,-75.067904,,,1, +20477,Castor Av & Princeton Av ,40.048189,-75.069105,,,1, +20478,Castor Av & Tyson Av ,40.046908,-75.070317,,,1, +20479,Castor Av & Longshore Av - FS,40.045528,-75.07166,,,1, +20480,Castor Av & Knorr St ,40.044478,-75.072683,,,1, +20481,Castor Av & Unruh Av ,40.043249,-75.073859,,,1, +20482,Castor Av & MaGee Av ,40.04203,-75.075048,,,1, +20483,Castor Av & Hellerman St ,40.040757,-75.07626,,,1, +20485,Castor Av & Robbins Av ,40.038274,-75.078661,,,1, +20486,Castor Av & Devereaux Av ,40.037054,-75.079849,,,1, +20487,Castor Av & Benner St ,40.035826,-75.081025,,,1, +20488,Castor Av & Comly St,40.034571,-75.082226,,,1, +20489,Castor Av & Van Kirk St ,40.033342,-75.08339,,,1, +20490,Castor Av & Roosevelt Blvd ,40.03239,-75.084293,,,1, +20491,Oxford Av & Sanger St ,40.030437,-75.085095,,,1, +20492,Oxford Av & Bridge St ,40.028662,-75.085422,,,1, +20493,Oxford Av & Pratt St ,40.026483,-75.085031,,,1, +20494,Oxford Av & Dyre St,40.024322,-75.084568,,,1, +20495,Oxford Av & Wakeling St ,40.022555,-75.084506,,,1, +20496,Oxford Av & Harrison St ,40.020475,-75.08441,,,1, +20497,Oxford Av & Penn St ,40.019091,-75.084227,,,1, +20503,Willow Grove Station ,40.143831,-75.114103,,,1,0 +20510,23rd St & Chestnut St - FS,39.952484,-75.178265,,,1, +20512,Somerset St & Aramingo Av,39.983553,-75.11547,,,1, +20513,Somerset St & Emerald St,39.989313,-75.120561,,,1, +20514,Lehigh Av & B St,39.990462,-75.126889,,,1, +20515,Lehigh Av & A St,39.990708,-75.128837,,,1, +20516,Lehigh Av & 5th St,39.992198,-75.140056,,,1, +20517,Lehigh Av & Lawrence St,39.99208,-75.139146,,,1, +20518,Lehigh Av & 9th St,39.992952,-75.145961,,,1, +20519,Lehigh Av & Germantown Av,39.993153,-75.147768,,,1, +20520,Lehigh Av & 11th St,39.993352,-75.149137,,,1, +20521,Lehigh Av & 12th St,39.993534,-75.150708,,,1, +20522,Lehigh Av & 13th St,39.993725,-75.152267,,,1, +20523,Lehigh Av & 15 St,39.994224,-75.156105,,,1, +20524,Lehigh Av & 16th St,39.994424,-75.157676,,,1, +20525,Lehigh Av & Glenwood Av - FS,39.994715,-75.159979,,,1, +20526,Lehigh Av & Sedgley Av,39.995105,-75.162967,,,1, +20527,Lehigh Av & 20th St - FS,39.995322,-75.16429,,,1, +20528,Lehigh Av & 21st St,39.995512,-75.165837,,,1, +20529,Lehigh Av & 23rd St,39.995894,-75.169014,,,1, +20530,Lehigh Av & 24th St,39.996103,-75.170632,,,1, +20531,Lehigh Av & 25th St,39.996302,-75.172215,,,1, +20532,Lehigh Av & 26th St,39.996511,-75.173833,,,1, +20533,Lehigh Av & 27th St,39.996684,-75.175416,,,1, +20534,Lehigh Av & 28th St,39.996883,-75.176833,,,1, +20535,Lehigh Av & 29th St,39.997109,-75.178463,,,1, +20536,Lehigh Av & Chalmers Av or 30th St ,39.997282,-75.180022,,,1, +20538,Lehigh Av & 29th St,39.996976,-75.1787,,,1, +20539,Lehigh Av & 24th St,39.995969,-75.170881,,,1, +20542,Lehigh Av & 11th St,39.993219,-75.149374,,,1, +20543,Lehigh Av & 5th St,39.992065,-75.140316,,,1, +20544,Lehigh Av & Front St,39.990838,-75.130987,,,1, +20545,Cambria St & Frankford Av,39.98978,-75.117924,,,1, +20546,Cambria St & Aramingo Av,39.984878,-75.113574,,,1, +20547,Lehigh Av & Broad St,39.994006,-75.154452,,,1, +20549,Malvern Av & 64th St,39.981534,-75.25109,,,1, +20550,City Av & Monument Rd,40.00701,-75.213859,,,1, +20552,Walnut Ln & Wayne Av - FS,40.034803,-75.184573,,,1, +20553,Walnut Ln & Morris St - MBNS,40.033618,-75.185783,,,1, +20554,Walnut Ln & Wissahickon Av,40.032626,-75.189711,,,1, +20555,Walnut Ln & Johnson St,40.033372,-75.196838,,,1, +20556,Walnut Ln & Magdelena St,40.029671,-75.203352,,,1, +20557,Walnut Ln & Houghton St,40.028009,-75.207294,,,1, +20558,City Av & Monument Rd - FS,40.00718,-75.214095,,,1, +20559,City Av & Conshohocken State Rd,40.001524,-75.225964,,,1, +20561,City Av & Bryn Mawr Av ,39.99922,-75.230851,,,1, +20562,City Av & 54th St - FS,39.997041,-75.235513,,,1, +20563,City Av & Orchard Rd - MBNS,39.996213,-75.237264,,,1, +20564,City Av & Lapsley Lane,39.995439,-75.238908,,,1, +20565,City Av & Cardinal Av,39.994203,-75.24157,,,1, +20566,City Av & Berwick Rd,39.993189,-75.243759,,,1, +20567,City Av & Blancoyd Rd,39.991222,-75.247911,,,1, +20568,City Av & Merion Rd,39.990653,-75.249082,,,1, +20569,63rd St & City Line Av - FS,39.989647,-75.250739,,,1, +20571,63rd St & Overbrook Av,39.988459,-75.249974,,,1, +20573,63rd St & Sherwood Rd,39.987431,-75.249244,,,1, +20574,63rd St & Woodbine Av,39.98576,-75.247641,,,1, +20575,Malvern Av & 63rd St - FS,39.983546,-75.247328,,,1, +20576,Malvern Av & 65th St,39.980876,-75.252509,,,1, +20577,Malvern Av & Wynnewood Rd - FS,39.982932,-75.248535,,,1, +20578,Malvern Av & 64th St,39.981704,-75.250995,,,1, +20579,Malvern Av & Wynnewood Rd - MBFS,39.982309,-75.249788,,,1, +20580,Malvern Av & 66th St,39.979681,-75.253481,,,1, +20581,66th St & Lebanon Av - 2,39.977181,-75.252471,,,1, +20582,66 th & Haddington St,39.975869,-75.252191,,,1, +20583,66th St & Lansdowne Av,39.97469,-75.252017,,,1, +20584,Lansdowne Av & 67th St,39.974496,-75.253588,,,1, +20587,City Av & Belmont Av - FS,40.004111,-75.22019,,,1, +20589,54th St & City Av,39.99696,-75.235135,,,1, +20590,Townsend Rd & Natl Archives layover,40.111853,-74.967627,,,1, +20591,City Av & 54th St,39.996969,-75.235383,,,1, +20592,City Av & 52nd St,39.997965,-75.233289,,,1, +20593,29th St & Allegheny Av,40.004576,-75.176853,,,1, +20596,Cambria St & Richmond St,39.979119,-75.109134,,,1, +20597,Lehigh Av & 6th St - FS,39.992489,-75.14237,,,1, +20598,Lehigh Av & 22nd St ,39.995685,-75.167361,,,1, +20599,Allegheny Av & 5th St,39.999798,-75.138371,,,1, +20600,Allegheny Av & Broad St,40.001634,-75.152745,,,1,0 +20601,Allegheny Av & 26th St,40.00404,-75.172376,,,1, +20602,Allegheny Av & 22nd St,40.003224,-75.165998,,,1, +20603,Allegheny Av & Broad St,40.001545,-75.153064,,,1, +20604,Allegheny Av & 5th St,39.999701,-75.138607,,,1, +20605,Allegheny Av & Kensington Av,39.996472,-75.113641,,,1, +20607,Allegheny & 27th St,40.00431,-75.173451,,,1, +20608,Mt Airy Av & Stenton Av,40.069062,-75.181712,,,1,0 +20609,Mt Pleasant Av & Germantown Av ,40.0585,-75.189424,,,1,0 +20610,Malvern Av & 63rd St,39.983697,-75.247009,,,1, +20611,63rd St & Lebanon Av,39.980912,-75.246661,,,1, +20612,63rd St & Jefferson St,39.97835,-75.246184,,,1, +20613,Lansdowne Av & 63rd - FS,39.975332,-75.244986,,,1, +20614,Lansdowne Av & 62nd St,39.975499,-75.243651,,,1, +20615,Lansdowne Av & 61st St,39.975693,-75.241879,,,1, +20616,Lansdowne Av & 59th St,39.976054,-75.238653,,,1, +20617,Lansdowne Av & 58th St,39.976248,-75.236904,,,1, +20618,Lansdowne Av & 57th St,39.976406,-75.235403,,,1, +20619,Lansdowne Av & 56th St,39.976591,-75.233761,,,1, +20620,Cottman Av & Ryers Av,40.064776,-75.089613,,,1, +20621,Overhill Av & County Line Rd - FS,40.137088,-75.014171,,,1, +20622,Lansdowne Av & 55th St,39.976811,-75.231858,,,1, +20623,Lansdowne Av & 54th St,39.977013,-75.229908,,,1, +20624,Lansdowne Av & Lancaster Av,39.977295,-75.22738,,,1, +20625,Lancaster Av & Media St,39.976855,-75.226176,,,1, +20626,Lancaster Av & 50th St,39.975207,-75.22259,,,1, +20627,Lancaster Av & Thomson St,39.973748,-75.219747,,,1, +20628,Lancaster Av & 47th St,39.971555,-75.216115,,,1, +20629,Lancaster Av & Wyalusing Av,39.970973,-75.21516,,,1, +20630,Lancaster Av & 45th St,39.969667,-75.212991,,,1, +20631,Lancaster Av & 44th St,39.9687,-75.211423,,,1, +20632,Lancaster Av & 43th St,39.967725,-75.209878,,,1, +20633,Lancaster Av & 42nd St,39.966391,-75.207662,,,1, +20634,Lancaster Av & 41st St,39.965093,-75.205564,,,1, +20635,Lancaster Av & 40th St,39.963151,-75.20244,,,1, +20636,Lancaster Av & Spring Garden St,39.962004,-75.200353,,,1, +20637,Lancaster Av & Saunders St,39.961297,-75.198973,,,1, +20638,Lancaster Av & 38th St,39.960267,-75.197016,,,1, +20639,Lancaster Av & 36th St,39.958547,-75.193715,,,1, +20640,36th St & Market St,39.956281,-75.194218,,,1, +20641,36th St Portal Trolley Station,39.955335,-75.194162,,,1,0 +20642,33rd St Trolley Station,39.954773,-75.1897,,,1, +20643,30th St Trolley Station,39.954815,-75.1835,,,1, +20644,Market St & 22nd St - FS,39.953935,-75.176536,,,7, +20645,22nd St Trolley Station,39.953962,-75.176736,,,1, +20646,19th St Trolley Station,39.953327,-75.171637,,,1, +20658,33rd St Trolley Station,39.95488,-75.189676,,,1, +20659,15th St Trolley Station,39.952672,-75.165345,,,1, +20660,19th St Trolley Station,39.953425,-75.171483,,,1, +20661,22nd St Trolley Station,39.954051,-75.176571,,,1, +20662,30th St Trolley Station ,39.954894,-75.183169,,,1, +20663,Lancaster Av & 38th St,39.96024,-75.196721,,,1, +20664,36th St & Market St,39.956058,-75.194113,,,1, +20665,36th St & Lancaster Av,39.958493,-75.193597,,,1, +20667,Lancaster Av & Hamilton St,39.96127,-75.19869,,,1, +20668,Lancaster Av & Spring Garden St,39.961923,-75.199952,,,1, +20669,Lancaster Av & Haverford Av,39.9629,-75.201826,,,1, +20670,Lancaster Av & Wallace St,39.963857,-75.203371,,,1, +20671,Lancaster Av & 41st St,39.965102,-75.205386,,,1, +20672,Lancaster Av & 42nd St,39.966399,-75.207485,,,1, +20673,Lancaster Av & Parrish St,39.96767,-75.20956,,,1, +20674,Lancaster Av & Ogden St,39.968565,-75.210998,,,1, +20675,Lancaster Av & Westminster St,39.969478,-75.212507,,,1, +20676,Lancaster Av & Wyalusing Av,39.970669,-75.214464,,,1, +20677,Lancaster Av & 47th St,39.971564,-75.215938,,,1, +20678,Lancaster Av & 49th St,39.973757,-75.21957,,,1, +20679,Lancaster Av & 50th St,39.975234,-75.222389,,,1, +20681,Lancaster Av & 52nd St,39.977213,-75.226683,,,1,0 +20683,Lansdowne Av & 54th St,39.977129,-75.229755,,,1, +20684,Lansdowne Av & 55th St,39.976927,-75.231704,,,1, +20685,Lansdowne Av & 56th St,39.976707,-75.233607,,,1, +20686,Lansdowne Av & 57th St,39.976522,-75.235249,,,1, +20687,Lansdowne Av & 58th St,39.976363,-75.23675,,,1, +20688,Lansdowne Av & 59th St,39.97617,-75.238499,,,1, +20689,Lansdowne Av & 60th St,39.975976,-75.240153,,,1, +20690,Lansdowne Av & 61st St,39.975809,-75.241725,,,1, +20691,Lansdowne Av & 62nd St,39.975615,-75.243497,,,1, +20692,63rd St & Lansdowne Av - FS,39.975582,-75.245529,,,1, +20693,63rd St & Jefferson St,39.978234,-75.24603,,,1, +20695,63rd St & Columbia Av ,39.980582,-75.246461,,,1, +20696,63rd St & Malvern Av,39.983519,-75.247021,,,1, +20697,Main St & Summit St ,39.918159,-75.257539,,,1, +20698,Main St & 6th St,39.917791,-75.255852,,,1, +20699,Main St & 5th St,39.917504,-75.254613,,,1, +20700,Main St & 4th St,39.917144,-75.253044,,,1, +20701,Main St & 3rd St,39.916866,-75.251841,,,1, +20702,Main St & 2nd St,39.916579,-75.250567,,,1, +20703,Main St & Front St ,39.916363,-75.24921,,,1, +20704,Woodland Av & Island Av ,39.917099,-75.246376,,,1, +20705,Woodland Av & 72nd St ,39.918432,-75.244412,,,1, +20706,Woodland Av & 71st St ,39.919361,-75.243077,,,1, +20707,Woodland Av & 70th St ,39.920483,-75.24148,,,1, +20708,Woodland Av & 69th St ,39.921463,-75.240097,,,1, +20709,Woodland Av & 68th St ,39.922621,-75.238441,,,1, +20710,Woodland Av & 67th St ,39.923689,-75.236927,,,1, +20711,Woodland Av & 66th St ,39.924615,-75.235614,,,1, +20712,Woodland Av & 65th St ,39.925479,-75.234396,,,1, +20713,Woodland Av & 64th St ,39.926352,-75.233142,,,1, +20714,Woodland Av & 63rd St ,39.927314,-75.231782,,,1, +20715,Woodland Av & 62nd St ,39.928053,-75.23073,,,1, +20716,Woodland Av & 60th St ,39.930217,-75.227642,,,1, +20717,Woodland Av & 61st St ,39.929041,-75.229287,,,1, +20718,Woodland Av & 58th St ,39.932309,-75.224673,,,1, +20719,Woodland Av & 57th St ,39.933297,-75.223289,,,1, +20720,Woodland Av & 56th St ,39.934339,-75.22181,,,1, +20721,Woodland Av & 55th St ,39.935292,-75.22045,,,1, +20722,Woodland Av & 54th St ,39.936262,-75.219054,,,1, +20723,Woodland Av & 52nd St ,39.938203,-75.216297,,,1, +20724,Woodland Av & 51st St ,39.938987,-75.215197,,,1, +20725,Woodland Av & 50th St ,39.939886,-75.213907,,,1, +20726,Woodland Av & 48th St,39.941953,-75.211728,,,1, +20727,Woodland Av & 46th St,39.944323,-75.209797,,,1, +20728,Woodland Av & 45th St,39.94541,-75.208565,,,1, +20729,Woodland Av & 42nd St,39.946675,-75.207121,,,1, +20730,Woodland Av & 40th St,39.94915,-75.203198,,,1, +20731,37th St Trolley Station,39.950914,-75.197247,,,1, +20732,36th St Trolley Station,39.953854,-75.194533,,,1, +20733,36th St Trolley Station,39.953872,-75.19471,,,1, +20734,37th St Trolley Station ,39.951048,-75.197306,,,1, +20735,Woodland Av & 41st St,39.948055,-75.205593,,,1, +20736,Woodland Av & 42nd St,39.946987,-75.206907,,,1, +20737,Woodland Av & 43rd St,39.945767,-75.20834,,,1, +20739,Woodland Av & 46th St,39.944537,-75.209725,,,1, +20740,Woodland Av & 48th St,39.942176,-75.211716,,,1, +20741,Woodland Av & 51st St,39.939192,-75.215102,,,1, +20742,Woodland Av & 52nd St,39.938408,-75.216214,,,1, +20743,Woodland Av & 53rd St,39.937438,-75.217598,,,1, +20744,Woodland Av & 54th St ,39.936485,-75.218947,,,1, +20745,Woodland Av & 55th St ,39.935524,-75.220308,,,1, +20746,Woodland Av & 56th St ,39.934553,-75.221703,,,1, +20747,Woodland Av & 57th St ,39.933485,-75.223218,,,1, +20748,Woodland Av & 58th St ,39.932532,-75.224555,,,1, +20749,Woodland Av & 60th St ,39.93044,-75.227559,,,1, +20750,Woodland Av & 61st St ,39.929264,-75.229215,,,1, +20751,Woodland Av & 63rd St ,39.927519,-75.231675,,,1, +20752,Woodland Av & 64th St ,39.926557,-75.233047,,,1, +20753,Woodland Av & 65th St ,39.925684,-75.234289,,,1, +20754,Woodland Av & 66th St ,39.924803,-75.235531,,,1, +20755,Woodland Av & 67th St ,39.923886,-75.236856,,,1, +20756,Woodland Av & 68th St ,39.922817,-75.23837,,,1, +20757,Woodland Av & 69th St ,39.921641,-75.240037,,,1, +20758,Woodland Av & 70th St ,39.920688,-75.241397,,,1, +20759,Woodland Av & 71st St ,39.919584,-75.242958,,,1, +20760,Woodland Av & 72nd St ,39.918622,-75.244342,,,1, +20761,Main St & Front St ,39.916451,-75.248915,,,1, +20762,Main St & 2nd St ,39.916614,-75.250319,,,1, +20763,Main St & 3rd St ,39.916892,-75.251534,,,1, +20764,Main St & 4th St ,39.917171,-75.252737,,,1, +20765,Main St & 5th St ,39.91753,-75.254295,,,1, +20766,Main St & 6th St ,39.917808,-75.255486,,,1, +20767,Main St & Summit St ,39.91815,-75.25709,,,1, +20768,9th St & Ridge Av ,39.919921,-75.260545,,,1, +20770,9th St & Summit Av ,39.921142,-75.258866,,,1, +20771,9th St & Summit Av - MBFS,39.921944,-75.257849,,,1, +20772,9th St & Cedar Av ,39.922566,-75.255994,,,1, +20773,Chester Av & Alfred Av ,39.923697,-75.254279,,,1, +20774,Chester Av & Allen Dr Yeadon Loop,39.924525,-75.252542,,,1, +20775,Chester Av & Stetser Av ,39.925102,-75.250817,,,1, +20776,Chester Av & Duncan Av ,39.925617,-75.249175,,,1, +20777,Chester Av & Yeadon Av ,39.92607,-75.247486,,,1, +20778,Chester Av & Church Ln,39.92631,-75.246565,,,1, +20779,Chester Av & 65th St - West,39.929359,-75.244762,,,1, +20780,65th St & Cobbs Creek Pkwy ,39.929482,-75.243452,,,1, +20781,65th St & Belmar Av ,39.92905,-75.24108,,,1, +20782,65th St & Chester Av - East,39.928628,-75.238897,,,1, +20784,Kingsessing Av & 61st St ,39.931045,-75.232386,,,1, +20785,Kingsessing Av & 62nd St ,39.929994,-75.233888,,,1, +20786,Kingsessing Av & 60th St ,39.932479,-75.230316,,,1, +20787,60th St & Chester Av ,39.933632,-75.231399,,,1, +20788,Chester Av & 59th St ,39.934754,-75.229944,,,1, +20789,Chester Av & 48th St ,39.944958,-75.215344,,,1, +20790,Chester Av & 47th St ,39.945901,-75.213984,,,1, +20791,Chester Av & 57th St ,39.936642,-75.227187,,,1, +20792,Chester Av & 56th St ,39.937701,-75.225661,,,1, +20793,Chester Av & 55th St ,39.938654,-75.224301,,,1, +20794,Chester Av & 54th St ,39.939607,-75.222952,,,1, +20795,Chester Av & 53rd St ,39.940577,-75.221556,,,1, +20796,Chester Av & 52nd St ,39.941539,-75.220184,,,1, +20797,Chester Av & 51st St ,39.942349,-75.219048,,,1, +20799,Chester Av & 46th St ,39.946827,-75.212682,,,1, +20800,Chester Av & 45th St ,39.9477,-75.211428,,,1, +20801,Chester Av & 43rd St ,39.948356,-75.209135,,,1, +20802,Chester Av & 42nd St ,39.948424,-75.207151,,,1, +20803,Chester Av & 41st St ,39.948466,-75.205757,,,1, +20804,40th St Trolley Portal,39.949533,-75.203345,,,1, +20805,Woodland Av & Chester Av,39.948599,-75.204977,,,1, +20807,Chester Av & 42nd St ,39.948549,-75.206879,,,1, +20808,Chester Av & 43rd St ,39.948481,-75.208945,,,1, +20809,Chester Av & 45th St,39.947878,-75.211403,,,1, +20810,Chester Av & 46th St,39.947006,-75.212658,,,1, +20811,Chester Av & 47th St,39.94608,-75.213959,,,1, +20812,Chester Av & 48th St,39.945154,-75.215285,,,1, +20814,Chester Av & 51st St,39.942519,-75.219012,,,1, +20815,Chester Av & 52nd St,39.941726,-75.220124,,,1, +20816,Chester Av & 53rd St,39.940764,-75.221485,,,1, +20817,Chester Av & 54th St,39.939785,-75.222893,,,1, +20818,Chester Av & 55th St,39.938832,-75.224253,,,1, +20819,Chester Av & 56th St,39.937871,-75.225625,,,1, +20820,Chester Av & 57th St,39.936802,-75.227163,,,1, +20821,Chester Av & 59th St ,39.93495,-75.229849,,,1, +20822,Chester Av & 60th St ,39.933784,-75.231469,,,1, +20823,60th St & Kingsessing Av,39.932595,-75.230339,,,1, +20824,Kingsessing Av & 61st St,39.93125,-75.232291,,,1, +20825,Kingsessing Av & 62nd St,39.9302,-75.233793,,,1, +20826,Kingsessing Av & 65th St,39.927982,-75.236963,,,1, +20827,65th St & Chester St - East,39.92893,-75.238223,,,1, +20828,65th St & Windsor St ,39.929266,-75.241717,,,1, +20829,65th St & Cobbs Creek Pkwy ,39.929535,-75.243133,,,1, +20831,Chester Av & Church Ln,39.926577,-75.246044,,,1, +20833,Chester Av & Duncan Av ,39.92576,-75.249045,,,1, +20834,Chester Av & Stetser Av ,39.925245,-75.250699,,,1, +20835,Chester Av & Alfred Av ,39.923875,-75.254161,,,1, +20836,Chester Av & Cedar Av ,39.923012,-75.255946,,,1, +20838,10th St & Mulberry Av ,39.923621,-75.257349,,,1, +20839,10th St & Wycombe Av ,39.923096,-75.258471,,,1, +20840,10th St & Summit St,39.922553,-75.259641,,,1, +20841,10th St & Ridge Av ,39.921306,-75.261462,,,1, +20843,65th St & Kingsessing Av ,39.927902,-75.23714,,,1, +20844,Frankford Transportation Center - Rts 3&5 dropoff,40.022565,-75.078347,,31033,1, +20845,69th St Transportation Center - MFL WB,39.962436,-75.258555,,31034,2,1 +20846,Park Av & Moreland Rd,40.143183,-75.11915,,,1, +20847,2200 Byberry Rd,40.161867,-75.082472,,,1,0 +20849,Tri State Mall,39.816341,-75.448893,,,1, +20850,Cedarbrook Plaza Stop - 1 ,40.081737,-75.168997,,,1, +20851,Fox Chase Loop ,40.076654,-75.085523,,,1, +20854,Montgomery County Correctional Facility,40.158829,-75.422123,,,1, +20855,8th St & Spring Garden St ,39.961639,-75.151872,,,1, +20856,Roosevelt Blvd & Broad St,40.018173,-75.149088,,,1, +20859,Baltimore Av & 60th St,39.944299,-75.244429,,,1, +20860,Baltimore Av & 59th St,39.945232,-75.241805,,,1, +20861,Baltimore Av & 58th St,39.945783,-75.240304,,,1, +20862,Baltimore Av & 57th St,39.946386,-75.237327,,,1, +20863,Baltimore Av & 56th St,39.946785,-75.235602,,,1, +20864,Baltimore Av & 55th St,39.947246,-75.233746,,,1, +20865,Baltimore Av & 54th St,39.947742,-75.231466,,,1, +20866,Baltimore Av & 53rd St,39.947766,-75.229612,,,1, +20867,Baltimore Av & 52nd St,39.947727,-75.22751,,,1, +20868,Baltimore Av & 51st St,39.947715,-75.225456,,,1, +20869,Baltimore Av & 50th St,39.947872,-75.223377,,,1, +20870,Baltimore Av & 48th St,39.948329,-75.21929,,,1, +20871,Baltimore Av & 47th St,39.94854,-75.217188,,,1, +20872,Baltimore Av & 46th St,39.948786,-75.215061,,,1, +20873,Baltimore Av & 45th St,39.949006,-75.213018,,,1, +20874,Baltimore Av & 44th St,39.949181,-75.21127,,,1, +20875,Baltimore Av & 43rd St,39.949481,-75.20932,,,1, +20876,Baltimore Av & 42nd St,39.949736,-75.207265,,,1, +20877,Baltimore Av & 41st St,39.949761,-75.205859,,,1, +20878,Baltimore Av & 41st St,39.949885,-75.205658,,,1, +20879,Baltimore Av & 42nd St,39.949852,-75.207005,,,1, +20880,Baltimore Av & 43rd St,39.949641,-75.209154,,,1, +20881,Baltimore Av & 44th St,39.949332,-75.211092,,,1, +20882,Baltimore Av & 45th St,39.949148,-75.212828,,,1, +20883,Baltimore Av & 46th St,39.948937,-75.214884,,,1, +20884,Baltimore Av & 47th St,39.948691,-75.21701,,,1, +20885,Baltimore Av & 48th St,39.948472,-75.219101,,,1, +20886,Baltimore Av & 50th St,39.948041,-75.223199,,,1, +20887,Baltimore Av & 51st St,39.94783,-75.225266,,,1, +20888,Baltimore Av & 52nd St,39.947842,-75.227309,,,1, +20889,Baltimore Av & 53rd St,39.947846,-75.229317,,,1, +20890,Baltimore Av & 54th St,39.947866,-75.231111,,,1, +20891,Baltimore Av & 55th St,39.947442,-75.233522,,,1, +20892,Baltimore Av & 56th St,39.946936,-75.235519,,,1, +20893,Baltimore Av & 57th St,39.946431,-75.237763,,,1, +20894,Baltimore Av & 58th St,39.945926,-75.240221,,,1, +20895,Baltimore Av & 59th St,39.945411,-75.241698,,,1, +20896,Baltimore Av & 60th St,39.944468,-75.244322,,,1, +20897,49th St & Paschall Av,39.93998,-75.211652,,,1, +20899,Grays Av & Lindbergh Blvd,39.936128,-75.213682,,,1, +20900,Lindbergh Blvd & Grays Av - FS,39.935282,-75.214429,,,1, +20901,Lindbergh Blvd & 54th St,39.933588,-75.215579,,,1, +20902,Elmwood Av & 56th St,39.931173,-75.217711,,,1, +20903,Elmwood Av & 57th St,39.930131,-75.219202,,,1, +20904,Elmwood Av & 58th St,39.929152,-75.220539,,,1, +20905,Elmwood Av & 59th St,39.928226,-75.221958,,,1, +20906,Elmwood Av & Edgewood Av,39.926935,-75.22385,,,1, +20907,Elmwood Av & 61st St,39.926241,-75.224844,,,1, +20908,Elmwood Av & 62nd St,39.925065,-75.226441,,,1, +20909,Elmwood Av & 63rd St,39.924157,-75.227671,,,1, +20910,Elmwood Av & 64th St,39.923204,-75.229067,,,1, +20911,Elmwood Av & 65th St,39.922305,-75.230285,,,1, +20912,Elmwood Av & 66th St,39.921432,-75.231562,,,1, +20913,Elmwood Av & 67th St,39.920524,-75.23284,,,1, +20914,Elmwood Av & 68th St,39.919446,-75.234401,,,1, +20915,Elmwood Av & 69th St,39.918297,-75.236056,,,1, +20916,Elmwood Av & 70th St,39.917327,-75.237428,,,1, +20917,Elmwood Av & 71st St,39.916249,-75.238965,,,1, +20918,Elmwood Av & 72nd St,39.915305,-75.240349,,,1, +20919,Elmwood Av & Island Av,39.913168,-75.243282,,,1, +20920,Island Av & Buist Av - FS,39.911195,-75.242744,,,1, +20921,Island Av & Tanager St,39.909132,-75.2421,,,1, +20922,Island Av & 76th St,39.907391,-75.24155,,,1, +20923,Island Av & Lindbergh Blvd - FS,39.903855,-75.240403,,,1, +20925,Woodland Av & Chester Av,39.948492,-75.204966,,,1, +20927,Island Av & Lindbergh Blvd - FS,39.904257,-75.240461,,,1, +20928,Island Av & 76th St,39.907284,-75.241432,,,1, +20929,Island Av & Tanager St - FS,39.90915,-75.242029,,,1, +20930,Island Av & Buist Av,39.911186,-75.242661,,,1, +20931,Elmwood Av & Island Av - MBFS,39.913266,-75.242998,,,1, +20932,Elmwood Av & 73rd St,39.914129,-75.241816,,,1, +20933,Elmwood Av & 72nd St,39.9151,-75.240408,,,1, +20934,Elmwood Av & 71st St,39.91608,-75.239013,,,1, +20935,Elmwood Av & 70th St,39.91713,-75.237452,,,1, +20936,Elmwood Av & 69th St,39.918101,-75.236081,,,1, +20937,Elmwood Av & 68th St,39.91925,-75.234425,,,1, +20938,Elmwood Av & 67th St,39.920327,-75.232911,,,1, +20939,Elmwood Av & 66th St,39.921236,-75.231587,,,1,0 +20940,Elmwood Av & 65th St,39.922082,-75.230404,,,1, +20941,Elmwood Av & 64th St,39.922972,-75.229126,,,1, +20942,Elmwood Av & 63rd St,39.923934,-75.227778,,,1, +20943,Elmwood Av & 62nd St,39.924842,-75.22656,,,1, +20944,Elmwood Av & 61st St,39.926044,-75.224868,,,1, +20945,Elmwood Av & Edgewood St,39.926739,-75.223875,,,1, +20946,Elmwood Av & 59th St,39.928039,-75.221994,,,1, +20947,Elmwood Av & 58th St,39.928964,-75.220586,,,1, +20948,Elmwood Av & 57th St,39.929935,-75.219226,,,1, +20949,Elmwood Av & 56th St,39.930986,-75.217747,,,1, +20950,Lindbergh Blvd & Wheeler St,39.932402,-75.216232,,,1, +20951,Lindbergh Blvd & 54th St,39.9334,-75.215532,,,1, +20952,Lindbergh Blvd & 53rd St,39.935121,-75.214358,,,1, +20953,Grays Av & 52nd St,39.936163,-75.213399,,,1, +20954,Grays Av & 51st St,39.936991,-75.212251,,,1, +20955,49th St & Paschall Av,39.939819,-75.211286,,,1, +20957,49th St & Woodland Av,39.940794,-75.212429,,,1, +20958,Woodland Av & 47th St,39.943245,-75.210839,,,1, +20959,Broad St & Oregon Av ,39.916387,-75.171274,,,1, +20960,Broad St & Oregon Av - FS,39.916307,-75.171617,,,1, +20961,2nd St & Market St ,39.950027,-75.143769,,,1, +20962,20th St & JFK Blvd,39.954669,-75.173026,,,1, +20965,Fern Rock Transportation Center - BSL,40.04185,-75.136745,,,1,1 +20966,Girard Station - BSL,39.971464,-75.159441,,,1, +20967,Oregon Station - BSL,39.916789,-75.171367,,,1,1 +20968,Juniper St & Commerce St,39.952799,-75.162499,,,1, +20970,Chestnut St & 3rd St,39.948587,-75.146148,,,1, +20971,Chestnut St & 2nd St,39.948333,-75.1442,,,1, +20972,Walnut St & 3rd St - FS,39.947187,-75.146567,,,1, +20973,Walnut St & 4th St - MBFS,39.947432,-75.148455,,,1, +20974,2nd St & Walnut St,39.946959,-75.144466,,,1, +20975,2nd St & Chestnut St,39.948484,-75.144129,,,1, +20978,Girard Av & Front St,39.96885,-75.136264,,,1,0 +20979,Belgrade St & Clearfield St - detour,39.985111,-75.106768,,,1, +20980,Belgrade St & Indiana Av - detour,39.984045,-75.108804,,,1, +20981,Belgrade St & Birch St - FS detour,39.982979,-75.110829,,,1, +20982,Belgrade St & Cambria St - detour,39.98242,-75.111907,,,1, +20983,Belgrade St & Lehigh Av - detour,39.980217,-75.116099,,,1, +20984,Belgrade St & Huntingdon St - detour,39.978964,-75.118514,,,1, +20986,Girard Av & Berks St,39.971869,-75.125833,,,1, +20988,Girard Av & Palmer St,39.970983,-75.1284,,,1, +20989,Girard Av & Columbia Av,39.970265,-75.130423,,,1, +20991,Girard Av & Frankford Av,39.968891,-75.134397,,,1, +20993,Girard Av & 2nd St,39.9695,-75.13945,,,1, +20994,Girard Av & 3rd St,39.969799,-75.141386,,,1, +20995,Girard Av & 4th St,39.96999,-75.142968,,,1, +20996,Girard Av & 5th St,39.970218,-75.144905,,,1, +20998,Girard Av & 7th St,39.970484,-75.148022,,,1, +20999,Girard Av & 8th St,39.970568,-75.149853,,,1, +21001,Girard Av & 11th St,39.970845,-75.154021,,,1, +21002,Girard Av & 12th St,39.971045,-75.155603,,,1, +21005,Girard Av & 16th St,39.971908,-75.162605,,,1, +21006,Girard Av & 17th St,39.972116,-75.164151,,,1, +21008,Girard Av & Ridge Av,39.97238,-75.166217,,,1, +21009,Girard Av & 20th St,39.972715,-75.168874,,,1, +21010,Girard Av & Corinthian Av,39.972888,-75.17022,,,1, +21014,Poplar St & 25th St,39.972492,-75.177403,,,1, +21016,Girard Av & 26th St ,39.973976,-75.178733,,,1, +21017,Girard Av & 27th St,39.974202,-75.18028,,,1, +21018,Girard Av & 28th St,39.974375,-75.181756,,,1, +21019,Girard Av & 29th St,39.974574,-75.183361,,,1, +21021,Girard Av & 31st St,39.975009,-75.186549,,,1, +21022,Girard Av & 33rd St,39.975199,-75.188002,,,1, +21025,Girard Av & 39th St,39.974511,-75.201683,,,1, +21026,Girard Av & 41st St,39.97393,-75.206386,,,1, +21027,Girard Av & 42nd St,39.973658,-75.208797,,,1, +21028,Girard Av & Belmont Av,39.973315,-75.212094,,,1, +21030,Girard Av & 49th St,39.972917,-75.219064,,,1, +21032,Girard Av & 51st St,39.971987,-75.223438,,,1, +21033,Girard Av & 52nd St,39.971473,-75.22579,,,1, +21035,Girard Av & 54th St,39.971165,-75.228614,,,1, +21037,Girard Av & 56th St,39.970761,-75.232477,,,1, +21038,Girard Av & 57th St,39.970585,-75.234096,,,1, +21040,Girard Av & 60th St,39.970039,-75.238988,,,1, +21041,Haverford Av & 61st St,39.970899,-75.240781,,,1, +21042,Haverford Av & 62nd St,39.971642,-75.242704,,,1, +21044,Girard Av & Felton St,39.970217,-75.244444,,,1,0 +21047,Girard Av & 61st St,39.969801,-75.241221,,,1, +21048,Girard Av & 60th St,39.969897,-75.239366,,,1, +21050,Girard Av & 57th St,39.97046,-75.234285,,,1, +21051,Girard Av & 56th St,39.970636,-75.232667,,,1, +21053,Girard Av & 54th St,39.971041,-75.228803,,,1, +21055,Girard Av & 52nd St,39.971357,-75.225908,,,1, +21056,Girard Av & 51st St,39.971845,-75.223745,,,1, +21058,Girard Av & Lancaster Av,39.972978,-75.218521,,,1, +21060,Girard Av & Belmont Av - FS,39.973234,-75.211728,,,1, +21061,Girard Av & 42nd St,39.973542,-75.208975,,,1, +21062,Girard Av & 41st St,39.973823,-75.206528,,,1, +21063,Girard Av & 39th St,39.974297,-75.201802,,,1, +21067,Girard Av & 31st St,39.974938,-75.18675,,,1, +21068,Girard Av & 29th St,39.974494,-75.183563,,,1, +21069,Girard Av & 28th St,39.974286,-75.181945,,,1, +21070,Girard Av & 27th St,39.974113,-75.180481,,,1, +21071,Girard Av & 26th St,39.973914,-75.178922,,,1, +21072,26th St & Poplar St,39.972683,-75.179198,,,1, +21073,Poplar St & Stillman St,39.972449,-75.178159,,,1, +21075,College Av & 24th St - FS,39.97239,-75.175384,,,1, +21078,Girard Av & Corinthian Av,39.972817,-75.170421,,,1, +21079,Girard Av & 20th St,39.972636,-75.169087,,,1, +21080,Girard Av & 19th St,39.972427,-75.16754,,,1, +21081,Girard Av & Ridge Av,39.972309,-75.166572,,,1, +21082,Girard Av & 17th St,39.972028,-75.164352,,,1, +21083,Girard Av & 16th St,39.971828,-75.162806,,,1, +21086,Girard Av & 12th St,39.970965,-75.155816,,,1, +21087,Girard Av & 11th St,39.970756,-75.154222,,,1, +21090,Girard Av & 8th St,39.97047,-75.150042,,,1, +21091,Girard Av & 7th St,39.970386,-75.148211,,,1, +21093,Girard Av & 5th St,39.970129,-75.145094,,,1, +21095,Girard Av & 3rd St,39.969711,-75.141599,,,1, +21096,Girard Av & 2nd St,39.969438,-75.13964,,,1, +21098,Girard Av & Frankford Av- FS,39.968855,-75.134244,,,1, +21100,Girard Av & Columbia Av,39.970122,-75.130542,,,1, +21101,Girard Av & Palmer St,39.97084,-75.128519,,,1, +21103,Girard Av & Berks St,39.971709,-75.125999,,,1, +21107,Richmond St & Huntingdon St - detour,39.977185,-75.117305,,,1, +21108,Richmond St & Lehigh Avt - detour,39.978473,-75.114842,,,1, +21109,Richmond St & Somerset St - detour,39.979726,-75.112439,,,1, +21110,Richmond St & Monmouth St - detour,39.98112,-75.109833,,,1, +21111,Richmond St & Ann St - detour,39.9816,-75.10891,,,1, +21112,Richmond St & Elkhart St - detour,39.982541,-75.107027,,,1, +21113,Richmond St & Clementine St - detour,39.983776,-75.104718,,,1, +21114,Richmond St & Allegheny Av - detour,39.984601,-75.103072,,,1, +21117,Franklin Mills & Liberty Bell - MBFS,40.086784,-74.96586,,,1, +21118,Franklin Mills & Liberty Bell Blvd,40.088292,-74.965791,,,1, +21120,Bristol Pk & Edgewood Av,40.065374,-74.976348,,,1, +21121,Bristol Pk & Tennis Av,40.066503,-74.972651,,,1, +21122,Bristol Pk & Buttonwood Av,40.067541,-74.970811,,,1, +21124,Bristol Pk & Penn St,40.070419,-74.96709,,,1, +21127,Knights Rd & Dunks Ferry Rd - FS,40.101129,-74.954289,,,1, +21128,Knights Rd & McKinley Av - FS,40.102987,-74.952335,,,1, +21129,Knights Rd & Street Rd - FS,40.105317,-74.950154,,,1, +21130,Knights Rd & Byberry Rd,40.110804,-74.944898,,,1, +21131,Byberry Rd & Hulmeville Rd - FS,40.108351,-74.936133,,,1,0 +21132,Byberry Rd & Adams Rd,40.110028,-74.926855,,,1, +21133,Susquehanna Av & 7th St ,39.984945,-75.145342,,,1, +21134,Adams Rd & Adams Cr ,40.108612,-74.92316,,,1, +21135,Adams Rd & Ford Rd ,40.106434,-74.920844,,,1, +21136,Dauphin St & 22nd St,39.989512,-75.16899,,,1, +21138,Bridgewater Rd & Deerfield Dr ,40.105936,-74.928067,,,1, +21139,Bridgewater Rd & Winchester Rd - FS,40.102581,-74.926055,,,1, +21141,Bensalem Blvd & Roberts Rd ,40.099313,-74.919108,,,1, +21142,Bensalem Blvd & Farley Rd ,40.105695,-74.914873,,,1, +21143,Bensalem Blvd & Mt Vernon Rd - FS,40.110662,-74.911559,,,1, +21144,Bensalem Blvd & Flushing Rd ,40.114677,-74.908974,,,1, +21145,Bensalem Blvd & Gibson Rd ,40.120145,-74.905975,,,1, +21147,Newportville Rd & Hazel Rd ,40.117543,-74.902703,,,1, +21149,Ford Rd & Wharton Rd,40.121327,-74.88576,,,1, +21150,Dauphin St & Front St ,39.984745,-75.132347,,,1, +21152,Rittenhouse Cr 180,40.116751,-74.886387,,,1, +21161,Beaver St & Canal St ,40.10062,-74.85586,,,1, +21162,Beaver St & Garden St - MBNS,40.104689,-74.855496,,,1, +21163,Beaver St & 4th St - FS,40.108043,-74.855043,,,1, +21164,Beaver Dam Rd & Schumacher Dr,40.113939,-74.854179,,,1, +21165,Beaver Dam Rd & Lakeland Av,40.116231,-74.853853,,,1, +21168,Green Ln & Pacitfic Av - FS,40.120598,-74.848396,,,1, +21170,Green Ln & N Fleetwing Dr - FS,40.1296,-74.85532,,,1, +21171,Mill Creek Rd & Blue Ridge Pass - FS,40.130171,-74.863141,,,1, +21172,Bristol Oxford Valley Rd & Border Rock Rd,40.132338,-74.870783,,,1, +21173,Bristol-Oxford Valley Rd & Cinder Ln,40.136859,-74.873909,,,1, +21174,New Falls Rd & Brist Oxf Val Rd - FS,40.140757,-74.875347,,,1, +21175,Kensington Av & Allegheny Av ,39.996382,-75.113523,,,1, +21177,New Falls Rd & New Rodgers Rd,40.134389,-74.884643,,,1, +21178,New Falls Rd & Durham Rd,40.132242,-74.887737,,,1, +21179,Durham Rd & S Tanglewood Dr - FS,40.133319,-74.889067,,,1, +21181,Durham Rd & Frosty Hollow Rd - FS,40.143756,-74.891842,,,1, +21182,Durham Rd & Sandybrook Dr - MBNS,40.151224,-74.895172,,,1, +21184,Durham Rd & Delaware Av,40.158192,-74.903008,,,1, +21187,Lincoln Hwy & Highland Pk Wy - FS,40.167688,-74.8964,,,1, +21188,Lincoln Hwy & Highland Pk Wy - MBFS,40.169836,-74.893553,,,1, +21190,2nd St & Girard Av ,39.96959,-75.139627,,,1,0 +21191,Broad St & Olney Av - layover,40.03844,-75.144563,,31037,1, +21193,Nedro Av & 11th St,40.042158,-75.138719,,,1, +21194,Broad St & Allegheny Av,40.001661,-75.152945,,,1, +21198,Hunting Park Av & Pacific St,40.010159,-75.166161,,,1, +21199,Comly Rd & Brandon Rd,40.09252,-74.987287,,,1, +21200,Roosevelt Blvd & Grant Av,40.080555,-75.028518,,,1, +21201,Grays Av & 49th St,39.938559,-75.210239,,,1, +21202,Woodland Av & 47th St,39.943451,-75.210838,,,1, +21204,Frankford Transportation Center - Main Dropoff,40.023329,-75.077374,,31033,1,0 +21208,Woodland Av & 53rd St,39.937242,-75.217681,,,1, +21209,65th St & Chester Av - West,39.929565,-75.244703,,,1, +21211,Frankford Transportation Center - Rts 8 & 26,40.024224,-75.078091,,31033,1,0 +21212,Moyamensing Av & 19th St ,39.914306,-75.17952,,,1, +21213,16th St & Market St ,39.952639,-75.166798,,,1, +21215,Art Museum Dr & Kelly Dr - MBFS,39.966526,-75.180035,,,1, +21217,Main St & Forrest Av,40.123564,-75.362715,,,1, +21218,Alan Wood Rd & Ridge Pk - MBFS,40.100533,-75.301665,,,1, +21219,Easton Rd & Cheltenham Av - MBNS,40.083017,-75.170838,,,1, +21220,Cheltenham Av & Ogontz Av ,40.074235,-75.15858,,,1, +21221,Old York Rd & Stenton Av,40.048786,-75.144971,,,1, +21222,Chestnut Hill Loop,40.077715,-75.208298,,,1, +21224,Germantown Av & Broad St,40.010073,-75.151164,,,1, +21225,Cumberland St & Richmond St,39.974296,-75.118227,,,1, +21227,8th St & Mifflin St,39.925599,-75.159283,,,1, +21228,Chelten Av & Chew Av - FS,40.045375,-75.165027,,,1, +21229,Midvale Av & Ridge Av ,40.009072,-75.193915,,,1, +21230,University Av & Curie Blvd,39.947641,-75.198533,,,1, +21232,Lyceum Av & Ridge Av - FS,40.032663,-75.214928,,,1,0 +21245,Passyunk Av & 20th St,39.923731,-75.179546,,,1, +21248,40th St & Market St,39.957259,-75.202021,,,1, +21249,Lombard St & 2nd St - MBFS,39.942349,-75.14635,,,1, +21253,8th St & Oregon Av,39.915706,-75.161409,,,1,0 +21254,9th St & Oregon Av - FS,39.915976,-75.162801,,,1, +21256,49th St & Woodland Av,39.940866,-75.212759,,,1, +21257,54th St & Chester Av,39.93958,-75.222775,,,1, +21260,Erie Av & Broad St,40.009199,-75.151356,,,1,0 +21261,Erie Av & Germantown Av ,40.009233,-75.150671,,,1,0 +21262,Somerset St & Kensington Av,39.991415,-75.122371,,,1, +21263,Welsh Rd & Blair Mill Rd - MBNS 2,40.156502,-75.142209,,,1, +21265,Washington Av & 20th St ,39.939093,-75.176187,,,1, +21266,Westminster Av & 46th St ,39.969356,-75.213748,,,1, +21267,Washington Av & 20th St ,39.938995,-75.176399,,,1, +21268,Cottman Av & Whitaker Av,40.057369,-75.076923,,,1, +21269,Broad St & Constitution Av ,39.891443,-75.176095,,,1, +21270,Broad St & Intrepid Av,39.894166,-75.176369,,,1, +21271,Broad St & Kitty Hawk Av ,39.890149,-75.175923,,,1, +21277,Flagship Dr & 13th St ,39.888912,-75.173509,,,1, +21278,Flagship Dr & 11th St ,39.88911,-75.16965,,,1, +21279,11th St & Kitty Hawk Av,39.890449,-75.169668,,,1,0 +21283,Pattison Av & 20th St - MBNS,39.906203,-75.179454,,,1, +21284,20th St & Reserve Dr,39.907923,-75.183059,,,1, +21285,20th St & Hartranft St ,39.909119,-75.182784,,,1, +21286,20th St & Geary St ,39.910385,-75.182449,,,1, +21287,20th St & Packer Av ,39.912687,-75.181969,,,1, +21288,20th St & Moyamensing Av - FS,39.913383,-75.181825,,,1, +21289,20th St & Oregon Av ,39.917906,-75.180865,,,1, +21290,20th St & Shunk St ,39.919333,-75.180529,,,1, +21291,20th St & Porter St ,39.920528,-75.180266,,,1, +21292,20th St & Ritner St ,39.921795,-75.179978,,,1, +21293,20th St & Passyunk Av ,39.923552,-75.179594,,,1, +21294,20th St & Jackson St ,39.924284,-75.17945,,,1, +21295,20th St & Snyder Av,39.925488,-75.179198,,,1, +21296,20th St & McKean St ,39.926728,-75.178922,,,1, +21297,20th St & Mifflin St ,39.927942,-75.178646,,,1, +21298,20th St & Moore St ,39.929164,-75.178382,,,1, +21299,20th St & Morris St ,39.930413,-75.178118,,,1, +21300,20th St & Tasker St ,39.931608,-75.177854,,,1, +21301,20th St & Dickinson St ,39.932812,-75.177602,,,1, +21302,20th St & Reed St ,39.934052,-75.177326,,,1, +21303,20th St & Wharton St ,39.935275,-75.177062,,,1, +21304,20th St & Federal St ,39.937184,-75.176642,,,1, +21305,20th St & Ellsworth St ,39.937969,-75.176486,,,1, +21306,20th St & Carpenter St ,39.940136,-75.175994,,,1, +21307,20th St & Christian St ,39.941109,-75.17579,,,1, +21308,20th St & Catherine St ,39.941885,-75.17561,,,1, +21309,20th St & Fitzwater St ,39.942866,-75.17537,,,1, +21310,20th St & Bainbridge St ,39.943847,-75.175166,,,1, +21311,20th St & South St ,39.944731,-75.174974,,,1, +21312,20th St & Lombard St ,39.945739,-75.17477,,,1, +21313,20th St & Pine St ,39.946622,-75.17459,,,1, +21314,20th St & Spruce St ,39.948076,-75.174277,,,1, +21315,20th St & Locust St ,39.949271,-75.174013,,,1, +21316,20th St & Chestnut St,39.951957,-75.173425,,,1, +21317,20th St & Market St ,39.953437,-75.173125,,,1, +21318,Market St & 3rd St,39.950103,-75.145835,,,1, +21319,19th St & JFK Blvd - FS,39.954193,-75.171492,,,1, +21320,19th St & Market St ,39.953095,-75.17172,,,1, +21321,19th St & Catherine St ,39.9419,-75.174146,,,1, +21322,19th St & Christian St ,39.941088,-75.174314,,,1, +21323,19th St & Carpenter St ,39.940116,-75.174518,,,1, +21324,19th St & Ellsworth St ,39.93793,-75.174998,,,1, +21325,19th St & Federal St ,39.937109,-75.17519,,,1, +21326,19th St & Wharton St ,39.935272,-75.175586,,,1, +21327,19th St & Reed St ,39.934049,-75.17585,,,1, +21328,19th St & Dickinson St ,39.932845,-75.176126,,,1, +21329,19th St & Tasker St ,39.931605,-75.17639,,,1, +21330,19th St & Morris St ,39.930374,-75.176642,,,1, +21331,19th St & Moore St ,39.92917,-75.176918,,,1, +21332,19th St & Mifflin St ,39.927947,-75.177147,,,1, +21333,19th St & McKean St ,39.926716,-75.177411,,,1, +21334,19th St & Snyder St ,39.925512,-75.177698,,,1, +21335,19th St & Passyunk Av ,39.924317,-75.177974,,,1, +21336,19th St & Wolf St,39.923041,-75.17825,,,1, +21337,19th St & Ritner St,39.921783,-75.178514,,,1, +21338,19th St & Porter St,39.920561,-75.17879,,,1, +21339,19th St & Shunk St,39.919285,-75.179066,,,1, +21340,19th St & Oregon Av ,39.918019,-75.179342,,,1, +21341,19th St & Johnston St ,39.916609,-75.179654,,,1, +21342,20th St & Penrose Av,39.91324,-75.182097,,,1, +21343,20th St & Geary St,39.910582,-75.182696,,,1, +21344,20th St & Hartranft St ,39.90936,-75.182901,,,1, +21345,20th St & Reserve Dr,39.908138,-75.183165,,,1, +21346,Oregon Av & 20th St ,39.918137,-75.180734,,,1, +21347,Pattison Av & 20th St - MBFS,39.906077,-75.179289,,,1, +21349,11th St & Zinkoff Blvd - FS,39.902549,-75.169094,,,1, +21351,Market St & Marlborough Rd,39.962289,-75.255118,,,1, +21352,Market St & Powell Rd,39.962492,-75.253629,,,1, +21353,Chestnut St & 36th St,39.954631,-75.194554,,,1, +21354,Chestnut St & 34th St,39.954295,-75.191863,,,1, +21355,Chestnut St & 33rd St - FS,39.953978,-75.189337,,,1, +21356,Chestnut St & 32nd St,39.953779,-75.18759,,,1, +21357,Chestnut St & 31st St,39.95348,-75.185359,,,1, +21359,Walnut St & 33rd St,39.952587,-75.189932,,,1, +21360,Walnut St & 34th St,39.952841,-75.191986,,,1, +21361,Walnut St & 36th St,39.953176,-75.194665,,,1, +21362,Walnut St & 37th St,39.953421,-75.196649,,,1, +21363,Walnut St & 38th St,39.953639,-75.198573,,,1, +21364,Walnut St & 39th St,39.953856,-75.200143,,,1, +21365,Walnut St & 41st St,39.954462,-75.204994,,,1, +21366,Walnut St & 42nd St,39.95462,-75.206292,,,1, +21367,Walnut St & 43rd St,39.954892,-75.20863,,,1, +21368,Walnut St & 44th St,39.955081,-75.209975,,,1, +21369,Walnut St & 45th St,39.955268,-75.211546,,,1, +21370,Walnut St & 46th St,39.955513,-75.213529,,,1, +21371,Walnut St & 47th St,39.955757,-75.215513,,,1, +21372,Walnut St & 48th St,39.95601,-75.217531,,,1, +21374,Walnut St & 49th St,39.956255,-75.219491,,,1, +21375,Walnut St & 50th St,39.956508,-75.221463,,,1, +21376,Walnut St & 51st St,39.956743,-75.223434,,,1, +21377,Walnut St & 53rd St,39.957231,-75.227365,,,1, +21378,Walnut St & 54th St,39.957457,-75.22916,,,1, +21379,Walnut St & 55th St,39.957729,-75.231297,,,1, +21380,Walnut St & 56th St,39.957973,-75.233386,,,1, +21381,Walnut St & 57th St,39.958226,-75.235382,,,1, +21382,Walnut St & 58th St,39.95847,-75.23733,,,1, +21383,Walnut St & 59th St,39.958705,-75.239301,,,1, +21384,Walnut St & 62nd St,39.959455,-75.24524,,,1, +21385,Walnut St & 63rd St,39.959725,-75.247282,,,1, +21387,Market St & Burd Av,39.962979,-75.250853,,,1, +21388,Market St & Powell Ln,39.962608,-75.253511,,,1, +21390,Market St & Chatham Rd,39.962166,-75.256441,,,1, +21392,Lansdowne Av & 75th St,39.972158,-75.260114,,,1, +21393,Haverford Av & 68th St - FS,39.972597,-75.25462,,,1, +21394,Haverford Av & 67th St,39.972372,-75.253404,,,1, +21395,66th St & Haverford Av - FS,39.971958,-75.251515,,,1, +21396,66th St & Girard Av - FS,39.970878,-75.251246,,,1, +21397,66th St & Callowhill St,39.969656,-75.251533,,,1, +21398,Daggett St & Callowhill St - FS,39.969235,-75.250589,,,1, +21399,Vine St & 64th St,39.967527,-75.247959,,,1, +21400,Vine St & 63rd St,39.967292,-75.245976,,,1, +21401,Vine St & 62nd St,39.967021,-75.243874,,,1, +21402,Vine St & 61st St,39.966777,-75.241878,,,1, +21403,Vine St & 60th St,39.966524,-75.239918,,,1, +21404,Vine St & 58th St,39.966036,-75.235963,,,1, +21405,Vine St & 57th St,39.965783,-75.234003,,,1, +21406,Vine St & 56th St,39.965539,-75.232007,,,1, +21407,Vine St & 55th St,39.965295,-75.230036,,,1, +21408,Vine St & 54th St,39.964997,-75.227757,,,1, +21409,Vine St & 53rd St,39.964825,-75.226175,,,1, +21410,Haverford Av & 51st St,39.964211,-75.222066,,,1, +21411,Haverford Av & 50th St,39.963788,-75.220154,,,1, +21412,Haverford Av & 49th St,39.963175,-75.218299,,,1, +21413,Haverford Av & 48th St,39.962452,-75.216426,,,1, +21415,Haverford Av & 46th St,39.962527,-75.21313,,,1, +21416,Haverford Av & 44th St,39.962505,-75.210674,,,1, +21417,Haverford Av & 43rd St,39.962288,-75.209186,,,1, +21418,Haverford Av & 42nd St,39.962445,-75.206965,,,1, +21419,Haverford Av & 41st St,39.962541,-75.205654,,,1, +21420,Haverford Av & Preston St,39.962681,-75.204047,,,1, +21421,Haverford Av & 40th St,39.962812,-75.202441,,,1, +21422,40th St & Spring Garden St,39.961705,-75.202314,,,1, +21423,40th St & Baring St,39.960464,-75.202177,,,1, +21424,40th St & Powelton Av,39.959232,-75.202039,,,1, +21425,40th St & Chestnut St,39.955752,-75.202321,,,1, +21426,40th St & Walnut St,39.954208,-75.202633,,,1, +21428,42nd St & Walnut St - FS,39.954421,-75.20653,,,1, +21429,42nd St & Locust St,39.953546,-75.206721,,,1, +21430,42nd St & Spruce St,39.952342,-75.206985,,,1, +21431,42nd St & Pine St,39.951253,-75.207189,,,1, +21432,42nd St & Baltimore Av,39.949879,-75.207241,,,1, +21433,42nd St & Chester Av,39.948594,-75.207174,,,1, +21435,University Av & Baltimore Av - MBFS,39.948821,-75.199415,,,1, +21436,22nd St & Arch St ,39.955943,-75.176174,,,1, +21437,Health Sciences Dr & Civic Ctr Blvd - MBFS,39.945835,-75.196839,,,1, +21438,Civic Center Blvd & Convention Av - FS,39.948889,-75.192719,,,1, +21439,Civic Center Blvd & Osler Cir,39.947864,-75.19388,,,1, +21441,33rd St & Spruce St,39.95008,-75.191941,,,1, +21442,33rd St & Locust St,39.951241,-75.190491,,,1, +21443,33rd St & Walnut St,39.95248,-75.18998,,,1, +21445,33rd St & Market St,39.955406,-75.189438,,,1,0 +21446,JFK Blvd & Market St - FS,39.955735,-75.186956,,,1, +21447,Market St & 34th St - FS,39.955767,-75.191244,,,1,0 +21448,34th St & Chestnut St,39.954438,-75.191886,,,1, +21449,34th St & Walnut St - FS,39.952484,-75.192247,,,1, +21450,34th St & Spruce St,39.950531,-75.192643,,,1, +21451,University Av & Veterans Hosp,39.949231,-75.19939,,,1, +21452,Woodland Av & 39th St - FS,39.949727,-75.201797,,,1, +21456,42nd St & Baltimore Av,39.949709,-75.207076,,,1, +21457,42nd St & Spruce St,39.952163,-75.206867,,,1, +21458,42nd St & Locust St,39.953376,-75.206616,,,1, +21463,Market St & 38th St - FS,39.956762,-75.19835,,,1, +21464,Market St & 39th St,39.956898,-75.199507,,,1, +21465,41st St & Haverford Av,39.962505,-75.205501,,,1, +21466,Haverford Av & 42nd St,39.96256,-75.206776,,,1, +21467,Haverford Av & 43rd St,39.962395,-75.208926,,,1, +21468,Haverford Av & 44th St,39.962612,-75.210425,,,1, +21469,Haverford Av & 46th St,39.962652,-75.212917,,,1, +21470,Haverford Av & 48th St,39.962523,-75.216083,,,1, +21471,Haverford Av & 49th St,39.963187,-75.21803,,,1, +21472,Haverford Av & 50th St - FS,39.963968,-75.220386,,,1, +21473,Haverford Av & 51st St,39.964291,-75.22183,,,1, +21474,Haverford Av & 53rd St,39.965538,-75.226043,,,1, +21475,Haverford Av & 55th St,39.966946,-75.229807,,,1, +21476,Haverford Av & 56th St,39.967448,-75.231624,,,1, +21477,Haverford Av & 57th St,39.968014,-75.233595,,,1, +21478,Haverford Av & 58th St,39.968403,-75.234941,,,1, +21479,Haverford Av & 60th St,39.969861,-75.238988,,,1, +21481,Haverford Av & 63rd St,39.971904,-75.244794,,,1, +21482,Haverford Av & 64th St,39.972157,-75.246814,,,1, +21483,Haverford Av & 67th St,39.97247,-75.253191,,,1, +21484,Lansdowne Av & 75th St,39.972497,-75.259913,,,1, +21486,34th St & Market St - FS,39.955696,-75.19161,,,1, +21487,Willow Grove Av & Cheltenham Av - FS,40.088219,-75.183302,,,1,0 +21488,Haverford Av & 66th St,39.972181,-75.251385,,,1, +21489,Haverford Av & Rhoads St - FS,39.974917,-75.261254,,,1, +21490,Lansdowne Av & 66th St - FS,39.974524,-75.251806,,,1, +21491,Lansdowne Av & 65th St,39.974829,-75.249417,,,1, +21492,Lansdowne Av & 64th St,39.975023,-75.247633,,,1, +21493,Lansdowne Av & 63rd St,39.975261,-75.245719,,,1, +21494,63rd St & Media St,39.973842,-75.245345,,,1, +21495,63rd St & Callowhill St,39.968915,-75.245558,,,1, +21496,63rd St & Vine St,39.967408,-75.245869,,,1, +21497,63rd St & Race St,39.965882,-75.246192,,,1, +21498,63rd St & Arch St,39.964356,-75.246503,,,1, +21499,60th St & Race St,39.965132,-75.240217,,,1, +21500,60th St & Arch St,39.963624,-75.240505,,,1, +21501,60th St & Chestnut St,39.960537,-75.241139,,,1, +21505,46th St & Mandela Way,39.961055,-75.213359,,,1, +21506,46th St & Haverford Av - FS,39.962785,-75.212952,,,1, +21507,46th St & Fairmount Av,39.964241,-75.213137,,,1, +21508,Fairmount Av & 44th St,39.964469,-75.210892,,,1, +21509,Fairmount Av & 43rd St,39.964573,-75.209451,,,1, +21510,Fairmount Av & 42nd St,39.96473,-75.207395,,,1, +21511,Fairmount Av & 40th St,39.965106,-75.202717,,,1, +21512,Fairmount Av & 39th St,39.965387,-75.200153,,,1, +21513,Fairmount Av & 38th St,39.965632,-75.19792,,,1, +21514,Fairmount Av & 37th St,39.965799,-75.196455,,,1, +21515,37th St & Wallace St,39.964808,-75.196269,,,1, +21516,37th St & Haverford Av,39.96363,-75.19606,,,1, +21517,37th St & Spring Garden St,39.962496,-75.19584,,,1, +21518,37th St & Hamilton St,39.961755,-75.195712,,,1, +21519,Baring St & 37th St - FS,39.960906,-75.195219,,,1, +21520,Baring St & 36th St,39.961056,-75.194085,,,1, +21521,Baring St & 35th St,39.961205,-75.192749,,,1, +21522,Baring St & 34th St,39.961363,-75.191273,,,1, +21523,34th St & Powelton Av,39.960273,-75.190981,,,1, +21524,34th St & Race St,39.958836,-75.19095,,,1, +21525,34th St & Lancaster Av,39.957445,-75.191227,,,1, +21526,Market St & 33rd St,39.955567,-75.189603,,,1, +21527,Market St & 32nd St,39.955404,-75.188352,,,1, +21528,Market St & 31st St,39.955051,-75.185436,,,1, +21529,Market St & Schuylkill Av,39.954552,-75.181375,,,7, +21530,Old York Rd & 66th Av ,40.05375,-75.141805,,,1, +21531,8th St & Market St - BSL,39.951138,-75.153589,,,1,1 +21532,30th St Station - MFL,39.95485,-75.183299,,,1,1 +21534,11th St & Nedro Av - FS,40.041436,-75.139313,,,1,0 +21536,Market St & 24th St - MBFS,39.954405,-75.17938,,,7, +21537,33rd St & Arch St,39.957494,-75.189042,,,1, +21538,33rd St & Race St,39.958717,-75.189132,,,1, +21539,33rd St & Powelton Av,39.960288,-75.189351,,,1, +21540,Baring St & 33rd St - FS,39.961619,-75.189914,,,1, +21541,Baring St & 34th St,39.961505,-75.191012,,,1, +21543,Baring St & 35th St,39.961347,-75.192584,,,1, +21545,31st St & Brandywine St,39.963962,-75.187449,,,1, +21547,Mantua Av & Wallace St,39.96565,-75.188388,,,1, +21548,Mantua Av & 33rd St,39.966538,-75.190417,,,1, +21549,Mantua Av & 35th St,39.967525,-75.193638,,,1, +21550,Mantua Av & 36th St,39.9681,-75.195219,,,1, +21551,Mantua Av & 37th St,39.96854,-75.196848,,,1, +21552,Mantua Av & 38th St,39.968953,-75.198405,,,1, +21553,Parrish St & 39th St,39.968806,-75.200674,,,1, +21554,Parrish St & 40th St,39.968482,-75.203074,,,1, +21560,41st St & Ogden St,39.969127,-75.205728,,,1, +21561,41st St & Westminster Av,39.970181,-75.205784,,,1, +21563,Mantua Av & 42nd St,39.971568,-75.208355,,,1, +21564,42nd St & Girard Av,39.97347,-75.208798,,,1, +21565,41st St & Parkside Av,39.975135,-75.206607,,,1, +21566,Parkside Av & 42nd St,39.976327,-75.209285,,,1, +21568,Parkside Av & Belmont Av - MBNS,39.977565,-75.212683,,,1, +21569,Belmont Av & S Concourse Dr,39.978459,-75.213555,,,1, +21570,Belmont Av & Lansdowne Dr - FS,39.982048,-75.214572,,,1, +21571,Belmont Av & Montgomery Dr,39.985736,-75.215612,,,1, +21572,Belmont Av & Monument Rd - FS,39.995576,-75.218289,,,1, +21574,Belmont Av & Conshohocken Av,39.999817,-75.219434,,,1, +21575,Belmont Av & Ford Rd,40.002094,-75.220054,,,1, +21576,Ford Rd & Monument Rd,40.001042,-75.215496,,,1, +21577,Ford Rd & Balwynne Park Rd,40.000467,-75.213169,,,1, +21578,Ford Rd & Balwynne Park Rd - MBFS,40.000135,-75.211835,,,1, +21579,Ford Rd & Cranston Rd,39.99964,-75.209922,,,1, +21580,Cranston Rd & Conshohocken Av,40.002025,-75.21099,,,1, +21581,Conshohocken & Cranston - MBFS,40.002229,-75.210292,,,1, +21582,Conshohocken Av & W Country Club,40.002626,-75.207786,,,1, +21583,Conshohocken Av & W Cntry Club MBFS,40.002874,-75.206308,,,1, +21584,Conshohocken Av & E Cntry Club MBNS,40.003094,-75.204771,,,1, +21585,Conshohocken Av & E Country Club,40.003315,-75.203435,,,1, +21586,Conshohocken Av & E Cntry Club MBFS,40.004375,-75.20225,,,1, +21587,Falls Rd & Neill Dr,40.007364,-75.202039,,,1, +21591,Concourse Dr & E Rd ,39.978738,-75.209738,,,1, +21595,35th St & Hamilton St,39.961919,-75.192664,,,1, +21596,35th St & Spring Garden St,39.962686,-75.192745,,,1, +21602,Cheltenham Av & Frankford Av - MBNS,40.025837,-75.074028,,,1, +21603,Frankford Av & Cheltenham Av - MBFS,40.025961,-75.070564,,,1, +21604,Frankford Av & Walker St,40.026525,-75.068043,,,1, +21605,Frankford Av & Benner St ,40.026955,-75.065582,,,1, +21606,Frankford Av & Harbison Av,40.027419,-75.062589,,,1, +21607,Frankford Av & Levick St ,40.028459,-75.057962,,,1, +21608,Frankford Av & Hellerman St ,40.029373,-75.056148,,,1, +21609,Frankford Av & Magee St ,40.030538,-75.054854,,,1, +21610,Frankford Av & Unruh St ,40.031596,-75.053311,,,1, +21611,35th St & Wallace St,39.964981,-75.193174,,,1, +21612,35th St & Haverford St,39.96382,-75.192953,,,1, +21613,35th St & Fairmount Av,39.966106,-75.193395,,,1, +21614,Fairmount Av & 36th St,39.966109,-75.194836,,,1, +21615,Fairmount Av & 37th St,39.965951,-75.196277,,,1, +21616,Fairmount Av & 38th St,39.965784,-75.197742,,,1, +21617,Fairmount Av & 39th St,39.965538,-75.199975,,,1, +21619,58th St & Woodland Av - FS,39.932612,-75.224672,,,1,0 +21620,Washington Ln & Stenton Av ,40.059666,-75.165459,,,1, +21623,Washington Ln & Stenton Av ,40.059362,-75.165531,,,1, +21624,Godfrey Av & 2nd St ,40.045058,-75.123442,,,1, +21625,Stenton Av & Old Washington Ln,40.059084,-75.164538,,,1,0 +21626,Ridge Av & Midvale Av,40.008857,-75.193762,,,1, +21627,40th St & Aspen St,39.966204,-75.202749,,,1, +21628,Aspen St & Preston St,39.96625,-75.203847,,,1, +21629,Aspen St & 41st St,39.966128,-75.205454,,,1, +21630,Aspen St & Lancaster Av,39.966023,-75.206754,,,1, +21631,Aspen St & 42nd St - FS,39.965943,-75.207751,,,1, +21632,Aspen St & 43rd St,39.965832,-75.209388,,,1, +21633,Aspen St & 44th St,39.965736,-75.210829,,,1, +21634,Aspen St & 46th St,39.965526,-75.213251,,,1, +21635,46th St & Fairmount Av - FS,39.964114,-75.213312,,,1, +21636,46th St & Haverford Av - FS,39.962402,-75.21319,,,1, +21637,Farragut St & Chestnut St ,39.957219,-75.214375,,,1, +21639,Front St & York St ,39.986154,-75.13181,,,1, +21642,60th St & Chestnut St,39.960368,-75.241009,,,1, +21643,60th St & Arch St,39.963455,-75.240375,,,1, +21644,60th St & Race St,39.964962,-75.240088,,,1, +21645,60th St & Vine St,39.966488,-75.239765,,,1, +21649,63rd St & Callowhill St,39.968746,-75.245429,,,1, +21650,63rd St & Girard Av,39.970271,-75.245117,,,1, +21651,63rd St & Media St,39.973707,-75.245144,,,1, +21652,Black Rock Rd & Conshohocken State ,40.03954,-75.279853,,,1, +21653,Conshohocken State Rd & Maplecrest,40.037164,-75.277908,,,1, +21656,Hollow Rd & Conshohocken State - FS,40.031165,-75.262824,,,1, +21658,Hagys Ford Rd & Bobarn Rd - FS,40.035042,-75.259079,,,1, +21662,Lansdowne Av & 64th St,39.975139,-75.247716,,,1, +21663,Hagys Ford Rd & Bobarn Dr,40.034927,-75.259268,,,1, +21664,Lansdowne Av & 65th St,39.974963,-75.249204,,,1, +21665,Lansdowne Av & 66th St,39.974681,-75.251828,,,1, +21667,Hagys Ford Rd & Tower Ln - MBFS,40.032264,-75.256957,,,1, +21668,Hagys Ford Rd & Flat Rock Rd,40.030234,-75.254361,,,1, +21669,Conshohocken & Hagys Ford Rd - FS,40.025241,-75.257683,,,1, +21670,Sherwood Rd & Haverford Av - FS,39.977968,-75.267047,,,1, +21671,Sherwood Rd & 76th St,39.976918,-75.269175,,,1, +21672,Sherwood Rd & 77th St,39.975867,-75.271399,,,1, +21673,Conshohocken St & Centennial Rd,40.023489,-75.256068,,,1, +21674,77th St & Overbrook Av,39.976922,-75.272329,,,1, +21675,77th St & City Av,39.978235,-75.273413,,,1, +21677,Conshohocken State Rd & RockHill Rd,40.018254,-75.24029,,,1, +21678,Conshohocken State Rd & LeveringMil,40.013473,-75.236201,,,1, +21679,Conshohocken State Rd & Lodges Ln,40.010756,-75.234081,,,1, +21680,Conshohocken State Rd & Bala Av,40.007532,-75.232802,,,1, +21682,Bala Av & Union Av,40.003174,-75.231277,,,1, +21683,54th St & Overbrook Av,39.994888,-75.234136,,,1, +21684,54th St & Woodbine Av,39.992335,-75.233789,,,1, +21685,54th St & Woodcrest Av,39.99071,-75.233604,,,1, +21686,54th St & Gainor Rd,39.988995,-75.23303,,,1, +21687,54th St & Lebanon Av,39.987468,-75.232514,,,1, +21688,54th St & Berks St,39.985941,-75.231975,,,1, +21689,54th St & Upland Way,39.982575,-75.230826,,,1, +21690,54th St & Oxford St,39.981574,-75.230203,,,1, +21691,Jefferson St & Lindenwood St,39.980097,-75.227301,,,1, +21692,52nd St & Lancaster Av - FS,39.977017,-75.22692,,,1,0 +21693,52nd St & Warren St,39.976205,-75.226816,,,1, +21694,52nd St & Master St - FS,39.974107,-75.22642,,,1, +21695,52nd St & Thompson St - FS,39.97275,-75.226176,,,1, +21696,52nd St & Wyalusing Av - FS,39.969313,-75.22543,,,1, +21697,52nd St & Westminster Av - FS,39.967929,-75.225186,,,1, +21698,52nd St & Parrish St - FS,39.966411,-75.224954,,,1, +21699,52nd St & Race St,39.963153,-75.224325,,,1, +21700,52nd St & Arch St - FS,39.961404,-75.224696,,,1, +21701,52nd St & Chestnut St,39.958567,-75.225283,,,1, +21702,52nd St & Walnut St,39.957059,-75.225571,,,1, +21703,52nd St & Locust St - FS,39.955917,-75.225834,,,1, +21704,52nd St & Spruce St - FS,39.954427,-75.226133,,,1, +21705,52nd St & Pine St,39.953633,-75.226313,,,1, +21706,52nd St & Larchwood St,39.952098,-75.226612,,,1, +21707,52nd St & Cedar Av,39.950564,-75.226936,,,1, +21708,52nd St & Catherine St - FS,39.948797,-75.227318,,,1, +21709,Whitby Av & 53rd St,39.946033,-75.228696,,,1, +21710,54th St & Whitby Av - FS,39.945133,-75.229501,,,1, +21711,54th St & Willows Av,39.944158,-75.228312,,,1, +21712,54th St & Florence Av,39.942969,-75.226945,,,1, +21713,54th St & Warrington St,39.941887,-75.225661,,,1, +21714,54th St & Springfield Av,39.940724,-75.224295,,,1, +21715,54th St & Kingsessing Av,39.938659,-75.221798,,,1, +21716,Greenway Av & 54th St - FS,39.937522,-75.220018,,,1, +21717,Greenway Av & 53rd St,39.938306,-75.218883,,,1, +21718,Greenway Av & 52nd St,39.939267,-75.21751,,,1, +21719,Greenway Av & 51st St,39.940069,-75.216374,,,1, +21720,Greenway Av & 50th St,39.940959,-75.215132,,,1, +21721,52nd St & Columbia Av,39.980378,-75.224689,,,1, +21722,52nd St & Parkside Av,39.98143,-75.224037,,,1, +21723,Parkside Av & Paxon St,39.981143,-75.22262,,,1, +21724,Parkside Av & 51st St,39.980721,-75.221581,,,1, +21725,Parkside Av & 50th St,39.979923,-75.219422,,,1, +21726,Parkside Av & 49th St - FS,39.978892,-75.216637,,,1, +21727,54th St & Woodland Av - FS,39.93653,-75.219112,,,1, +21728,54th St & Greenway Av,39.93738,-75.220113,,,1, +21730,54th St & Kingsessing Av - FS,39.938739,-75.221727,,,1, +21731,54th St & Springfield Av,39.940697,-75.224035,,,1, +21732,54th St & Warrington Av,39.94186,-75.225437,,,1, +21733,54th St & Florence Av,39.942951,-75.226685,,,1, +21734,54th St & Willows Av,39.94414,-75.228052,,,1, +21735,54th St & Whitby Av,39.945258,-75.229418,,,1, +21736,Whitby Av & 53rd St,39.94581,-75.228756,,,1, +21737,52nd St & Catherine St - FS,39.949118,-75.227081,,,1, +21738,52nd St & Cedar Av - FS,39.950626,-75.226746,,,1, +21739,52nd St & Larchwood Av,39.951929,-75.226483,,,1, +21740,52nd St & Pine St - FS,39.953695,-75.226124,,,1, +21741,52nd St & Spruce St - FS,39.953695,-75.226124,,,1, +21742,52nd St & Locust St - FS,39.955979,-75.225645,,,1, +21743,52nd St & Walnut St,39.956889,-75.225441,,,1, +21744,52nd St & Arch St - FS,39.961725,-75.224459,,,1, +21745,52nd St & Race St,39.962992,-75.224196,,,1, +21746,52nd St & Parrish St,39.966536,-75.224812,,,1, +21747,52nd St & Westminster Av - FS,39.968286,-75.225078,,,1, +21748,52nd St & Wyalusing Av,39.969437,-75.225288,,,1, +21749,52nd St & Thompson St - FS,39.973116,-75.22608,,,1, +21750,52nd St & Master St - FS,39.974401,-75.226301,,,1, +21751,52nd St & Warren St - FS,39.976365,-75.226662,,,1, +21752,52nd St & Lancaster Av - FS,39.97732,-75.226635,,,1,0 +21753,Parkside Av & 50th St,39.979959,-75.219174,,,1, +21754,Parkside Av & 51st St,39.980775,-75.221392,,,1, +21755,Parkside Av & Paxon St,39.981178,-75.222371,,,1, +21757,52nd St & Columbia Av,39.980566,-75.224748,,,1, +21758,Jefferson St & 52nd St - FS,39.979577,-75.225554,,,1, +21759,Jefferson St & Lindenwood St,39.980123,-75.227041,,,1, +21760,54th St & Oxford St,39.981467,-75.229967,,,1, +21761,54th St & Columbia Av,39.982414,-75.230602,,,1, +21762,54th St & Montgomery Av,39.984003,-75.231165,,,1, +21763,54th St & Berks St,39.985789,-75.231774,,,1, +21764,54th St & Lebanon Av,39.987325,-75.232314,,,1, +21765,54th St & Gainor Rd,39.988852,-75.232829,,,1, +21766,54th St & Woodcrest Av - FS,39.990549,-75.233427,,,1, +21767,54th St & Wynnefield Av,39.991772,-75.233589,,,1, +21768,54th St & Overbrook Av,39.994628,-75.233924,,,1, +21769,Bala Av & Union Av,40.003103,-75.231041,,,1, +21770,Bala Av & Montgomery Av,40.006335,-75.232238,,,1, +21771,Conshohocken State Rd & Lodges Ln,40.010711,-75.233821,,,1, +21773,Conshohocken State Rd & Levering,40.013401,-75.235965,,,1, +21774,Conshohocken State Rd & Overhill Rd,40.015099,-75.237308,,,1, +21776,Conshohocken State Rd & Dartmouth,40.016895,-75.238839,,,1, +21777,Conshohocken State Rd & Rockhill Rd,40.018245,-75.240041,,,1, +21779,Conshohocken State Rd & Centennial ,40.023318,-75.255147,,,1, +21780,Conshohocken St & Hagys Ford Rd,40.025348,-75.257565,,,1, +21783,11th St & Shunk St,39.917402,-75.165758,,,1, +21784,11th St & Porter St ,39.918579,-75.165482,,,1, +21785,11th St & Ritner St ,39.919917,-75.165194,,,1, +21786,11th St & Wolf St ,39.921175,-75.16493,,,1, +21788,11th St & Jackson St ,39.922406,-75.164666,,,1, +21790,11th St & McKean St,39.92485,-75.164125,,,1, +21791,Hagys Ford Rd & Flat Rock Rd - MBNS,40.029179,-75.252839,,,1, +21792,Oregon Av & 13th St ,39.916454,-75.169362,,,1, +21793,Hagys Ford Rd & Flat Rock Rd,40.030198,-75.254066,,,1, +21794,Oregon Av & 12th St ,39.916237,-75.167686,,,1, +21796,Hagys Ford Rd & Hollow Rd,40.034185,-75.258679,,,1, +21799,Conshohocken State Rd & Maplecrest,40.037065,-75.277612,,,1, +21801,Columbia Av & 63rd St - FS,39.980617,-75.246331,,,1, +21802,Columbia Av & 61st St,39.980987,-75.242904,,,1, +21803,46th St & Mandela Way,39.961225,-75.213489,,,1, +21804,Columbia Av & 60th St,39.981163,-75.241368,,,1, +21805,60th St & Oxford St,39.980279,-75.241122,,,1, +21806,60th St & Jefferson St,39.978949,-75.240901,,,1, +21807,60th St & Haddington St,39.977413,-75.24061,,,1, +21808,60th St & Media St,39.974432,-75.23998,,,1, +21809,60th St & Master St,39.97286,-75.23976,,,1, +21810,60th St & Thompson St,39.971557,-75.239527,,,1, +21811,60th St & Haverford Av,39.970066,-75.239236,,,1, +21812,60th St & Vine St,39.966649,-75.239894,,,1, +21813,60th St & Walnut St,39.959029,-75.24145,,,1, +21814,60th St & Locust St,39.957887,-75.241701,,,1, +21815,60th St & Pine St,39.955594,-75.242179,,,1, +21816,60th St & Larchwood Av,39.954078,-75.242502,,,1, +21817,60th St & Cedar Av,39.952534,-75.242813,,,1, +21818,60th St & Catherine St,39.951035,-75.243124,,,1, +21819,60th St & Christian St,39.94951,-75.243459,,,1, +21820,60th St & Carpenter St,39.948751,-75.243614,,,1, +21821,60th St & Washington Av,39.947993,-75.24377,,,1, +21822,60th St & Cobbs Creek Pkwy,39.946423,-75.244104,,,1, +21823,60th St & Baltimore Av,39.944469,-75.244499,,,1, +21824,Frankford Av & Knorr St ,40.032249,-75.051038,,,1, +21825,Frankford Av & Longshore Av ,40.032929,-75.048634,,,1, +21826,Frankford Av & Tyson Av ,40.033611,-75.046834,,,1, +21827,Frankford Av & Princeton Av ,40.034676,-75.044771,,,1, +21828,Frankford Av & Wellington St ,40.035901,-75.042471,,,1, +21829,Frankford Av & Aldine St,40.037283,-75.03933,,,1, +21830,Frankford Av & Bleigh Av ,40.037752,-75.038027,,,1, +21831,Frankford Av & Shelmire St ,40.038389,-75.036309,,,1, +21832,Frankford Av & Marple St ,40.03885,-75.03503,,,1, +21833,Frankford Av & Sheffield Av ,40.039407,-75.033478,,,1, +21834,Frankford Av & Lansing St - FS,40.040097,-75.03157,,,1, +21835,Frankford Av & Decatur St ,40.040654,-75.030018,,,1, +21836,Frankford Av & Welsh Rd ,40.042256,-75.025658,,,1, +21837,Frankford Av & Stanwood St ,40.042875,-75.023952,,,1, +21838,Frankford Av & Solly Av ,40.043601,-75.021902,,,1, +21839,Frankford Av & Ashburner St - FS,40.043672,-75.019182,,,1, +21840,Frankford Av & Blakiston St ,40.044773,-75.017485,,,1, +21841,Frankford Av & Strahle St ,40.046115,-75.015716,,,1, +21842,Frankford Av & Pennypack St,40.047395,-75.014041,,,1, +21843,Frankford Av & Megargee St - MBNS,40.048266,-75.012972,,,1, +21844,Frankford Av & Evarts St - MBNS,40.049253,-75.011736,,,1, +21845,Frankford Av & Placid St ,40.050524,-75.01018,,,1, +21846,Frankford Av & Tolbut St ,40.051404,-75.009063,,,1, +21847,Frankford Av & Academy Rd - FS,40.052452,-75.00772,,,1, +21848,Washington Av & 59th St,39.947695,-75.241598,,,1, +21849,Washington Av & 60th St,39.947939,-75.243581,,,1, +21850,60th St & Carpenter St,39.948581,-75.243485,,,1, +21851,60th St & Christian St,39.94934,-75.243329,,,1, +21852,60th St & Catherine St,39.950866,-75.242995,,,1, +21853,60th St & Cedar Av,39.952364,-75.242684,,,1, +21854,60th St & Larchwood St,39.953908,-75.242373,,,1, +21855,60th St & Pine St,39.955425,-75.24205,,,1, +21856,60th St & Locust St,39.957718,-75.241571,,,1, +21857,60th St & Walnut St,39.95886,-75.24132,,,1, +21858,Frankford Av & Linden Av,40.054638,-75.004834,,,1, +21859,Frankford Av & Arendell Av ,40.055926,-75.003017,,,1, +21860,60th St & Haverford Av,39.969664,-75.23906,,,1, +21861,Frankford Av & Pearson Av ,40.057161,-75.0012,,,1, +21862,Frankford Av & Aubrey Av ,40.057585,-74.999896,,,1, +21863,60th St & Thompson St,39.971423,-75.239327,,,1, +21864,60th St & Master St,39.972726,-75.239559,,,1, +21865,60th St & Media St,39.974289,-75.239839,,,1, +21866,Frankford Av & Convent Ln,40.058017,-74.998309,,,1, +21867,Frankford Av & Barry Rd,40.058369,-74.996994,,,1, +21868,Frankford Av & Eden St ,40.058695,-74.995691,,,1, +21869,Frankford Av & Fitler St ,40.059399,-74.992991,,,1, +21870,60th St & Lansdowne Av,39.975833,-75.24013,,,1, +21871,60th St & Haddington St,39.977279,-75.24041,,,1, +21872,Frankford Av & Primrose St ,40.059646,-74.992043,,,1, +21873,60th St & Jefferson Ln,39.978806,-75.240713,,,1, +21875,60th St & Oxford St,39.980136,-75.240922,,,1, +21876,Frankford Av & Stevenson St,40.061552,-74.988424,,,1, +21877,Frankford Av & Carteret Dr ,40.062404,-74.987059,,,1, +21878,Frankford Av & Morrell Av ,40.06331,-74.985551,,,1, +21879,Columbia Av & 60th St - FS,39.981253,-75.241521,,,1, +21880,Frankford Av & Lyman Dr ,40.064382,-74.983321,,,1, +21881,Columbia Av & 61st St,39.98112,-75.242644,,,1, +21882,Columbia Av & 63rd St,39.980715,-75.246402,,,1, +21889,Montgomery Av & Hansell Rd,40.013413,-75.270181,,,1, +21890,Montgomery Av & Essex Av,40.013437,-75.267344,,,1, +21891,Essex Av & Sabine Av,40.011247,-75.265068,,,1, +21893,Essex Av & Woodbine Av,40.008568,-75.263633,,,1, +21894,Windsor Av & Narberth Av,40.006823,-75.260718,,,1, +21895,Windsor Av & Iona Av,40.007471,-75.25814,,,1, +21896,Haverford Av & Shirley Rd,40.007299,-75.2558,,,1, +21897,Montgomery Av & Merion Rd,40.007719,-75.250115,,,1, +21898,Montgomery Av & Winding Way,40.006733,-75.246997,,,1, +21899,Montgomery Av & Bowman Av,40.006383,-75.24584,,,1, +21900,Montgomery Av & Old Lancaster,40.005379,-75.24316,,,1, +21901,Old Lancaster Rd & Gramercy Rd,40.003592,-75.241345,,,1, +21902,Old Lancaster Rd & Highland Av,40.001751,-75.240002,,,1, +21903,Old Lancaster Rd & Latch Ln,39.999919,-75.238471,,,1, +21904,Old Lancaster Rd & Edgehill Rd,39.998087,-75.23655,,,1, +21905,Frankford Av & Lyman Dr - FS,40.064515,-74.983237,,,1, +21906,Frankford Av & Morrell Av ,40.063443,-74.985515,,,1, +21907,Frankford Av & Carteret Dr - FS,40.062379,-74.987307,,,1, +21908,Frankford Av & Stevenson St - FS,40.061589,-74.988601,,,1, +21909,Frankford Av & Grant Av ,40.060462,-74.990418,,,1, +21910,Frankford Av & Primrose St - FS,40.059727,-74.992125,,,1, +21911,Frankford Av & Fitler St - FS,40.059163,-74.994222,,,1, +21912,Frankford Av & Eden St ,40.058819,-74.995596,,,1, +21913,Frankford Av & Barry Rd,40.058494,-74.996899,,,1, +21914,Frankford Av & Convent Av ,40.05815,-74.998226,,,1, +21915,Frankford Av & Aubrey Av ,40.057824,-74.99941,,,1, +21916,Frankford Av & Pearson Av - FS,40.057188,-75.00133,,,1, +21917,Frankford Av & Arendell Av ,40.056069,-75.002992,,,1, +21918,Frankford Av & Linden Av ,40.054817,-75.004809,,,1, +21919,Frankford Av & Academy Rd ,40.052515,-75.007826,,,1, +21920,Frankford Av & Tolbut St ,40.051555,-75.00905,,,1, +21921,Frankford Av & Placid St - FS,40.050551,-75.010321,,,1, +21922,Frankford Av & Evarts St ,40.049724,-75.011343,,,1, +21923,Frankford Av & Megargee St - FS,40.048853,-75.012412,,,1, +21924,Frankford Av & Pennypack Av - FS,40.047449,-75.014159,,,1, +21925,Frankford Av & Kendrick St,40.046907,-75.014848,,,1, +21926,Frankford Av & Strahle St - MBNS,40.046498,-75.015394,,,1, +21927,Frankford Av & Blakiston St ,40.044978,-75.017389,,,1, +21928,Frankford Av & Ashburner St ,40.043682,-75.019502,,,1, +21929,Frankford Av & Solly Av ,40.043716,-75.021712,,,1, +21930,Frankford Av & Stanwood St ,40.043009,-75.023868,,,1, +21931,Frankford Av & Welsh Rd ,40.04239,-75.025575,,,1, +21932,Frankford Av & Decatur St ,40.040797,-75.029947,,,1, +21933,Frankford Av & Hartel Av ,40.040302,-75.031321,,,1, +21934,Frankford Av & Sheffield Av ,40.039541,-75.033394,,,1, +21935,Frankford Av & Oakmont St ,40.038859,-75.035278,,,1, +21936,Frankford Av & Shelmire St ,40.038523,-75.036226,,,1, +21937,Frankford Av & Bleigh Av ,40.037886,-75.037943,,,1, +21938,Frankford Av & Aldine St ,40.037257,-75.039685,,,1, +21939,Frankford Av & Tyson Av ,40.033754,-75.046762,,,1, +21940,Frankford Av & Longshore Av ,40.033072,-75.048539,,,1, +21941,Frankford Transportation Center - Rt 66,40.023543,-75.077007,,31033,1, +21942,Frankford Av & Cheltenham Av ,40.025424,-75.073333,,,1, +21943,Frankford Av & Ellie Dr,40.053786,-75.006163,,,1, +21944,Roosevelt Blvd & Bennett Rd,40.103911,-75.003394,,,1, +21945,Roosevelt Blvd & Plaza Dr - FS,40.101806,-75.006459,,,1, +21946,Roosevelt Blvd & Haldeman Av - MBFS,40.099523,-75.009786,,,1, +21947,Roosevelt Blvd & Tomlinson Rd - FS,40.097693,-75.012436,,,1, +21948,Roosevelt Blvd & Greymont St,40.096422,-75.01404,,,1, +21949,Roosevelt Blvd & Red Lion Rd,40.095061,-75.015456,,,1, +21950,York St & Almond St ,39.976405,-75.122991,,,1, +21951,Prudential Rd & Gibraltar Rd ,40.172657,-75.134551,,,1, +21953,Chelten Av & Wayne Av ,40.031695,-75.178909,,,1, +21954,Chelten Av & Greene St ,40.034046,-75.176513,,,1, +21955,Cheltenham Av & Roumfort Rd ,40.08365,-75.174894,,,1, +21956,Bustleton Av & Magee St,40.037931,-75.068045,,,1, +21957,Ridge Av & Scotts Ln - MBNS,40.007117,-75.189218,,,1, +21959,3rd St & Girard Av,39.969639,-75.14147,,,1,0 +21960,Orthodox St & Torresdale Av - FS,40.010161,-75.079117,,,1, +21961,Frankford Transportation Center - Rt 24,40.022725,-75.078169,,31033,1, +21962,Frankford Transportation Center - Rts 14 & MFO,40.023402,-75.077776,,31033,1, +21964,Erie Av & 10th St ,40.008291,-75.144423,,,1, +21965,Frankford Transportation Center - Rt R,40.023723,-75.077621,,31033,1, +21966,Frankford Transportation Center - Rt 67,40.023884,-75.077655,,31033,1, +21967,Frankford Transportation Center - Rt 19,40.023991,-75.077726,,31033,1, +21968,Frankford Transportation Center - Rt 73,40.023542,-75.076983,,31033,1, +21969,Frankford Transportation Center - Rt 84,40.023623,-75.076971,,31033,1, +21970,Frankford Transportation Center - Rt 25,40.023391,-75.076984,,31033,1, +21971,Frankford Transportation Center - Rt 3,40.023093,-75.079196,,31033,1, +21972,Frankford Transportation Center - Rt 5,40.022636,-75.078501,,31033,1, +21974,65th Av & Broad St,40.052046,-75.14199,,,1, +21977,Old Lancaster Rd & Edgehill Rd,39.997961,-75.236207,,,1, +21978,Old Lancaster Rd & Latches Ln,40.000276,-75.238635,,,1, +21979,Old Lancaster Rd & Highland Av,40.00167,-75.239766,,,1, +21980,Old Lancaster Rd & Gramercy Rd,40.003511,-75.241108,,,1, +21982,Montgomery Av & Bowman Rd,40.0064,-75.245485,,,1, +21983,Montgomery Av & Winding Way,40.00779,-75.249878,,,1, +21985,Haverford Av & Shirley Rd,40.007468,-75.25567,,,1, +21987,Haverford Av & Iona Av,40.006837,-75.257669,,,1, +21988,Haverford Av & Narberth Av,40.005948,-75.260022,,,1, +21989,Essex Av & Windsor Av,40.006362,-75.262515,,,1, +21990,Essex Av & Woodbine Av,40.00846,-75.263408,,,1, +21992,Essex Av & Sabine Av,40.011166,-75.264844,,,1, +21993,Essex Av & Montgomery Av,40.013374,-75.267108,,,1, +21995,Montgomery Av & Hansell Rd,40.013531,-75.271103,,,1, +21996,Montgomery Av & Gypsy Rd,40.01306,-75.272853,,,1, +21997,Montgomery Av & Cherry Ln,40.012205,-75.274403,,,1, +21998,Montgomery Av & Wister Rd,40.010645,-75.276085,,,1, +21999,Montgomery Av & Owen Rd - FS,40.009514,-75.277966,,,1, +22000,Montgomery Av & Church Rd - FS,40.008634,-75.280781,,,1, +22002,Parkside Av & Belmont Av,39.97778,-75.21358,,,1, +22003,Belmont Av & Viola St,39.976602,-75.21323,,,1, +22005,Belmont Av & Wyalusing Av,39.971557,-75.211969,,,1, +22006,Belmont Av & Westminster Av,39.969682,-75.21162,,,1, +22007,Lancaster Av & Belmont Av - FS,39.968539,-75.211199,,,1, +22008,Spring Garden St & 39th St,39.961976,-75.199503,,,1, +22009,Spring Garden St & 38th St,39.962222,-75.19727,,,1, +22010,Spring Garden St & 37th St,39.962371,-75.195816,,,1, +22011,Spring Garden St & 34th St,39.962854,-75.191457,,,1, +22012,Spring Garden St & 32nd St,39.963196,-75.188574,,,1, +22013,Spring Garden St & 31st St,39.963319,-75.187475,,,1, +22014,Spring Garden St & Art Museum,39.964182,-75.181637,,,1, +22015,Spring Garden St & Pennsylvania - FS,39.964108,-75.175708,,,1, +22016,Spring Garden St & 21st St,39.963781,-75.172958,,,1, +22017,Spring Garden St & 20th St,39.963536,-75.171057,,,1, +22018,Spring Garden St & 18th St,39.963146,-75.167928,,,1, +22019,Spring Garden St & 19th St,39.963354,-75.169499,,,1, +22020,Spring Garden St & 17th St,39.962955,-75.166382,,,1, +22021,Spring Garden St & 16th St,39.962756,-75.164776,,,1, +22022,Spring Garden St & 15th St,39.962574,-75.163254,,,1, +22023,Spring Garden St & 13th St,39.961896,-75.159418,,,1, +22024,Spring Garden St & 12th St,39.961705,-75.157824,,,1, +22025,Spring Garden St & 7 th St,39.961322,-75.149924,,,1, +22026,Spring Garden St & 6th St,39.961247,-75.148271,,,1, +22027,Spring Garden St & 5th St,39.961083,-75.146689,,,1, +22028,Spring Garden St & 4th St,39.96091,-75.14506,,,1, +22029,Spring Garden St & 3rd St,39.960754,-75.143478,,,1, +22030,Spring Garden St & 2nd St - MBFS,39.960453,-75.140704,,,1, +22033,Aramingo Av & York St - FS,39.975391,-75.12088,,,1, +22034,Delaware Av & Shackamaxon St,39.965984,-75.131823,,,1, +22035,Spring Garden St & Front St - MBFS,39.96064,-75.140467,,,1, +22036,Spring Garden St & 3rd St,39.96095,-75.1433,,,1, +22037,Spring Garden St & 4th St,39.961114,-75.144882,,,1, +22038,Spring Garden St & 5th St,39.961297,-75.146499,,,1, +22039,Spring Garden St & 6th St,39.961452,-75.148093,,,1, +22040,Spring Garden St & 7th St,39.961536,-75.149699,,,1, +22041,Spring Garden St & 8th St,39.961629,-75.151671,,,1, +22042,Spring Garden St & 9th St,39.961694,-75.152804,,,1, +22043,Spring Garden St & 10th St,39.96176,-75.154399,,,1, +22044,Spring Garden St & 11th St,39.961826,-75.156005,,,1, +22045,Spring Garden St & 12th St,39.961892,-75.157433,,,1, +22046,Spring Garden St & 13th St,39.962101,-75.159169,,,1, +22048,Spring Garden St & 15th St,39.962761,-75.162969,,,1, +22049,Spring Garden St & 16th St,39.962951,-75.164551,,,1, +22050,Windrim Av & Germantown Av,40.022693,-75.15907,,,1, +22051,Spring Garden St & 18th St,39.963351,-75.16768,,,1, +22052,Spring Garden St & 19th St,39.963541,-75.169262,,,1, +22053,Spring Garden St & 20th St,39.963741,-75.170808,,,1, +22054,Spring Garden St & 21st St,39.963977,-75.172709,,,1, +22055,Spring Garden St & 23rd St,39.964367,-75.175956,,,1, +22056,Wingohocking St & 20th St ,40.022664,-75.158184,,,1, +22057,Wingohocking St & 19th St ,40.022438,-75.156624,,,1, +22058,Wingohocking St & 18th St ,40.022238,-75.155065,,,1, +22059,Wingohocking St & 17th St ,40.022029,-75.153493,,,1, +22060,Wingohocking St & 16th St ,40.02182,-75.151898,,,1, +22061,Wingohocking St & 15th St ,40.021612,-75.150315,,,1, +22062,15th St & Courtland St ,40.023074,-75.149837,,,1, +22063,15th St & Belfield Av ,40.024609,-75.1495,,,1, +22064,Wyoming Av & Old York Rd ,40.024389,-75.147018,,,1, +22065,Wyoming Av & 13th St ,40.024217,-75.145801,,,1, +22066,Wyoming Av & 12th St ,40.024017,-75.144218,,,1, +22067,Wyoming Av & 11th St ,40.023799,-75.142647,,,1, +22068,Wyoming Av & 10th St ,40.023599,-75.141087,,,1, +22069,Wyoming Av & 9th St ,40.023408,-75.139469,,,1, +22071,Wyoming Av & Roosevelt Blvd ,40.023072,-75.137189,,,1, +22073,Wyoming Av & Fairhill St,40.022845,-75.135251,,,1, +22074,Wyoming Av & 3rd St ,40.022281,-75.130773,,,1, +22075,Wyoming Av & 2nd St ,40.02198,-75.12841,,,1, +22076,Haverford Av & 32nd St,39.964446,-75.188593,,,1, +22077,Wyoming Av & Mascher St ,40.021716,-75.126154,,,1, +22078,Wyoming Av & Front St ,40.021507,-75.124452,,,1, +22079,Haverford Av & 34th St,39.96413,-75.191488,,,1, +22080,Wyoming Av & A St ,40.02127,-75.12255,,,1, +22081,Wyoming Av & B St ,40.021033,-75.120613,,,1, +22082,Wyoming Av & C St ,40.020769,-75.118427,,,1, +22083,Wyoming Av & D St ,40.020505,-75.116395,,,1, +22084,Wyoming Av & Whitaker Av,40.02025,-75.114316,,,1, +22085,Wyoming Av & Weymouth St ,40.019922,-75.111776,,,1, +22086,Wyoming Av & G St ,40.019777,-75.110642,,,1, +22087,Wyoming Av & H St ,40.019503,-75.108457,,,1, +22088,Haverford Av & 35th St,39.963981,-75.192953,,,1, +22089,Haverford Av & 36th St,39.963823,-75.194406,,,1, +22090,Haverford Av & 37th St,39.963656,-75.195859,,,1, +22091,Haverford Av & 38th St,39.963507,-75.197324,,,1, +22093,Haverford Av & 39th St,39.963252,-75.199546,,,1, +22094,Wyoming Av & Ramona Av ,40.018674,-75.101876,,,1, +22095,Haverford Av & Lancaster Av,39.962998,-75.20185,,,1, +22096,Castor Av & Orthodox Av - MBNS,40.019168,-75.096224,,,1, +22097,Orthodox St & Adams Av ,40.019458,-75.094533,,,1, +22098,Belmont Av & Westminster Av,39.969548,-75.21142,,,1, +22099,Belmont Av & Wyalusing Av,39.971173,-75.211722,,,1, +22100,Belmont Av & Thompson St,39.974601,-75.212527,,,1, +22102,Belmont Av & Leidy St,39.975941,-75.212877,,,1, +22103,Parkside Av & Belmont Av - FS,39.97813,-75.214182,,,1, +22104,Marshall Rd & Gilpin Rd,39.951611,-75.265713,,,1, +22105,Marshall Rd & Rocklyn Rd,39.954429,-75.257251,,,1, +22106,Marshall Rd & Millbank Rd - FS,39.953451,-75.259899,,,1, +22107,Marshall Rd & Kent Rd,39.954239,-75.255126,,,1, +22108,Marshall Rd & Church Rd,39.956766,-75.250195,,,1, +22109,Spruce St & Cobbs Creek - FS,39.957227,-75.247667,,,1, +22110,Spruce St & 61st St,39.956802,-75.244018,,,1, +22111,Spruce St & 59th St,39.956261,-75.240005,,,1, +22112,Spruce St & 58th St,39.956026,-75.238057,,,1, +22113,Spruce St & 57th St,39.955782,-75.236097,,,1, +22114,Spruce St & 56th St,39.955529,-75.234078,,,1, +22115,Spruce St & 55th St,39.955284,-75.232048,,,1, +22116,Spruce St & 54th St,39.955004,-75.229887,,,1, +22117,Spruce St & 53rd St,39.954787,-75.228081,,,1, +22118,Spruce St & 51st St,39.95429,-75.224126,,,1, +22119,Spruce St & 50th St,39.954037,-75.222167,,,1, +22120,Spruce St & 49th St,39.953793,-75.220195,,,1, +22121,Spruce St & 48th St,39.953566,-75.218247,,,1, +22122,Spruce St & 47th St,39.953313,-75.216252,,,1, +22123,Spruce St & 45th St,39.952815,-75.212286,,,1, +22124,Spruce St & 44th St,39.952616,-75.210657,,,1, +22125,Spruce St & 43rd St,39.952453,-75.20937,,,1, +22126,Spruce St & 42nd St,39.952181,-75.207009,,,1, +22127,Spruce St & 41st St,39.952027,-75.205687,,,1, +22128,Spruce St & 39th St,39.951385,-75.200871,,,1, +22129,Spruce St & 38th St,39.951222,-75.199407,,,1, +22130,Castor Av & Orthodox St - MBNS,40.020655,-75.094988,,,1, +22131,Marshall Rd & Long Ln - MBNS,39.952466,-75.263822,,,1, +22132,Marshall Rd & Grace Rd,39.953026,-75.26251,,,1, +22133,Wyoming Av & Ramona Av - MBNS,40.018498,-75.099513,,,1, +22134,Wyoming Av & Ramona Av,40.018772,-75.101651,,,1, +22135,Marshall Rd & 69th Blvd,39.953735,-75.258516,,,1, +22136,Spruce St & 62nd St,39.957019,-75.246002,,,1, +22137,Dock St & Dock St,39.944968,-75.144021,,,1, +22139,Spruce St & 4th St,39.944977,-75.148299,,,1, +22140,Spruce St & 5th St,39.945177,-75.149916,,,1, +22142,Wyoming Av & H St ,40.019601,-75.108231,,,1, +22143,Spruce St & 39th St,39.9515,-75.200623,,,1, +22144,Wyoming Av & G St ,40.019874,-75.110417,,,1, +22145,Wyoming Av & Weymouth St ,40.02002,-75.111551,,,1, +22146,Wyoming Av & Whitaker Av,40.020329,-75.113926,,,1, +22147,Spruce St & 41st St,39.952125,-75.205462,,,1, +22148,Wyoming Av & D St ,40.020612,-75.11617,,,1, +22149,Wyoming Av & C St ,40.020867,-75.118202,,,1, +22150,Wyoming Av & B St ,40.021131,-75.120388,,,1, +22151,Spruce St & 42nd St,39.952288,-75.206796,,,1, +22152,Wyoming Av & A St ,40.021368,-75.122325,,,1, +22153,Wyoming Av & Front St ,40.021613,-75.124263,,,1, +22154,Spruce St & 43rd St,39.952551,-75.209145,,,1, +22155,Wyoming Av & Rising Sun Av ,40.021759,-75.12548,,,1, +22156,Spruce St & 44th St,39.952714,-75.210432,,,1, +22157,Wyoming Av & 2nd St ,40.022087,-75.128209,,,1, +22158,Spruce St & 45th St,39.952913,-75.212061,,,1, +22159,Wyoming Av & 3rd St ,40.022378,-75.130548,,,1, +22160,Spruce St & 46th St,39.953166,-75.214044,,,1, +22161,Spruce St & 51st St,39.954388,-75.223902,,,1, +22162,5th St & Roosevelt Blvd ,40.023447,-75.133286,,,1, +22163,Spruce St & 53rd St,39.954885,-75.227856,,,1, +22165,Spruce St & 54th St,39.955102,-75.229662,,,1, +22166,Spruce St & 55th St,39.955382,-75.231823,,,1, +22167,Spruce St & 56th St,39.955644,-75.233771,,,1, +22168,Spruce St & 57th St,39.955879,-75.235801,,,1, +22169,Spruce St & 58th St,39.956141,-75.237761,,,1, +22170,Spruce St & 59th St,39.956376,-75.239744,,,1, +22171,Spruce St & 61st St,39.956873,-75.243711,,,1, +22172,Spruce St & 62nd St,39.957099,-75.245706,,,1, +22173,Wyoming Av & 7th St - FS,40.02326,-75.13733,,,1, +22174,Wyoming Av & 9th St ,40.023505,-75.139244,,,1, +22175,Spruce St & 63rd St,39.957343,-75.247737,,,1, +22176,Wyoming Av & 10th St ,40.023697,-75.140862,,,1, +22177,Wyoming Av & 11th St ,40.023896,-75.142422,,,1, +22178,Wyoming Av & 12th St ,40.024114,-75.144005,,,1, +22179,Wyoming Av & 13th St ,40.024314,-75.145576,,,1, +22180,Marshall Rd & Church Ln,39.956998,-75.250124,,,1, +22181,Marshall Rd & Kent Rd,39.954337,-75.254984,,,1, +22182,Marshall Rd & Rocklyn Rd,39.954599,-75.257215,,,1, +22183,Marshall Rd & 69th St,39.953886,-75.258457,,,1, +22184,Marshall Rd & Millbank Rd - FS,39.95354,-75.260005,,,1, +22185,Wyoming Av & Old York Rd ,40.024496,-75.146829,,,1, +22186,Marshall Rd & Grace Rd,39.95316,-75.262261,,,1, +22187,Marshall Rd & Long Ln - FS,39.95251,-75.263975,,,1, +22190,Spruce St & 47th St,39.953411,-75.216028,,,1, +22191,Spruce St & 48th St,39.953664,-75.218023,,,1, +22192,Spruce St & 49th St,39.95389,-75.21997,,,1, +22193,Spruce St & 50th St,39.954135,-75.221942,,,1, +22194,Wyoming Av & Broad St - FS,40.024641,-75.148057,,,1, +22195,Wyoming Av & 15th St ,40.024805,-75.149416,,,1, +22196,Wyoming Av & 16th St ,40.025567,-75.150914,,,1, +22197,16th St & Courtland St ,40.023489,-75.151537,,,1, +22198,Courtland St & 17th St ,40.023634,-75.152943,,,1, +22199,Courtland St & 18th St ,40.023816,-75.154491,,,1, +22201,Courtland St & 19th St ,40.024052,-75.156074,,,1, +22202,Windrum Av & 20th St - MBNS,40.023841,-75.157825,,,1, +22203,Windrum Av & Germantown Av ,40.022916,-75.158998,,,1, +22206,Belmont Av & Monument Rd - 1 MBNS,39.997353,-75.218945,,,1, +22207,Belmont Av & Conshohocken Av,39.999907,-75.219635,,,1, +22208,Belmont Av & Monument Rd,39.995469,-75.218431,,,1, +22210,Parkside Av & 49th St,39.979053,-75.216695,,,1, +22211,Parkside Av & Wynnefield Av,39.990439,-75.220383,,,1, +22212,Wynnefield Av & Monument Rd,39.990887,-75.221906,,,1, +22213,Wynnefield Av & 50th St,39.991499,-75.224752,,,1, +22214,Wynnefield Av & Bryn Mawr Av,39.991582,-75.226453,,,1, +22215,Wynnefield Av & 52nd St,39.991748,-75.22969,,,1, +22216,Wynnefield Av & 54th St,39.991941,-75.233553,,,1, +22217,54th St & Montgomery Av,39.984155,-75.231365,,,1, +22218,Jefferson St & 52nd St,39.979443,-75.225507,,,1, +22219,Parkside Av & 42nd St,39.976238,-75.209439,,,1, +22220,Parkside Av & 41st St,39.975341,-75.207008,,,1, +22221,40th St & Poplar St,39.972739,-75.204134,,,1, +22223,40th St & Ogden St,39.969543,-75.203542,,,1, +22224,40th St & Parrish St,39.968489,-75.203391,,,1, +22225,40th St & Brown St,39.967445,-75.203206,,,1, +22226,40th St & Aspen St,39.966356,-75.202997,,,1, +22227,40th St & Fairmont Av,39.965204,-75.202788,,,1, +22228,40th St & Lancaster Av,39.963293,-75.202392,,,1, +22230,40th St & Locust St,39.953075,-75.202885,,,1, +22232,Spruce St & 36th St,39.950714,-75.195465,,,1, +22233,Spruce St & 34th St,39.950415,-75.192785,,,1, +22234,23rd St & Walnut St,39.951199,-75.178517,,,1, +22235,23rd St & Locust St,39.950057,-75.178781,,,1, +22236,23rd St & Pine St,39.947399,-75.179357,,,1, +22237,23rd St & Lombard St,39.946525,-75.179549,,,1, +22238,23rd St & South St,39.945508,-75.179777,,,1, +22239,South St & 21st St,39.94502,-75.177063,,,1, +22240,South St & 20th St,39.944784,-75.175127,,,1, +22241,South St & 19th St,39.944585,-75.173569,,,1, +22242,South St & 18th St,39.944385,-75.172012,,,1, +22243,South St & 17th St,39.944186,-75.170418,,,1, +22244,South St & 16th St,39.944004,-75.16886,,,1, +22245,South St & 15th St,39.943804,-75.167291,,,1, +22246,South St & 13th St,39.943323,-75.163467,,,1, +22247,South St & 12th St,39.943133,-75.161873,,,1, +22248,South St & 11th St,39.942933,-75.160316,,,1, +22249,South St & 10th St,39.942742,-75.158734,,,1, +22250,South St & 9th St,39.942533,-75.157176,,,1, +22251,South St & 8th St,39.942343,-75.155595,,,1, +22252,South St & 7th St,39.942125,-75.154025,,,1, +22253,South St & 6th St,39.941934,-75.152444,,,1, +22254,South St & 5th St,39.941743,-75.150874,,,1, +22255,South St & 4th St,39.941543,-75.149281,,,1, +22256,South St & 3rd St,39.941343,-75.1477,,,1, +22257,South St & 2nd St,39.941116,-75.14587,,,1, +22258,Lombard St & 3rd St,39.942449,-75.147258,,,1, +22259,Lombard St & 4th St,39.942667,-75.148852,,,1, +22260,Lombard St & 5th St,39.942858,-75.150421,,,1, +22261,Lombard St & 6th St,39.943066,-75.151991,,,1, +22262,Lombard St & 7th St,39.943248,-75.153584,,,1, +22263,Lombard St & 8th St,39.943457,-75.155154,,,1, +22264,Lombard St & 9th St,39.943639,-75.156723,,,1, +22265,Lombard St & 10th St,39.943821,-75.158258,,,1, +22266,Lombard St & 11th St,39.944056,-75.159874,,,1, +22267,Lombard St & 12th St,39.944247,-75.161432,,,1, +22268,Lombard St & 13th St,39.944438,-75.163014,,,1, +22269,Lombard St & 15th St,39.944892,-75.166862,,,1, +22270,Lombard St & 16th St,39.945119,-75.168419,,,1, +22271,Lombard St & 17th St,39.945301,-75.170001,,,1, +22272,Lombard St & 18th St,39.9455,-75.171582,,,1, +22273,Lombard St & 19th St,39.9457,-75.17314,,,1, +22274,Lombard St & 20th St,39.94589,-75.174698,,,1, +22275,Lombard St & 21st St,39.946126,-75.176634,,,1, +22277,22nd St & Pine St,39.947129,-75.178083,,,1, +22278,22nd St & Spruce St,39.948556,-75.177771,,,1, +22279,22nd St & Locust St,39.949769,-75.177507,,,1, +22284,38th St & Walnut St,39.95354,-75.198585,,,1, +22285,38th St & Chestnut St,39.955084,-75.198261,,,1, +22287,41st St & Olive St,39.96586,-75.205467,,,1, +22288,41st St & Brown St,39.967048,-75.205569,,,1, +22289,41st St & Parrish St,39.968021,-75.205661,,,1, +22290,Jefferson St & 53rd St,39.980455,-75.227997,,,1, +22291,Wynnfield Av & 52nd St,39.991632,-75.229891,,,1, +22292,Wynnfield Av & Bryn Mawr Av,39.991466,-75.226654,,,1, +22293,Wynnfield Av & 50th St,39.991383,-75.224953,,,1, +22294,Wynnfield Av & Parkside Av,39.990287,-75.22049,,,1, +22296,Parkside Av & 49th St,39.992276,-75.219397,,,1, +22302,Presidential & City Line Av - FS,40.00795,-75.210358,,,1, +22304,Conshohocken Av & E Country Club - ,40.003529,-75.203198,,,1, +22305,Conshohocken Av & E Cntry Club MBFS,40.003263,-75.204286,,,1, +22306,Conshohocken Av & W Cntry Club - 1 MBNS,40.003042,-75.205776,,,1, +22307,Conshohocken Av & W Country Club,40.00276,-75.207644,,,1, +22309,Cranston Rd & Conshohocken - FS,40.001963,-75.211144,,,1, +22310,Cranston Rd & Lankenau Av,40.000426,-75.209873,,,1, +22311,Ford Rd & Cranston Rd - FS,39.999801,-75.210004,,,1, +22312,Ford Rd & Cranstaton Rd - MBFS,40.000143,-75.211339,,,1, +22313,Ford Rd & Balwynne Park Rd ,40.000547,-75.212933,,,1, +22314,Ford Rd & Monument Rd,40.001122,-75.215259,,,1, +22315,Belmont Av & Sherwood Rd,40.001612,-75.220162,,,1, +22316,Belmont Av & Sherwood Rd - MBFS,40.000996,-75.219939,,,1, +22317,Belmont Av & Parkside Av,39.994523,-75.218174,,,1, +22318,Belmont Av & Fairmount Park Dr,39.993031,-75.217741,,,1, +22319,Belmont Av & S Georges Hill Dr,39.985861,-75.215824,,,1, +22320,Belmont Av & Lansdowne Dr,39.982174,-75.214772,,,1, +22321,Belmont Av & S Concourse Dr,39.980379,-75.214281,,,1, +22322,Mantua Av & 35th St,39.967445,-75.19378,,,1, +22323,34th St & Wallace St,39.965273,-75.191909,,,1, +22324,34th St & Haverford Av,39.964104,-75.191689,,,1, +22325,Ben Franklin Pkwy & 22nd St,39.96101,-75.17533,,,1, +22326,Ben Franklin Pkwy & 21st St,39.959918,-75.173845,,,1, +22327,Ben Franklin Pkwy & 20th St,39.958898,-75.172444,,,1, +22328,20th St & Race St,39.957515,-75.17239,,,1, +22329,20th St & Arch St,39.955731,-75.172821,,,1, +22330,Brown St & Union St,39.967425,-75.20206,,,1, +22331,Brown St & 39th St,39.96761,-75.200571,,,1, +22332,Brown St & 38th St,39.967864,-75.198326,,,1, +22333,Brown St & 37th St,39.968031,-75.196885,,,1, +22334,Mantua av & 36th St,39.968029,-75.19542,,,1, +22335,Bustleton Av & Cheltenham Av - FS,40.027144,-75.07537,,,1, +22336,Bustleton Av & Van Kirk St,40.028212,-75.074466,,,1, +22337,Bustleton Av & Benner St,40.031252,-75.07302,,,1, +22338,Devereux Av & Leonard St ,40.031754,-75.070665,,,1, +22339,Devereux Av & Farnsworth St ,40.03083,-75.06905,,,1, +22340,Devereux Av & Revere St ,40.029924,-75.067412,,,1, +22341,Devereux Av & Brous Av ,40.029071,-75.065785,,,1, +22342,Battersby St & Levick St ,40.030567,-75.061663,,,1, +22343,Battersby St & Hellerman St ,40.031804,-75.060474,,,1, +22344,Battersby St & Magee St ,40.033051,-75.059309,,,1, +22345,Hawthorne St & Unruh Av ,40.033399,-75.056517,,,1, +22346,Hawthorne St & Knorr St ,40.034654,-75.05534,,,1, +22347,Hawthorne St & Longshore Av ,40.035891,-75.054163,,,1, +22348,Hawthorne St & Tyson Av ,40.037102,-75.05301,,,1, +22349,Hawthorne St & Princeton Av ,40.038357,-75.051833,,,1, +22350,Hawthorne St & Saint Vincent St ,40.039594,-75.050656,,,1, +22351,Rowland Av & Cottman Av - FS,40.039694,-75.04556,,,1, +22352,Cottman Av & Sackett St,40.040513,-75.047565,,,1, +22353,Rowland Av & Ryan Av,40.040214,-75.04344,,,1, +22354,Rowland Av & Aldine St,40.040569,-75.042505,,,1, +22355,Rowland Av & Vista St ,40.041685,-75.040027,,,1, +22356,Rowland Av & Oakmont St ,40.042475,-75.03832,,,1, +22357,Rowland Av & Sheffield St ,40.043308,-75.03653,,,1, +22358,Rowland Av & Lansing St ,40.043919,-75.035155,,,1, +22359,Rowland Av & Ashville St ,40.0447,-75.033531,,,1, +22360,Rowland Av & Rhawn St ,40.045577,-75.031599,,,1, +22361,Rowland Av & Fuller St ,40.046694,-75.029157,,,1, +22362,Rowland Av & Welsh Rd ,40.047979,-75.026288,,,1, +22363,Welsh Rd & Winchester Av ,40.05072,-75.026675,,,1, +22364,Welsh Rd & Wilson St ,40.052186,-75.027151,,,1, +22365,Welsh Rd & Colfax St ,40.054482,-75.027931,,,1, +22366,Holme Av & Arthur St ,40.056332,-75.025839,,,1, +22367,Holme Av & Longford St - FS,40.056364,-75.021936,,,1, +22368,Welsh Rd & Old Ashton Rd - FS,40.057448,-75.028919,,,1, +22369,Welsh Rd & Tolbut St ,40.06064,-75.027896,,,1, +22370,Welsh Rd & Michael Rd ,40.063238,-75.02813,,,1, +22371,Welsh Rd & Shipley Rd ,40.064747,-75.028275,,,1, +22372,Welsh Rd & Willits Rd ,40.06713,-75.028297,,,1, +22373,Willits Rd & Dewees St ,40.068179,-75.029557,,,1, +22374,Welsh Rd & Blue Grass Rd ,40.070192,-75.031202,,,1, +22375,Welsh Rd & Leonard St ,40.072134,-75.032847,,,1, +22376,Welsh Rd & Nester St ,40.076651,-75.035981,,,1, +22377,Welsh Rd & Old Newtown Rd ,40.078992,-75.036654,,,1, +22379,Welsh Rd & Bustleton Av,40.083941,-75.038094,,,1, +22380,Bustleton Av & Scotchbrook Dr ,40.082637,-75.040538,,,1, +22381,Scotchbrook Dr & Banes St,40.083165,-75.041221,,,1, +22382,Welsh Rd & Grant Av ,40.086939,-75.040692,,,1, +22384,Grant Av & Northeast Av,40.088322,-75.043524,,,1, +22385,Welsh Rd & Rising Sun Av ,40.091055,-75.046893,,,1, +22386,Allegheny Av & 35th St,40.005872,-75.186551,,,1, +22387,Alburger Av & Welsh Rd - MBFS,40.092863,-75.048501,,,1, +22388,Alburger Av & Verree Rd ,40.094735,-75.050601,,,1, +22389,Alburger Av & Spring View Rd ,40.09731,-75.055214,,,1, +22390,Alburger Av & Darlington Rd ,40.097983,-75.059577,,,1, +22392,Darlington Rd & Strafford Dr ,40.102538,-75.054524,,,1, +22394,Welsh Rd & Laramie Rd ,40.105889,-75.052743,,,1, +22395,Pine Rd & Welsh Rd - FS,40.107598,-75.054036,,,1, +22396,Moreland Rd & Pine Rd - FS,40.106058,-75.058506,,,1, +22397,Hunting Park Av & Westmoreland St,40.007106,-75.174516,,,1, +22398,Moreland Rd & Winthrop Rd ,40.107978,-75.06175,,,1, +22399,Moreland Rd & Heritage Rd - FS,40.112041,-75.068582,,,1, +22400,Hunting Park Av & Stokely St,40.008338,-75.170482,,,1, +22401,Hunting Park Av & 24th St,40.009235,-75.16815,,,1, +22402,Huntingdon Pk & Meadowbrook Dr,40.111615,-75.075958,,,1, +22403,Hunting Park Av & 20th St,40.01254,-75.161023,,,1, +22404,Hunting Park Av & Germantown Av,40.015774,-75.154014,,,1, +22405,Hunting Park Av & Broad St,40.017595,-75.150047,,,1, +22406,Roosevelt Blvd & 9th St,40.020643,-75.140425,,,1, +22407,Roosevelt Blvd & Mascher St,40.024982,-75.12562,,,1, +22408,Roosevelt Blvd & Rising Sun - FS,40.025499,-75.122024,,,1, +22409,Roosevelt Blvd & C St - FS,40.026254,-75.11689,,,1, +22410,Huntingdon Pk & Meadowbrook Dr,40.111419,-75.075876,,,1, +22411,Moreland Rd & Heritage Rd ,40.111925,-75.06863,,,1, +22412,Moreland Rd & Foothill Dr ,40.10762,-75.061421,,,1, +22413,Moreland Rd & Pine Rd,40.105888,-75.058518,,,1, +22414,Pine Rd & Welsh Rd ,40.107499,-75.053883,,,1, +22415,Welsh Rd & Laramie Rd,40.10597,-75.052979,,,1, +22416,Darlington Rd & Strafford Rd ,40.102735,-75.054547,,,1, +22417,Darlington Rd & Flagstaff Rd ,40.100324,-75.057281,,,1, +22418,Darlington Rd & Alexis Ln,40.099213,-75.058671,,,1, +22419,Darlington Rd & Alburger Av ,40.098082,-75.059766,,,1, +22420,Alburger Av & Springview Rd ,40.097195,-75.055416,,,1, +22421,Alburger Av & Verree Rd ,40.094852,-75.05092,,,1, +22422,Alburger Av & Verree Rd - MBFS,40.093392,-75.049307,,,1, +22423,Alburger Av & Welsh Rd ,40.091852,-75.047611,,,1, +22424,Welsh Rd & Rising Sun Av ,40.091136,-75.047189,,,1, +22425,Welsh Rd & Grant Av ,40.089124,-75.04578,,,1, +22426,Grant Av & Krewstown Rd ,40.08836,-75.044258,,,1, +22427,Banes St & Scotchbrook Dr ,40.083255,-75.041327,,,1, +22429,Welsh Rd & Old Newtown Rd ,40.079118,-75.036854,,,1, +22430,Welsh Rd & Nestor St ,40.076759,-75.036205,,,1, +22431,Welsh Rd - Roosevelt Blvd - FS,40.073996,-75.034635,,,1, +22432,Welsh Rd & Leonard St ,40.072215,-75.033131,,,1, +22433,Welsh Rd & Blue Grass Rd ,40.070193,-75.031391,,,1, +22434,Welsh Rd & Dewees St ,40.068162,-75.029818,,,1, +22435,Willits Rd & Welsh Rd ,40.067327,-75.028403,,,1, +22436,Welsh Rd & Manchester St - FS,40.064337,-75.028431,,,1, +22437,Welsh Rd & Michael Rd ,40.063436,-75.028354,,,1, +22438,Welsh Rd & Tolbut St ,40.060811,-75.028108,,,1, +22439,Welsh Rd & Axe Factory Rd ,40.057859,-75.029083,,,1, +22440,Holme Av & Willits Rd & - FS,40.056676,-75.013703,,,1, +22441,Holme Av & Holme Cir ,40.056642,-75.028096,,,1, +22442,Welsh Rd & Colfax St ,40.054608,-75.028143,,,1, +22443,Welsh Rd & Winthorp St ,40.051972,-75.027259,,,1, +22444,Welsh Rd & Winchester Av ,40.050944,-75.026922,,,1, +22445,Welsh Rd & Cresco Av ,40.050944,-75.026922,,,1, +22447,Rhawn St & Rowland St,40.045774,-75.031704,,,1, +22448,Rowland Av & Ashville St,40.044896,-75.033424,,,1, +22449,Rowland Av & Lansing St,40.044124,-75.035048,,,1, +22450,Rowland Av & Sheffield Av ,40.043477,-75.036423,,,1, +22451,Rowland Av & Oakmont St ,40.042653,-75.038213,,,1, +22452,Rowland Av & Vista St,40.041846,-75.040003,,,1, +22453,Cottman Av & Rowland Av - FS,40.039767,-75.045985,,,1, +22454,Cottman Av & Sackett St,40.04053,-75.047305,,,1, +22455,Hawthorne St & Saint Vincent St ,40.039826,-75.050655,,,1, +22456,Hawthorne St & Princeton Av ,40.03858,-75.051832,,,1, +22457,Hawthorne St & Tyson Av ,40.037298,-75.053033,,,1, +22458,Hawthorne St & Longshore Av ,40.036088,-75.054186,,,1, +22459,Hawthorne St & Knorr St ,40.034851,-75.055363,,,1, +22460,Hawthorne St & Unruh Av ,40.033596,-75.05654,,,1, +22461,Battersby St & MaGee Av - FS,40.03306,-75.05951,,,1, +22462,Battersby St & Hellerman St ,40.032001,-75.060497,,,1, +22463,Battersby St & Levick St ,40.030764,-75.061685,,,1, +22464,Battersby St & Harbison Av ,40.029624,-75.062743,,,1, +22465,Devereaux Av & Brous Av ,40.029097,-75.065512,,,1, +22466,Devereaux Av & Farnsworth St ,40.030936,-75.068742,,,1, +22467,Devereaux Av & Leonard St ,40.031824,-75.070369,,,1, +22468,Bustleton Av & Benner St,40.031386,-75.073079,,,1, +22469,Bustleton Av & Van Kirk St,40.028373,-75.074489,,,1, +22470,Bustleton Av & Cheltenham Av,40.027135,-75.075547,,,1, +22471,Devereaux Av & Revere St,40.030173,-75.067339,,,1, +22472,Bridge St & Harbison Av,40.011706,-75.06995,,,1, +22473,Bridge St & Eadom St - FS,40.009785,-75.069404,,,1, +22474,Roosevelt Blvd & Bridge St,40.029748,-75.087722,,,1, +22475,Roosevelt Blvd & Sanger St,40.03077,-75.08585,,,1, +22477,Roosevelt Blvd & Cheltenham Av - FS,40.031665,-75.083753,,,1, +22478,Roosevelt Blvd & Van Kirk St,40.032142,-75.081658,,,1, +22479,Roosevelt Blvd & Devereaux St,40.033791,-75.074497,,,1, +22480,Roosevelt Blvd & Robbins Av,40.034381,-75.071964,,,1, +22481,Roosevelt Blvd & Levick St,40.034919,-75.069644,,,1, +22482,Roosevelt Blvd & Hellerman St,40.03551,-75.067088,,,1, +22483,Roosevelt Blvd & Magee Av,40.036039,-75.06478,,,1, +22484,Roosevelt Blvd & Unruh Av,40.036684,-75.062577,,,1, +22486,Roosevelt Blvd & Longshore Av,40.038951,-75.059716,,,1, +22487,Roosevelt Blvd & Tyson Av,40.040099,-75.058492,,,1, +22488,Roosevelt Blvd & Friendship St,40.042083,-75.056389,,,1, +22490,Roosevelt Blvd & Guilford St,40.046087,-75.052076,,,1, +22491,Roosevelt Blvd & Revere St,40.050509,-75.050681,,,1, +22492,Tacony St & Bridge St - FS,40.008552,-75.068713,,,1, +22493,Roosevelt Blvd & Brous Av,40.048984,-75.050784,,,1, +22494,Roosevelt Blvd & Hartel Av,40.051821,-75.050509,,,1, +22495,Roosevelt Blvd & Ryan Av,40.053878,-75.048937,,,1, +22496,Tacony St & Fraley St ,40.009511,-75.064194,,,1, +22498,Roosevelt Blvd & Rhawn St,40.056396,-75.046404,,,1, +22499,Roosevelt Blvd & Stanwood St,40.057526,-75.045299,,,1, +22500,Tacony St & Carver St ,40.010787,-75.060973,,,1, +22501,Tacony St & Van Kirk St ,40.012315,-75.05853,,,1, +22502,Tacony St & Comly St - MBFS,40.014711,-75.054014,,,1, +22503,Roosevelt Blvd & Strahle St - FS,40.062471,-75.042433,,,1, +22504,Tacony St & Devereux St - FS,40.015607,-75.052036,,,1, +22505,Tacony St & Robbins Av,40.016477,-75.050353,,,1, +22508,Milnor St & Levick St ,40.01602,-75.047069,,,1, +22509,Roosevelt Blvd & Winchester Av,40.068354,-75.039835,,,1, +22510,State Rd & Elbridge St - FS,40.018135,-75.046964,,,1, +22511,Roosevelt Blvd & Woodward St,40.070882,-75.037846,,,1, +22512,Roosevelt Blvd & Tremont St,40.072911,-75.035859,,,1, +22513,Roosevelt Blvd & Welsh Rd,40.074032,-75.034777,,,1, +22514,State Rd & Magee Av - FS,40.019279,-75.044605,,,1, +22515,Roosevelt Blvd & Goodnaw St,40.0764,-75.032528,,,1, +22516,State Rd & Unruh Av ,40.020015,-75.042994,,,1, +22517,Roosevelt Blvd & Michener Av,40.078375,-75.0306,,,1, +22519,State Rd & Knorr St ,40.020569,-75.04026,,,1, +22520,Roosevelt Blvd & Fulmer St,40.083207,-75.02596,,,1, +22521,Roosevelt Blvd & Lott St,40.084541,-75.024662,,,1, +22522,Roosevelt Blvd & Bowler St - FS,40.08568,-75.02352,,,1, +22524,Roosevelt Blvd & Conwell Av,40.088759,-75.020533,,,1, +22525,Roosevelt Blvd & Red Lion Rd,40.094426,-75.015081,,,1, +22526,Roosevelt Blvd & Tomlinson Rd,40.09681,-75.012476,,,1, +22527,State Rd & Milnor St,40.021829,-75.037807,,,1, +22528,State Rd & Friendship St,40.024255,-75.034543,,,1, +22529,State Rd & Wellington St,40.024938,-75.033073,,,1, +22530,State Rd & Cottman Av,40.025585,-75.031698,,,1, +22531,Cottman Av & Keystone St,40.027463,-75.032988,,,1, +22532,Cottman Av & Edmund St,40.028555,-75.033845,,,1, +22533,Torresdale Av & Bleigh Av,40.031416,-75.032505,,,1, +22534,Torresdale Av & Shelmire Av,40.032223,-75.030964,,,1, +22536,Torresdale Av & Sheffield Av,40.033137,-75.029185,,,1, +22537,Roosevelt Blvd & Haldeman Av,40.099803,-75.008175,,,1, +22538,Roosevelt Blvd & Plaza Dr - 1 FS,40.101642,-75.005502,,,1, +22539,Roosevelt Blvd & Bennett Rd,40.103329,-75.003054,,,1, +22540,Torresdale Av & Hartel Av,40.034033,-75.027442,,,1, +22541,Torresdale Av & Decatur St,40.034609,-75.026328,,,1, +22542,Torresdale Av & Rhawn St ,40.035159,-75.025273,,,1, +22543,Rhawn St & Tulip St ,40.033433,-75.024041,,,1, +22546,Comly Rd & Thornton Rd,40.095801,-74.991384,,,1, +22547,Comly Rd & Decatur Rd - FS,40.093721,-74.988841,,,1, +22548,State Rd & Rhawn Corrections - 1 MBFS,40.032516,-75.019353,,,1, +22549,Decatur Rd & Darnell Rd - FS,40.091293,-74.993149,,,1, +22551,State Rd & Rhawn Corrections - 2 MBFS,40.033803,-75.017052,,,1, +22552,Drummond Rd & Red Lion Rd - MBNS,40.082894,-74.996468,,,1, +22553,Drummond Rd & Red Lion Rd,40.081589,-74.998522,,,1, +22554,State Rd & Ashburner St - MBNS,40.035542,-75.013932,,,1, +22555,State Rd & Ashburner St ,40.036926,-75.011394,,,1, +22556,State Rd & Pennypack St ,40.040019,-75.004909,,,1, +22557,State Rd & Arendell Av ,40.046859,-74.992854,,,1, +22558,State Rd & Delaire Rd - FS,40.048438,-74.990101,,,1, +22559,State Rd & Convent Ln,40.04961,-74.988273,,,1, +22560,State Rd & Fitler St ,40.051855,-74.984569,,,1, +22561,Grant Av & State Rd - FS,40.053223,-74.982858,,,1, +22562,Grant Av & Torresdale Av ,40.058257,-74.987924,,,1, +22563,Morrell Av & Crestmont Av - MBNS,40.064822,-74.986653,,,1, +22564,Morrell Av & Crown Av ,40.067728,-74.988303,,,1, +22565,Morrell Av & Morrell Cir ,40.069931,-74.987793,,,1, +22566,Morrell Av & Crown Av ,40.071546,-74.987605,,,1, +22567,Morrell Av & Ashfield Ln ,40.073341,-74.987997,,,1, +22568,Morrell Av & Keswick Rd ,40.074657,-74.989124,,,1, +22569,Keswick Rd & Ashfield Ln,40.075137,-74.988482,,,1, +22570,Keswick Rd & Red Lion Rd,40.075679,-74.987639,,,1, +22571,Red Lion Rd & Waldemire Rd,40.074312,-74.984738,,,1, +22572,Red Lion Rd & Knights Rd ,40.072118,-74.981495,,,1, +22573,Spruce St & 36th St,39.950839,-75.195193,,,1, +22575,Knights Rd & Ellicott Rd ,40.074553,-74.979744,,,1, +22576,Knights Rd & Dundee Av ,40.075649,-74.979229,,,1, +22577,Knights Rd & Dorchester Rd - MBFS,40.078616,-74.977944,,,1, +22578,Knights Rd & Chalfont Dr ,40.080327,-74.977176,,,1, +22579,Knights Rd & Patrician Dr ,40.08135,-74.976152,,,1, +22581,Knights Rd & Fairdale Rd ,40.084376,-74.97366,,,1, +22582,Knights Rd & Woodhaven Rd ,40.086645,-74.971871,,,1, +22583,Knights Rd & Woodhaven Rd - FS,40.087926,-74.970609,,,1, +22584,Knights Rd & Nanton Dr,40.089871,-74.967911,,,1, +22585,Franklin Mills & Design Center Dr,40.090806,-74.965006,,,1, +22587,Academy Rd & Biscayne Dr - FS,40.092542,-74.966178,,,1, +22588,Academy Rd & Bandon Dr,40.093644,-74.967188,,,1, +22589,Academy Rd & Nanton Dr,40.094827,-74.968565,,,1, +22590,Academy Rd & Medford Rd,40.096611,-74.975689,,,1, +22592,Byberry Rd & Medford Rd,40.098305,-74.977619,,,1, +22593,Byberry Rd & Dunks Ferry Rd,40.099136,-74.977992,,,1, +22594,Spruce St & 38th St,39.951301,-75.199029,,,1, +22595,Frankford Av & Ellie Dr - FS,40.053776,-75.005986,,,1, +22596,Roosevelt Blvd & Comly St,40.032733,-75.079172,,,1, +22598,Comly Rd & Norcom Rd,40.099225,-74.995623,,,1, +22600,Byberry Rd & Barbary Rd - FS,40.100747,-74.979786,,,1, +22601,Byberry Rd & Thornton Rd,40.102488,-74.981924,,,1, +22602,Townsend Rd & Byberry Rd - MBFS,40.104479,-74.982018,,,1, +22603,Townsend Rd & McNulty Rd - 1,40.106813,-74.978098,,,1, +22604,McNulty Rd & Commerce Way,40.1089,-74.980144,,,1, +22605,McNulty Rd & Black Lake Pl,40.10974,-74.983002,,,1, +22606,Southampton Rd & Endicott St ,40.119922,-74.995131,,,1, +22607,Southampton Rd & London Rd ,40.120783,-74.996345,,,1, +22608,Southampton Rd & Kovats Dr ,40.122416,-74.998809,,,1, +22609,Worthington Rd & Napier St ,40.122316,-75.003438,,,1, +22610,Worthington Rd & Michelle Dr,40.12139,-75.004343,,,1, +22611,Worthington Rd & Lindenhurst St,40.120056,-75.005665,,,1, +22612,Worthington Rd & Byberry Rd ,40.118722,-75.006998,,,1, +22613,Byberry Rd & Stevens Rd ,40.11988,-75.00898,,,1, +22614,Byberry Rd & Kelvin Av ,40.120696,-75.010348,,,1, +22615,Byberry Rd & Lindsay St ,40.121495,-75.011729,,,1, +22616,Byberry Rd & Proctor Rd ,40.122294,-75.013062,,,1, +22617,Byberry Rd & Bustleton Av ,40.123578,-75.01522,,,1, +22618,Byberry Rd & Depue Av,40.125014,-75.017662,,,1, +22619,Byberry Rd & Audubon - MBFS,40.127204,-75.021343,,,1, +22620,Byberry Rd & Blakeslee Dr ,40.128236,-75.023089,,,1, +22621,Philmont Av & Byberry Rd - FS,40.129294,-75.024504,,,1, +22622,Philmont Av & Cardella St ,40.129238,-75.021059,,,1, +22623,Philmont Av & Erwin St ,40.12997,-75.018392,,,1, +22624,Philmont Av & Napier St ,40.130588,-75.016423,,,1, +22625,Philmont Av & Barcalow St ,40.130816,-75.015119,,,1, +22626,Overhill Av & Buxmont St,40.13577,-75.01528,,,1, +22627,Overhill Av & Smithfield Av,40.134931,-75.01506,,,1, +22628,Overhill Av & Simms St,40.134144,-75.01478,,,1, +22629,Philmont Av & Barcalow Av ,40.130941,-75.014953,,,1, +22630,Philmont Av & Napier St ,40.130722,-75.016422,,,1, +22631,Philmont Av & Erwin St ,40.130104,-75.018367,,,1, +22632,Philmont Av & Susan Ter ,40.12938,-75.02094,,,1, +22633,Byberry Rd & Blakeslee Dr ,40.128192,-75.023303,,,1, +22634,Byberry Rd & Audubon Av ,40.126415,-75.020294,,,1, +22635,Byberry Rd & Depue Av ,40.125006,-75.017911,,,1, +22636,Byberry Rd & Bustleton Av ,40.12357,-75.01554,,,1, +22637,Byberry Rd & Proctor Rd ,40.122203,-75.013244,,,1, +22638,Byberry Rd & Kelvin Av ,40.120624,-75.010554,,,1, +22639,Byberry Rd & Stevens Rd ,40.119845,-75.009182,,,1, +22640,Worthington Rd & Byberry Rd - FS,40.118748,-75.006761,,,1, +22641,Worthington Rd & Lindenhurst St,40.119895,-75.005607,,,1, +22642,Worthington Rd & Michelle Dr,40.121194,-75.00432,,,1, +22643,Worthington Rd & Napier St,40.122094,-75.003401,,,1, +22644,Southampton Rd & Theresa Dr,40.123242,-75.000523,,,1, +22645,Southampton Rd & Damar Dr - FS,40.121851,-74.998209,,,1, +22646,Southampton Rd & Endicott St,40.119887,-74.995346,,,1, +22647,Southampton Rd & Carter Rd,40.118676,-74.993659,,,1, +22648,Southampton Rd & Roosevelt Blvd - FS,40.11379,-74.987498,,,1, +22649,Southampton Rd & Roosevelt Blvd - MBFS,40.113236,-74.987171,,,1, +22650,McNulty Rd & Southampton Rd - FS,40.109592,-74.986566,,,1, +22651,McNulty Rd & Black Lake Pl,40.109607,-74.983264,,,1, +22652,McNulty Rd & Commerce Way ,40.108946,-74.980487,,,1, +22653,McNulty Rd & Townsend Rd ,40.107134,-74.977977,,,1, +22655,Townsend Rd & Southampton Rd,40.104208,-74.982769,,,1, +22656,Townsend Rd & McNulty Rd - MBFS,40.10527,-74.980419,,,1, +22657,Byberry Rd & Barbary Rd ,40.100795,-74.980061,,,1, +22658,Byberry Rd & Dunks Ferry Rd,40.099307,-74.978346,,,1, +22659,Byberry Rd & Medford Rd,40.098484,-74.97789,,,1, +22660,Academy Rd & Medford Rd,40.096308,-74.975845,,,1, +22661,Academy Rd & Torrey Rd,40.096398,-74.971182,,,1, +22662,Academy Rd & Nanton Dr,40.094792,-74.968908,,,1, +22663,Academy Rd & Bandon Dr,40.093609,-74.967532,,,1, +22664,Academy Rd & Biscayne Dr,40.092355,-74.96638,,,1, +22665,Knights Rd & Nanton Dr ,40.090094,-74.968051,,,1, +22666,Knights Rd & Liberty Bell Blvd,40.089091,-74.969489,,,1, +22667,Knights Rd & Woodhaven Rd - FS,40.086647,-74.97225,,,1, +22668,Knights Rd & Fairdale Rd ,40.084608,-74.973813,,,1, +22669,Knights Rd & Fairdale Rd - MBFS,40.083433,-74.974719,,,1, +22670,Knights Rd & Patrician Dr ,40.081529,-74.976317,,,1, +22671,Knights Rd & Chalfont Dr ,40.080587,-74.977281,,,1, +22672,Knights Rd & Chalfont Dr - MBFS,40.078805,-74.978156,,,1, +22673,Knights Rd & Dorchester Rd ,40.076978,-74.978901,,,1, +22674,Knights Rd & Dundee Av ,40.075881,-74.979404,,,1, +22675,Knights Rd & Ellicott Rd ,40.074785,-74.97992,,,1, +22676,Knights Rd & Kane Rd ,40.073805,-74.980399,,,1, +22677,Knights Rd & Red Lion Rd ,40.072166,-74.981179,,,1, +22678,Red Lion Rd & Waldemire Rd ,40.074347,-74.984513,,,1, +22679,Red Lion Rd & Keswick Rd ,40.075821,-74.987449,,,1, +22680,Keswick Rd & Ashfield Ln,40.075315,-74.988434,,,1, +22681,Morrell Av & Ashfield Ln,40.073396,-74.988209,,,1, +22682,Morrell Av & Crown Av,40.071663,-74.987758,,,1, +22683,Morrell Av & Prince Cir ,40.070253,-74.987885,,,1, +22684,Morrell Av & W Crown - FS,40.06764,-74.988481,,,1, +22685,Morrell Av & Crestmont Av - FS,40.06519,-74.987243,,,1, +22687,Grant Av & Torresdale Av,40.058285,-74.988125,,,1, +22688,Grant Av & Eden Hall Ln,40.055596,-74.985102,,,1, +22689,Grant Av & State Rd ,40.053,-74.982895,,,1, +22690,State Rd & Fitler St ,40.052051,-74.98445,,,1, +22691,State Rd & James St ,40.051634,-74.985162,,,1, +22692,State Rd & Convent Ln,40.049797,-74.988213,,,1, +22693,State Rd & Pearson Av ,40.048209,-74.990918,,,1, +22694,State Rd & Arendell St ,40.047046,-74.992794,,,1, +22695,State Rd & Linden Av ,40.045937,-74.994728,,,1, +22697,State Rd & Ashburner St,40.037148,-75.01131,,,1, +22698,State Rd & Ashburner St - MBFS,40.035723,-75.013879,,,1, +22699,State Rd & Rhawn Corrections - MBNS,40.034691,-75.015758,,,1, +22700,State Rd & Rhawn Corrections - MBNS,40.032552,-75.019589,,,1, +22701,Rhawn St & Tulip St - FS,40.033638,-75.024004,,,1, +22702,Torresdale Av & Decatur St,40.034805,-75.026256,,,1, +22703,Torresdale Av & Hartel Av,40.034229,-75.02737,,,1, +22704,Torresdale Av & Shelmire Av,40.032419,-75.030892,,,1, +22705,Torresdale Av & Bleigh Av,40.031612,-75.032433,,,1, +22706,Torresdale Av & Cottman Av - FS,40.029811,-75.035883,,,1, +22707,Torresdale Av & Friendship St,40.028879,-75.037709,,,1, +22708,Princeton Av & Torresdale Av - FS,40.028008,-75.03886,,,1, +22709,Princeton Av & Edmund St,40.02672,-75.037733,,,1, +22710,Princeton Av & Tulip St,40.02621,-75.037286,,,1, +22711,Princeton Av & State Rd ,40.024107,-75.035572,,,1, +22712,State Rd & Knorr St ,40.020747,-75.040165,,,1, +22713,State Rd & Unruh Av,40.020158,-75.042851,,,1, +22714,State Rd & Magee Av,40.019369,-75.044747,,,1, +22715,Milnor St & Levick St ,40.01619,-75.046998,,,1, +22716,Tacony St & Robbins Av - FS,40.016531,-75.050554,,,1, +22717,Tacony St & Devereaux Av - FS,40.015581,-75.052414,,,1, +22718,Tacony St & Van Kirk St ,40.012529,-75.058423,,,1, +22719,Tacony St & Fraley St ,40.00968,-75.064027,,,1, +22720,Tacony St & Bridge St ,40.008721,-75.068771,,,1, +22721,Bridge St & Eadom St - FS,40.010365,-75.069295,,,1, +22722,Bridge St & Tulip St - FS,40.011991,-75.069937,,,1, +22723,5th St & Chelten Av - FS,40.047372,-75.128032,,,1, +22724,5th St & 64th Av,40.048915,-75.127694,,,1, +22725,5th St & 65th Av,40.050119,-75.127417,,,1, +22726,5th St & 66th Av,40.051654,-75.127056,,,1, +22727,5th St & Oak Ln,40.053857,-75.126597,,,1, +22728,Oak Ln & Asbury Av - FS,40.055748,-75.122544,,,1, +22729,Oak Ln & Barclay Rd,40.057311,-75.119333,,,1, +22730,Oak Ln & Parkview Rd,40.058235,-75.117413,,,1, +22731,Oak Ln & Bell Rd,40.059149,-75.115552,,,1, +22732,Oak Ln & Brookfield Rd,40.060837,-75.11234,,,1, +22733,Oak Ln & Ashbourne Rd,40.061762,-75.110833,,,1, +22735,Ashbourne Rd & Front St,40.059797,-75.10688,,,1, +22736,Ashbourne Rd & Boyer Rd,40.060686,-75.105705,,,1, +22737,Ashbourne Rd & Croyden Rd,40.061318,-75.105088,,,1, +22738,Ashbourne Rd & Jenkintown Rd,40.061986,-75.104304,,,1, +22739,Ashbourne Rd & Rolling Green Rd,40.062081,-75.103038,,,1, +22740,Ashbourne Rd & Waltham Rd,40.061951,-75.101146,,,1, +22741,Ashbourne Rd & Oak Hill Dr,40.06184,-75.099822,,,1, +22742,Ashbourne Rd & Foster Rd,40.061123,-75.09869,,,1, +22743,Ashbourne Rd & Rowland Av,40.060048,-75.097217,,,1, +22744,Central Av & Ashbourne Rd - FS,40.059804,-75.095787,,,1, +22745,Central Av & Laurel Av,40.061174,-75.094385,,,1, +22746,Central Av & Myrtle Av,40.0621,-75.09347,,,1, +22747,Central Av & Franklin Av,40.062892,-75.09265,,,1, +22748,Central Av & Beecher Av,40.06364,-75.091889,,,1, +22749,Central Av & Jefferson Av,40.064406,-75.091117,,,1, +22750,Central Av & Cottman Av,40.065189,-75.090356,,,1, +22751,Cottman Av & Rupert St,40.045636,-75.056525,,,1, +22752,Cottman Av & Brous Av - FS,40.043124,-75.052127,,,1, +22753,Cottman Av & Battersby St,40.042352,-75.050772,,,1, +22754,Cottman Av & Rowland Av,40.039597,-75.045962,,,1, +22755,Cottman Av & Crispin St,40.038691,-75.044359,,,1, +22756,Cottman Av & Frankford Av,40.03678,-75.041023,,,1, +22757,Cottman Av & Erdrick St,40.035426,-75.039599,,,1, +22758,Cottman Av & Walker St,40.034416,-75.038755,,,1, +22760,Street Rd & Richlieu Rd - FS,40.121588,-74.961989,,,5, +22761,Street Rd & Kingston Way - FS,40.124589,-74.962514,,,5, +22762,Roosevelt Blvd & Old Lincoln - MBFS,40.120668,-74.979074,,,1, +22764,Roosevelt Blvd & Southampton - MBNS,40.11709,-74.984223,,,1, +22765,Roosevelt Blvd & Southampton - FS ,40.114257,-74.988371,,,1, +22766,Roosevelt Blvd & Hornig Rd,40.112481,-74.990974,,,1, +22767,Roosevelt Blvd & Whitten St,40.092926,-75.017516,,,1, +22768,Roosevelt Blvd & Conwell Av,40.089233,-75.021086,,,1, +22770,Roosevelt Blvd & Bowler St,40.086208,-75.024002,,,1, +22771,Roosevelt Blvd & Lott St,40.084945,-75.02524,,,1, +22773,Roosevelt Blvd & Fulmer St,40.083708,-75.026418,,,1, +22774,Cottman Av & Cottage St,40.033361,-75.037897,,,1, +22775,Cottman Av & Jackson St,40.032277,-75.037027,,,1, +22776,Ashburner St & Hegerman St,40.039425,-75.014182,,,1, +22777,Ashburner St & Torresdale Av,40.04033,-75.015288,,,1, +22778,Torresdale Av & Strahle St,40.042629,-75.011432,,,1, +22779,Torresdale Av & Pennypack St,40.043819,-75.009628,,,1, +22780,Torresdale Av & Megargee St,40.044991,-75.007871,,,1, +22781,Torresdale Av & Tolbut St,40.047043,-75.004796,,,1, +22782,Torresdale Av & Linden Av,40.050248,-75,,,1, +22783,Linden Av & Ditman St - MBNS,40.051313,-75.000797,,,1, +22784,Linden Av & Jackson St,40.052585,-75.002232,,,1, +22785,Linden Av & Cottage St,40.053661,-75.003456,,,1, +22786,Linden Av & Ditman St,40.051538,-75.001257,,,1, +22787,Linden Av & Cottage St - FS,40.053518,-75.003492,,,1, +22788,Linden Av & Jackson St,40.052622,-75.002469,,,1, +22789,Linden Av & Torresdale Av,40.050436,-75.000022,,,1, +22790,Torresdale Av & Tolbut St - FS,40.047079,-75.004997,,,1, +22791,Torresdale Av & Pennypack St,40.044015,-75.009603,,,1, +22792,Torresdale Av & Strahle St,40.042816,-75.011395,,,1, +22793,Torresdale Av & Blakiston St,40.041582,-75.013259,,,1, +22794,Ashburner St & Torresdale Av - FS,40.040178,-75.015324,,,1, +22795,State Rd & Ashburner St - FS,40.036962,-75.011678,,,1, +22796,State Rd & Bleigh Av,40.027432,-75.02878,,,1, +22797,State Rd & Cottman Av,40.025799,-75.031567,,,1, +22799,Cottman Av & Jackson St,40.032241,-75.036792,,,1, +22800,Cottman Av & Cottage St,40.033297,-75.037649,,,1, +22801,Cottman Av & Walker St,40.034353,-75.038518,,,1, +22802,Cottman Av & Erdrick St,40.035391,-75.039352,,,1, +22803,Cottman Av & Crispin St,40.038663,-75.044075,,,1, +22804,Cottman Av & Hawthorne St,40.041445,-75.048908,,,1, +22805,Cottman Av & Battersby St,40.042369,-75.050511,,,1, +22807,Cottman Av & Dungan Rd,40.057987,-75.077712,,,1, +22808,Cottman Av & Rockwell Av,40.063099,-75.086475,,,1, +22809,Cottman Av & Shelbourne St,40.063852,-75.087808,,,1, +22810,Cottman Av & Hasbrook Av,40.064354,-75.088657,,,1, +22811,Central Av & Jefferson Av,40.064602,-75.09114,,,1, +22812,Central Av & Beecher Av,40.063836,-75.091912,,,1, +22813,Central Av & Franklin Av,40.063089,-75.092673,,,1, +22814,Central Av & Myrtle Av,40.062314,-75.093433,,,1, +22815,Central Av & Laurel Av,40.061371,-75.094407,,,1, +22816,Central Av & Tookany Creek Pkwy,40.060214,-75.095572,,,1, +22817,Ashbourne Rd & Rowland Av,40.060066,-75.096956,,,1, +22818,Ashbourne Rd & Foster Rd,40.061109,-75.098446,,,1, +22819,Ashbourne Rd & Oak Hill Dr,40.06192,-75.099609,,,1, +22820,Ashbourne Rd & Waltham Rd,40.062066,-75.100968,,,1, +22821,Ashbourne Rd & Rolling Green Rd,40.062187,-75.102884,,,1, +22822,Ashbourne Rd & Croyden Rd - FS,40.061388,-75.105227,,,1, +22823,Ashbourne Rd & Boyer Rd - FS,40.060706,-75.105908,,,1, +22824,Ashbourne Rd & Arbor Rd,40.05993,-75.106679,,,1, +22825,Oak Ln Rd & Coventry Av,40.060527,-75.113145,,,1, +22827,Oak Ln Rd & Parkview Rd,40.05844,-75.117306,,,1, +22828,Oak Ln Rd & Barclay Rd,40.057516,-75.119225,,,1, +22829,Oak Ln Rd & New 2nd St,40.056468,-75.121335,,,1, +22830,Oak Ln Rd & Asbury Av,40.055954,-75.122532,,,1, +22831,Oak Ln Rd & 5th St,40.054132,-75.126442,,,1, +22832,5th St & 67th Av,40.053385,-75.126859,,,1, +22833,5th St & 66th Av,40.051815,-75.127209,,,1, +22834,5th St & 65th Av,40.050289,-75.127546,,,1, +22835,5th St & 64th Av,40.049005,-75.127835,,,1, +22836,5th St & Chelten Av,40.047265,-75.128221,,,1, +22837,Cheltenham Av & Saul St,40.0279,-75.077789,,,1, +22838,Cheltenham Av & Oakland St,40.028582,-75.078992,,,1, +22839,Cheltenham Av & Horrocks St,40.029595,-75.08076,,,1, +22840,Cheltenham Av & Large St,40.030609,-75.082552,,,1, +22841,Cheltenham Av & Roosevelt Blvd,40.03147,-75.084061,,,1, +22842,Oxford Av & Roosevelt Blvd - FS,40.032489,-75.084754,,,1, +22843,Oxford Av & Frontenac St,40.034816,-75.08706,,,1, +22844,Oxford Av & Loretto Av,40.033535,-75.085245,,,1, +22845,Oxford Av & Langdon St,40.037944,-75.088594,,,1, +22846,Oxford Av & Benner St - FS ,40.039193,-75.088481,,,1, +22847,Oxford Av & Devereaux Av,40.042153,-75.088354,,,1, +22848,Algon Av & Devereaux Av - FS,40.041565,-75.08769,,,1, +22849,Algon Av & Robbins Av ,40.042508,-75.086455,,,1, +22850,Algon Av & Levick St ,40.043602,-75.085102,,,1, +22851,Magee Av & Algon Av - FS,40.046157,-75.082524,,,1, +22852,Magee Av & Pennway St ,40.046964,-75.083975,,,1, +22853,Magee Av & Whitaker Av ,40.04787,-75.085602,,,1, +22854,Whitaker Av & Unruh Av ,40.049045,-75.084508,,,1, +22855,Whitaker Av & Knorr St ,40.050282,-75.083344,,,1, +22856,Whitaker Av & Longshore Av ,40.05152,-75.082131,,,1, +22857,Whitaker Av & Tyson Av - FS,40.052944,-75.080824,,,1, +22858,Whitaker Av & Princeton Av ,40.054048,-75.07979,,,1, +22859,Whitaker Av & Saint Vincent St - FS,40.055517,-75.078399,,,1, +22860,Verree Rd & Faunce St ,40.066684,-75.082093,,,1, +22861,Verree Rd & Napfle Av ,40.067841,-75.080929,,,1, +22862,Verree Rd & Hartel Av ,40.069069,-75.079681,,,1, +22863,Verree Rd & Borbeck Av ,40.07027,-75.078433,,,1, +22864,Verree Rd & Loney St ,40.07149,-75.077208,,,1, +22865,Verree Rd & Stanwood St ,40.073884,-75.07476,,,1, +22866,Verree Rd & Solly Av ,40.075103,-75.073512,,,1, +22867,Verree Rd & Hoffnagle St ,40.076322,-75.072252,,,1, +22868,Verree Rd & Kendrick St ,40.078716,-75.069803,,,1, +22869,Verree Rd & Tustin St ,40.080025,-75.068519,,,1, +22870,Verree Rd & Tustin St - MBFS,40.0819,-75.065895,,,1, +22871,Verree Rd & Tustin St - MBFS,40.083189,-75.064019,,,1, +22872,Verree Rd & Alburger Av,40.094655,-75.050743,,,1, +22873,Verree Rd & Pecan Dr ,40.097022,-75.048293,,,1, +22874,Verree Rd & Welsh Rd ,40.098107,-75.047163,,,1, +22875,Verree Rd & Redd Rambler Dr ,40.100351,-75.042678,,,1, +22876,Verree Rd & Morefield Rd ,40.101708,-75.039855,,,1, +22877,Verree Rd & Medway Rd ,40.102373,-75.038466,,,1, +22878,Verree Rd & Glenn St ,40.103056,-75.037031,,,1, +22879,Verree Rd & Chesworth Rd ,40.10428,-75.034456,,,1, +22880,Northeast Av & Selmer Rd - FS,40.106987,-75.021447,,,1, +22881,Northeast Av & Selmer Rd - FS,40.106125,-75.022327,,,1, +22882,Red Lion Rd & Northeast Av - FS,40.101598,-75.02743,,,1, +22883,Red Lion Rd & Jamison Av - FS,40.099866,-75.021653,,,1, +22884,Red Lion Rd & Wilbur St - FS,40.098172,-75.019604,,,1, +22885,Comly Rd & Brandon Rd,40.092583,-74.987523,,,1, +22887,Decatur Rd & Drummond Rd,40.08883,-74.996538,,,1, +22888,Decatur Rd & Darnell Rd,40.091183,-74.993104,,,1, +22889,Decatur Rd & Comly Rd - MBNS Route 50,40.092587,-74.991061,,,1, +22890,Decatur Rd & Comly Rd - MBFS,40.092596,-74.991262,,,1, +22891,Decatur Rd & Comly Rd - Route 50,40.09391,-74.989159,,,1, +22892,Comly Rd & Thorton Rd - FS,40.096141,-74.991583,,,1, +22893,Comly Rd & Norcom Rd,40.099162,-74.99534,,,1, +22894,Comly Rd & Nestor Rd,40.103166,-74.999623,,,1, +22895,Comly Rd & Roosevelt Blvd - MBNS,40.104009,-75.000636,,,1, +22896,Roosevelt Blvd & Michener St,40.079152,-75.030809,,,1, +22897,Roosevelt Blvd & Goodnaw St,40.076865,-75.03301,,,1, +22898,Roosevelt Blvd & Welsh Rd,40.074721,-75.035069,,,1, +22899,Roosevelt Blvd & Tremont St,40.07311,-75.036603,,,1, +22900,Roosevelt Blvd & Grant Av,40.081163,-75.028869,,,1, +22901,Roosevelt Blvd & Winchester Av,40.068864,-75.040293,,,1, +22902,Roosevelt Blvd & Strahle St,40.062634,-75.043095,,,1, +22903,Roosevelt Blvd & Hoffnagle St,40.061083,-75.043789,,,1, +22904,Roosevelt Blvd & Stanwood St,40.058153,-75.045792,,,1, +22905,Roosevelt Blvd & Rhawn St,40.056987,-75.046957,,,1, +22907,Roosevelt Blvd & Borbeck Av,40.054442,-75.049466,,,1, +22909,Roosevelt Blvd & Napfle St,40.05218,-75.051287,,,1, +22910,Roosevelt Blvd & Faunce St,40.050592,-75.051556,,,1, +22911,Roosevelt Blvd & Shelmire Av,40.048817,-75.051707,,,1, +22912,Roosevelt Blvd & Bleigh Av,40.046838,-75.052451,,,1, +22913,Roosevelt Blvd & Friendship St,40.042514,-75.057049,,,1, +22915,Roosevelt Blvd & Tyson Av,40.040699,-75.05901,,,1, +22916,Roosevelt Blvd & Longshore Av,40.039515,-75.060257,,,1, +22918,Roosevelt Blvd & Unruh Av,40.037256,-75.062953,,,1, +22919,Roosevelt Blvd & Harbison Av,40.036849,-75.064255,,,1, +22920,Roosevelt Blvd & Magee Av,40.036629,-75.065214,,,1, +22921,Roosevelt Blvd & Hellerman St,40.036056,-75.067641,,,1, +22922,Roosevelt Blvd & Levick St,40.035597,-75.069629,,,1, +22924,Roosevelt Blvd & Devereaux Av,40.034434,-75.074778,,,1, +22926,Roosevelt Blvd & Large St,40.033267,-75.079774,,,1, +22927,Roosevelt Blvd & Van Kirk St,40.03275,-75.082128,,,1, +22928,Roosevelt Blvd & Oxford Cir,40.032335,-75.083962,,,1, +22929,Roosevelt Blvd & Sanger St,40.031253,-75.086498,,,1, +22930,Roosevelt Blvd & Bridge St,40.030312,-75.088181,,,1, +22931,Academy Rd & Amity Rd,40.083493,-74.991566,,,1, +22932,Red Lion Rd & Academy Rd - FS,40.081512,-74.994216,,,1, +22933,Red Lion Rd & Calera Rd ,40.079514,-74.991886,,,1, +22934,Red Lion Rd & Pelle Rd - FS,40.077927,-74.990062,,,1, +22935,Red Lion Rd & Keswick Rd - FS,40.075651,-74.987474,,,1, +22936,Kinghts Rd & Dorchester Rd ,40.076843,-74.978665,,,1, +22937,Red Lion Rd & Knights Rd - MBFS,40.07289,-74.982305,,,1, +22938,Red Lion Rd & Pelle Rd ,40.077971,-74.989884,,,1, +22939,Red Lion Rd & Calera Rd ,40.079477,-74.99165,,,1, +22940,Red Lion Rd & Academy Rd ,40.081682,-74.994251,,,1, +22941,Academy Rd & Amity Rd,40.08311,-74.991746,,,1, +22942,Comly Rd & Comly Pl,40.090682,-74.98505,,,1, +22943,Comly Rd & Decatur Rd - FS,40.09425,-74.989323,,,1, +22944,Haldeman Av & Tomlinson Rd ,40.099281,-75.012261,,,1, +22945,Haldeman Av & Sanford St ,40.098609,-75.014205,,,1, +22946,Haldeman Av & Greymont St ,40.097982,-75.016019,,,1, +22947,Haldeman Av & Red Lion Rd ,40.097274,-75.017999,,,1, +22948,Red Lion Rd & Wilbur St,40.098377,-75.019496,,,1, +22949,Red Lion Rd & Jamison Av - FS,40.100331,-75.021934,,,1, +22950,Red Lion Rd & Northeast Av,40.101848,-75.027405,,,1, +22951,Red Lion Rd & Bustleton Av,40.102538,-75.028501,,,1, +22952,Red Lion Rd & Bustleton Av - FS,40.102924,-75.029186,,,1, +22953,Sandmeyer Ln & 10090,40.113968,-75.035645,,,1, +22954,Sandmeyer Ln & 10059,40.112298,-75.032601,,,1, +22956,Verree Rd & Creswood Rd ,40.107527,-75.028201,,,1, +22957,Verree Rd & Greymont St ,40.106596,-75.030135,,,1, +22958,Verree Rd & Alburger Av ,40.09494,-75.050777,,,1, +22959,Verree Rd & Chesworth Rd ,40.10429,-75.034953,,,1, +22960,Verree Rd & Glenn St,40.103297,-75.037053,,,1, +22961,Verree Rd & Medway Rd ,40.10257,-75.03856,,,1, +22962,Verree Rd & Morefield Rd ,40.101967,-75.039841,,,1, +22963,Verree Rd & Pine Hill Rd ,40.100362,-75.043199,,,1, +22964,Verree Rd & Pine Hill Rd - MBFS,40.099608,-75.044777,,,1, +22965,Verree Rd & Welsh Rd ,40.098491,-75.047078,,,1, +22966,Verree Rd & Pecan Dr ,40.097201,-75.048482,,,1, +22967,Verree Rd & Charette Rd ,40.094202,-75.05155,,,1, +22968,Verree Rd & Marchman Rd ,40.090858,-75.055709,,,1, +22969,Verree Rd & Bloomfield Av ,40.089756,-75.057087,,,1, +22970,Verree Rd & Bloomfield Av - 1 MBFS,40.086852,-75.059007,,,1, +22971,Verree Rd & Bloomfield Av - 2 MBFS,40.085527,-75.060895,,,1, +22972,Verree Rd & Susquehanna Rd ,40.080319,-75.068434,,,1, +22973,Verree Rd & Kendrick St ,40.078895,-75.069908,,,1, +22974,Verree Rd & Hoffnagle St ,40.076554,-75.072274,,,1, +22975,Verree Rd & Solly Av ,40.075344,-75.073546,,,1, +22976,Verree Rd & Stanwood St - MBNS,40.074499,-75.074414,,,1, +22977,Verree Rd & Loney St ,40.071722,-75.077243,,,1, +22978,Verree Rd & Borbeck Av ,40.070512,-75.078479,,,1, +22979,Verree Rd & Hartel Av ,40.069319,-75.07975,,,1, +22980,Verree Rd & Ferndale St ,40.068135,-75.080951,,,1, +22981,Verree Rd & Faunce St ,40.06688,-75.082199,,,1, +22982,Verree Rd & Oxford Av ,40.065563,-75.083483,,,1, +22983,Cottman Av & Oxford Av - FS,40.061118,-75.083398,,,1, +22984,Whitaker Av & Saint Vincent St,40.05541,-75.078636,,,1, +22985,Whitaker Av & Princeton Av,40.054182,-75.079801,,,1, +22986,Whitaker Av & Tyson Av - FS,40.05266,-75.081239,,,1, +22987,Whitaker Av & Longshore Av,40.051671,-75.082166,,,1, +22988,Whitaker Av & Knorr St,40.050416,-75.083355,,,1, +22989,Whitaker Av & Unruh St,40.049179,-75.08452,,,1, +22990,Whitaker Av & Magee Av,40.047924,-75.08572,,,1, +22991,Oxford Av & Magee Av - FS,40.048409,-75.087125,,,1, +22992,Oxford Av & Hellerman St ,40.047135,-75.087663,,,1, +22993,Oxford Av & Levick St,40.045601,-75.088344,,,1, +22995,Oxford Av & Algon Av,40.041228,-75.088294,,,1, +22996,Market St & 48th St - FS,39.959187,-75.21718,,,1, +22997,Oxford Av & Benner St,40.039158,-75.088612,,,1, +22998,Market St & 49th St - FS,39.959441,-75.219352,,,1, +22999,Market St & 50th St - FS,39.959676,-75.221135,,,1, +23000,Oxford Av & Langdon St - FS,40.037632,-75.088607,,,1, +23001,Market St & 51st St - FS,39.959929,-75.223106,,,1, +23002,Oxford Av & Frontenac St,40.034843,-75.087237,,,1, +23003,Market St & 53rd St - FS,39.960408,-75.227049,,,1, +23004,Market St & 54th St - FS,39.960634,-75.228809,,,1, +23005,Market St & 55th St - FS,39.960896,-75.230993,,,1, +23006,Oxford Av & Loretto Av,40.033526,-75.085423,,,1, +23007,Oxford Av & Roosevelt Blvd,40.032347,-75.084873,,,1, +23008,Cheltenham Av & Roosevelt Bvld,40.031399,-75.084156,,,1, +23009,Market St & 61st St - FS,39.962351,-75.242587,,,1, +23010,Market St & 62nd St,39.962595,-75.24457,,,1, +23011,Cheltenham Av & Large St,40.0306,-75.082729,,,1, +23012,Cheltenham Av & Horrocks St ,40.029587,-75.080937,,,1, +23013,Cheltenham Av & Oakland St ,40.028573,-75.079169,,,1, +23014,Cheltenham Av & Saul St ,40.027892,-75.077967,,,1, +23015,63rd St & Arch St,39.964186,-75.246373,,,1, +23016,63rd St & Race St,39.965712,-75.246062,,,1, +23017,63rd St & Vine St,39.967238,-75.245739,,,1, +23018,Sandmeyer Ln & 10060,40.10977,-75.034864,,,1, +23025,Haldeman Av & Red Lion Rd - FS,40.097167,-75.017917,,,1, +23026,Haldeman Av & Sanford St ,40.098431,-75.014313,,,1, +23027,Haldeman Av & Tomlinson Rd ,40.099077,-75.012463,,,1, +23032,Caroline Rd & Charter Rd - FS,40.097038,-75.004657,,,1, +23033,Caroline Rd & Charter Rd - MBNS,40.097683,-75.00401,,,1, +23035,Charter Rd & Norcom Rd,40.094288,-75.003108,,,1, +23036,Red Lion Rd & Norcom Rd - FS,40.091105,-75.010764,,,1, +23039,Bustleton Av & Robbins Av,40.034148,-75.071422,,,1, +23040,Bustleton Av & Levick St - FS,40.036098,-75.069958,,,1, +23041,Bustleton Av & Hellerman St,40.036748,-75.069292,,,1, +23042,Bustleton Av & Longshore Av,40.041589,-75.064349,,,1, +23043,Bustleton Av & Tyson Av - FS,40.042995,-75.062959,,,1, +23044,Bustleton Av & Princeton St,40.044036,-75.061925,,,1, +23045,Bustleton Av & Saint Vincent St - FS,40.045567,-75.060581,,,1, +23046,Roosevelt Blvd & Rising Sun Av,40.026248,-75.121548,,,1, +23047,Roosevelt Blvd & Front St,40.026002,-75.123204,,,1, +23048,Roosevelt Blvd & Broad St - FS,40.017951,-75.149585,,,1, +23049,Hunting Park Av & Germantown Av,40.016032,-75.153741,,,1, +23050,Hunting Park Av & Clarrisa St,40.014798,-75.156571,,,1, +23051,29th St & Hunting Park Av - FS,40.005817,-75.176742,,,1, +23052,Allegheny Av & Ridge Av,40.006115,-75.187685,,,1, +23054,Townsend Rd & Old Townsend Rd,40.105392,-74.980047,,,1, +23055,Southampton Rd & McNulty Rd - MBFS,40.10795,-74.986801,,,1, +23056,Roosevelt Blvd & Crown Way - FS,40.112095,-74.990338,,,1, +23058,Southampton Rd & McNulty Rd,40.109709,-74.986885,,,1, +23059,Roosevelt Blvd & Old Lincoln - MBNS,40.119947,-74.979482,,,1, +23060,Old Lincoln Hwy & Northgate Dr,40.123784,-74.976558,,,1, +23061,Old Lincoln Hwy & Interplex Dr - MBFS,40.125514,-74.97631,,,1, +23062,Old Lincoln Hwy & Somerton Rd,40.128726,-74.975923,,,1, +23063,Old Lincoln Hwy & Concord Dr - FS,40.13126,-74.975587,,,1, +23064,Old Lincoln Hwy & Street Rd - MBFS,40.133736,-74.97408,,,1, +23065,Old Lincoln Hwy & Trailwood Rd,40.135612,-74.971973,,,1, +23066,Horizon Corp Center - 1,40.137045,-74.966079,,,1, +23067,Horizon Corp Center - 2,40.137216,-74.963994,,,1, +23068,Horizon Corp Center 3,40.138701,-74.96254,,,1, +23070,Rockhill Rd & Horizon Corp Ctr - FS,40.139625,-74.961326,,,1, +23071,Rockhill Rd & Neshaminy Blvd - MBNS,40.136575,-74.95725,,,1, +23074,Somerton Rd & Metropolitan Dr,40.131136,-74.985947,,,1, +23075,Somerton Rd & Trevose Rd - 2,40.134342,-74.991468,,,1, +23076,Bucks County Technology Park - 1,40.135649,-74.987588,,,1, +23077,Bucks County Technology Park - 2,40.136586,-74.9848,,,1, +23078,Street Rd & Reading Av - MBNS,40.136409,-74.982789,,,1, +23080,Rockhill Rd & Neshaminy Rd - MBFS,40.136645,-74.956965,,,1, +23083,Old Lincoln Hwy & Neshaminy St,40.155759,-74.923466,,,1, +23084,Old Lincoln Hwy & Glen Av,40.156364,-74.920809,,,1, +23085,Old Lincoln Hwy & Hulmeville Av,40.157686,-74.916595,,,1, +23087,Old Lincoln Hwy & Bellevue Av,40.158775,-74.912218,,,1, +23089,Bellvue Av & Comly Av - MBNS,40.160891,-74.912332,,,1, +23090,Bellevue Av & Park Av,40.163483,-74.913238,,,1, +23091,Pine St & Woods Dr - FS,40.170485,-74.914372,,,1, +23092,Bellevue Av & Pine St,40.167545,-74.915577,,,1, +23093,Pine St & Flowers Av,40.174627,-74.916569,,,1, +23094,Pine St & Maple Av,40.176585,-74.917348,,,1, +23095,Maple Av & Beechwood Cir,40.177761,-74.91253,,,1, +23096,Maple Av & Flowers Mill Rd,40.178763,-74.908673,,,1, +23097,Maple Av & S Flowers Mill - FS,40.177741,-74.903279,,,1, +23099,Bustleton Av & Shelmire Av,40.050868,-75.057124,,,1, +23100,Bustleton Av & Bleigh Av,40.0498,-75.05804,,,1, +23101,Bustleton Av & Oakmont St,40.051527,-75.056565,,,1, +23102,Bustleton Av & Faunce St,40.052159,-75.056018,,,1, +23103,Bustleton Av & Napfle St,40.053423,-75.054947,,,1, +23104,Bustleton Av & Hartel Av,40.054893,-75.053946,,,1, +23105,Bustleton Av & Borbeck Av,40.056381,-75.053347,,,1, +23106,Bustleton Av & Loney St,40.057932,-75.052712,,,1, +23107,Bustleton Av & Rhawn St,40.059465,-75.051982,,,1, +23108,Bustleton Av & Stanwood St - FS,40.061464,-75.051759,,,1, +23109,Bustleton Av & Solly Av,40.063017,-75.051609,,,1, +23110,Bustleton Av & Hoffnagle St,40.064828,-75.051445,,,1, +23111,Bustleton Av & Strahle St,40.066532,-75.051129,,,1, +23112,Bustleton Av & Bergen St,40.069386,-75.050558,,,1, +23113,Bustleton Av & Tustin St,40.070775,-75.04945,,,1, +23114,Bustleton Av & Mower St,40.072181,-75.048118,,,1, +23115,Bustleton Av & Tolbut St - MBFS,40.073891,-75.046666,,,1, +23116,Bustleton Av & Benton St,40.074371,-75.046261,,,1, +23117,Old Bustleton Av & Winchester - FS,40.077208,-75.042898,,,1, +23118,Old Bustleton Av & Gregg St,40.078294,-75.041804,,,1, +23119,Old Bustleton Av & Ambassador St,40.079905,-75.040257,,,1, +23120,Old Bustleton Av & Welsh Rd,40.082369,-75.037807,,,1, +23121,Bustleton Av & Grant Av - FS,40.085782,-75.036877,,,1, +23122,Bustleton Av & Murray St,40.086915,-75.03577,,,1, +23123,Bustleton Av & Fulmer St,40.088143,-75.034616,,,1, +23124,Bustleton Av & Bowler St,40.090931,-75.032648,,,1, +23125,Haldeman Av & Bustleton Av - FS,40.094128,-75.030584,,,1, +23126,Haldeman Av & Clark St,40.094976,-75.02781,,,1, +23127,Haldeman Av & Conwell Av,40.095772,-75.025309,,,1, +23128,Haldeman Av & Montour St,40.096699,-75.022334,,,1, +23129,Bustleton Av & Proctor Rd,40.103448,-75.028271,,,1, +23130,Bustleton Av & Gorman St - FS,40.105552,-75.02736,,,1, +23131,Bustleton Av & Lawler St,40.109882,-75.025135,,,1, +23132,Bustleton Av & Kelvin Av,40.111085,-75.024311,,,1, +23133,Tomlinson Rd & Gifford St,40.113933,-75.02452,,,1, +23134,Tomlinson Rd & Ferndale St - MBNS,40.115369,-75.027009,,,1, +23136,Tomlinson Rd & Kevin Ct,40.116979,-75.031001,,,1, +23137,Tomlinson Rd & Greiner Rd,40.118495,-75.033454,,,1, +23139,Tomlinson Rd & Philmont Pl,40.119473,-75.035047,,,1, +23140,Tomlinson Rd & Rennard St,40.120361,-75.036379,,,1, +23141,Rennard St & Gardner St,40.120928,-75.034968,,,1, +23142,Rennard St & Rennard Pl,40.121335,-75.033829,,,1, +23143,Rennard St & Greiner Rd,40.121953,-75.031896,,,1, +23144,Rennard St & Larkspur St,40.121758,-75.029494,,,1, +23145,Rennard St & Ferndale St,40.1192,-75.024798,,,1, +23146,Rennard St & Gifford St,40.117879,-75.022296,,,1, +23147,Bustleton Av & Hendrix St,40.118829,-75.017994,,,1, +23148,Bustleton Av & Leo Mall Dr,40.119907,-75.017337,,,1, +23149,Bustleton Av & Somerton Av,40.121894,-75.016153,,,1, +23150,Bustleton Av & Byberry Rd,40.123435,-75.015375,,,1, +23151,Bustleton Av & Trevose Rd,40.1243,-75.014991,,,1, +23152,Bustleton Av & Denise Dr,40.126119,-75.014389,,,1, +23153,Bustleton Av & Hazel Ln,40.126841,-75.014207,,,1, +23154,Bustleton Av & Poquessing Av,40.128768,-75.013722,,,1, +23155,Bustleton Av & Philmont Av,40.131592,-75.012202,,,1, +23157,Bustleton Av & Dolton Rd,40.137931,-75.007394,,,1, +23158,Bustleton Av & Woodland Av,40.13999,-75.006624,,,1, +23159,Bustleton Av & Front St,40.142058,-75.00583,,,1, +23160,Bustleton Av & Pine Hill Rd - FS,40.143467,-75.005277,,,1, +23161,Bustleton Av & 5th Av,40.145455,-75.004531,,,1, +23162,Bustleton Av & Park Ln - MBFS,40.147068,-75.003906,,,1, +23163,Bustleton Av & Stoltz Av,40.149234,-75.003076,,,1, +23164,Bustleton Av & Street Rd,40.150616,-75.002511,,,1, +23165,Bustleton Pk & Ruth St,40.152354,-75.001826,,,1, +23166,Bustleton Pk & Bridgetown Pk,40.153691,-75.001321,,,1, +23167,Bridgetown Pk & Arbor Ln,40.15573,-74.997152,,,1, +23168,Bridgetown Pk & Milton St,40.156536,-74.995287,,,1, +23169,Bridgetown Pk & School Ln - FS,40.157492,-74.993091,,,1, +23170,Bridgetown Pk & Myrtle Av,40.158486,-74.991545,,,1, +23171,Bridgetown Pk & Elmwood Av,40.159872,-74.989701,,,1, +23172,Elmwood Av & Anna Av,40.158447,-74.987815,,,1, +23173,Elmwood Av & Poplar St,40.157317,-74.98646,,,1, +23174,Elmwood Av & Meadowbrook Rd - FS,40.156213,-74.984513,,,1, +23175,Elmwood Av & Oak Rd,40.155018,-74.982483,,,1, +23176,Elmwood Av & Forest Av,40.153491,-74.979793,,,1, +23177,Elmwood Av & 2nd St,40.152521,-74.978129,,,1, +23178,Brownsville Rd & Magnolia Av,40.152951,-74.973579,,,1, +23179,Brownsville Rd & Somers Av,40.154152,-74.972411,,,1, +23180,Brownsville Rd & Bristol Rd,40.155682,-74.97092,,,1, +23181,Bristol Rd & Chestnut Av,40.154837,-74.969398,,,1, +23182,Bristol Rd & Spruce Av,40.152942,-74.966177,,,1, +23183,Bristol Rd & Pine St - FS,40.149274,-74.961417,,,1, +23184,Bristol Rd & Grove Av - FS,40.147958,-74.960419,,,1, +23185,Bristol Rd & Old Lincoln Hwy,40.145022,-74.958118,,,1, +23186,Old Lincoln Hwy & Bristol Rd - MBFS,40.143981,-74.961357,,,1, +23187,Old Lincoln Hwy & Northbrook Dr - FS,40.142707,-74.964527,,,1, +23188,Rockhill Rd & Overlook Blvd,40.140936,-74.963567,,,1, +23189,Old Lincoln Hwy & Northbrook Dr,40.142528,-74.964457,,,1, +23190,Old Lincoln Hwy & Northbrook - MBFS,40.143829,-74.961334,,,1, +23191,Bristol Rd & Old Lincoln Hwy - FS,40.145102,-74.958022,,,1, +23192,Bristol Rd & Old Lincoln Hwy - MBFS,40.146811,-74.959326,,,1, +23193,Bristol Rd & Grove Av,40.148083,-74.960336,,,1, +23194,Bristol Rd & Brook Av or Pine St - FS,40.149604,-74.961498,,,1, +23195,Bristol Rd & Fulton Av,40.151738,-74.963923,,,1, +23196,Bristol Rd & Marshall Av,40.152878,-74.965787,,,1, +23197,Bristol Rd & Lonsdale Av,40.153462,-74.966778,,,1, +23199,Bristol Rd & Hilton Av,40.154845,-74.969161,,,1, +23200,Brownsville Rd & Bristol Rd - FS,40.155682,-74.97111,,,1, +23201,Brownsville Rd & Sycamore Av - FS,40.153548,-74.973208,,,1, +23202,Brownsville Rd & Andrews Rd,40.153023,-74.973685,,,1, +23203,Brownsville Rd & Clearview Av,40.151715,-74.974937,,,1, +23204,Elmwood Av & 2nd St,40.152538,-74.977868,,,1, +23205,Elmwood Av & Forrest Av,40.15349,-74.979532,,,1, +23206,Elmwood Av & Oak Rd,40.155035,-74.982222,,,1, +23207,Elmwood Av & Meadowbrook Rd,40.15614,-74.984158,,,1, +23208,Elmwood Av & Poplar St - FS,40.157299,-74.986199,,,1, +23209,Elmwood Av & Anna Av,40.158446,-74.98759,,,1, +23210,Elmwood Av & Prospect Av,40.159405,-74.988768,,,1, +23211,Elmwood Av & Bridgetown Pk,40.159979,-74.989558,,,1, +23212,Bridgetown Pk & Henry Av,40.159127,-74.990937,,,1, +23213,Bridgetown Pk & Bertha St - FS,40.157644,-74.993078,,,1, +23214,Bridgetown Pk & Helen St,40.156377,-74.99594,,,1, +23215,Bridgetown Pk & Revere St - FS,40.155403,-74.998243,,,1, +23216,Bridgetown Pk & Buck Rd,40.154668,-74.999858,,,1, +23217,Bridgetown Pk & Bustleton Pk,40.153941,-75.001319,,,1, +23218,Bustleton Av & Ruth St,40.152506,-75.001955,,,1, +23219,Bustleton Av & Street Rd,40.150955,-75.002569,,,1, +23220,Bustleton Av & Street Rd - MBFS,40.150126,-75.002905,,,1, +23222,Bustleton Av & Roland Av - MBFS,40.147978,-75.003735,,,1, +23223,Bustleton Av & Park Ln,40.14673,-75.004216,,,1, +23224,Bustleton Av & Forge Ln - FS,40.145411,-75.004721,,,1, +23225,Bustleton Av & Pinehill Rd,40.143396,-75.005479,,,1, +23226,Bustleton Av & Does Ln,40.141881,-75.006068,,,1, +23227,Bustleton Av & Woodland Rd,40.14016,-75.006742,,,1, +23228,Bustleton Av & Bridle Path Ln,40.138458,-75.007379,,,1, +23229,Bustleton Av & Dolton Rd - MBFS,40.136728,-75.008017,,,1, +23230,Bustleton Av & Southampton Rd,40.133131,-75.01082,,,1, +23231,Bustleton Av & Philmont Av - FS,40.131566,-75.012404,,,1, +23232,Bustleton Av & Petoni Pl,40.128937,-75.01384,,,1, +23233,Bustleton Av & Petoni Pl - MBFS,40.127448,-75.014215,,,1, +23234,Bustleton Av & Denise Dr - FS,40.126057,-75.014579,,,1, +23235,Bustleton Av & Byberry Rd,40.123677,-75.015456,,,1, +23236,Bustleton Av & Somerton Av,40.122037,-75.016271,,,1, +23237,Bustleton Av & Leo Mall Driveway - MBNS,40.119961,-75.017478,,,1, +23238,Bustleton Av & Leo Mall Driveway - FS,40.119454,-75.017801,,,1, +23239,Bustleton Av & Hendrix St ,40.119008,-75.018064,,,1, +23240,Bustleton Av & Larkspur St,40.116089,-75.020543,,,1, +23241,Bustleton Av & Burgess St,40.114932,-75.021662,,,1, +23242,Bustleton Av & Gifford St,40.111272,-75.024357,,,1, +23243,Bustleton Av & Lawler St,40.110043,-75.025205,,,1, +23245,Bustleton Av & Red Lion Rd - MBFS,40.101488,-75.029466,,,1, +23250,Bustleton Av & President St,40.093577,-75.031332,,,1, +23251,Bustleton Av & Bowler St,40.091109,-75.032742,,,1, +23252,Bustleton Av & Lott St,40.089693,-75.033554,,,1, +23253,Bustleton Av & Fulmer St,40.088339,-75.034639,,,1, +23254,Bustleton Av & Murray St,40.087111,-75.035793,,,1, +23255,Welsh Rd & Bustleton Av - FS,40.083888,-75.038248,,,1, +23256,Welsh Rd & Old Bustleton Av,40.082575,-75.037865,,,1, +23257,Old Bustleton Av & Welsh Rd - MBFS,40.081373,-75.038995,,,1, +23258,Old Bustleton Av & Asmbassador - FS,40.079914,-75.040458,,,1, +23259,Old Bustleton Av & Gregg St,40.078562,-75.041814,,,1, +23260,Old Bustleton Av & Winchester Av,40.077289,-75.043087,,,1, +23261,Bustleton Av & Benton St - FS,40.0748,-75.046341,,,1, +23262,Bustleton Av & Tolbut St,40.073785,-75.047187,,,1, +23263,Bustleton Av & Mower St,40.072476,-75.048282,,,1, +23264,Bustleton Av & Tustin St,40.071079,-75.049555,,,1, +23265,Hunting Park Av & 21st St,40.011563,-75.163119,,,1, +23266,Hunting Park Av & 18th St,40.014441,-75.156856,,,1, +23267,Hunting Park Av & 17th St ,40.015161,-75.155328,,,1, +23268,Hunting Park Av & 16th St,40.016884,-75.15161,,,1, +23269,Bustleton Av & Fox Chase Rd,40.067193,-75.051291,,,1, +23270,Hunting Park Av & 19th St,40.013743,-75.158631,,,1, +23271,Hunting Park Av & Blaine St,40.012754,-75.160845,,,1, +23272,Hunting Park Av & Blabon St,40.011777,-75.162952,,,1, +23273,Hunting Park Av & Schuyler St,40.011137,-75.164208,,,1, +23274,Bustleton Av & Hoffnagle St,40.065025,-75.051574,,,1, +23275,Bustleton Av & Solly Av,40.06324,-75.051737,,,1, +23276,Roosevelt Blvd & Allengrove St - FS,40.027612,-75.0931,,,1, +23277,Bustleton Av & Stanwood St,40.061465,-75.051924,,,1, +23278,Bustleton Av & Rhawn St,40.059644,-75.052099,,,1, +23279,Bustleton Av & Loney St,40.058174,-75.052758,,,1, +23280,Bustleton Av & Borbeck Av,40.056614,-75.053404,,,1, +23281,Bustleton Av & Glendale Av - FS,40.054813,-75.054123,,,1, +23282,Bustleton Av & Napfle St,40.053575,-75.054981,,,1, +23283,Bustleton Av & Faunce St,40.052311,-75.056052,,,1, +23284,Bustleton Av & Shelmire Av,40.05102,-75.057159,,,1, +23285,Bustleton Av & Bleigh Av - FS,40.049453,-75.058491,,,1, +23286,Bustleton Av & Saint Vincent St,40.04547,-75.060735,,,1, +23287,Roosevelt Blvd & Fillmore St,40.026884,-75.094451,,,1, +23288,Bustleton Av & Princeton Av,40.044179,-75.061948,,,1, +23289,Bustleton Av & Tyson Av,40.042915,-75.063184,,,1, +23290,Roosevelt Blvd & Summerdale Av,40.026944,-75.097169,,,1, +23291,Bustleton Av & Longshore Av,40.041723,-75.064361,,,1, +23292,Roosevelt Blvd & Langdon St,40.027823,-75.098525,,,1, +23293,Bustleton Av & Hellerman St,40.036882,-75.069304,,,1, +23295,Bustleton Av & Levick St,40.035671,-75.070539,,,1, +23297,Bustleton Av & Robbins Av - FS,40.033979,-75.071647,,,1, +23298,Roosevelt Blvd & Garland St,40.029414,-75.106426,,,1, +23300,Roosevelt Blvd & Bingham St,40.027302,-75.114533,,,1, +23301,Roosevelt Blvd & F St,40.028316,-75.109907,,,1, +23302,Roosevelt Blvd & B St,40.02659,-75.119312,,,1, +23303,Roosevelt Blvd & 4th St,40.024734,-75.130491,,,1, +23304,Roosevelt Blvd & 10th St,40.020953,-75.1413,,,1, +23305,Roosevelt Blvd & Old York Rd - FS,40.018901,-75.147501,,,1, +23306,Roosevelt Blvd & Old York Rd,40.018811,-75.147336,,,1, +23307,Roosevelt Blvd & Courtland St,40.021691,-75.138329,,,1, +23308,Roosevelt Blvd & Wyoming Av,40.022438,-75.136825,,,1, +23309,Roosevelt Blvd & 3rd St,40.024109,-75.130423,,,1, +23310,Roosevelt Blvd & 2nd St,40.024586,-75.128021,,,1, +23311,Roosevelt Blvd & Front St,40.025271,-75.123692,,,1, +23312,Roosevelt Blvd & B St,40.025868,-75.119552,,,1, +23313,Roosevelt Blvd & Rorer St,40.026579,-75.114525,,,1, +23314,Roosevelt Blvd & F St,40.027513,-75.110064,,,1, +23316,Roosevelt Blvd & Whitaker Av,40.028779,-75.106074,,,1, +23317,Roosevelt Blvd & Pennway St,40.02924,-75.104677,,,1, +23319,Roosevelt Blvd & Langdon St,40.027378,-75.099224,,,1, +23320,Roosevelt Blvd & Summerdale Av - FS,40.026006,-75.096559,,,1, +23321,Roosevelt Blvd & Foulkrod St,40.025993,-75.095058,,,1, +23322,Roosevelt Blvd & Allengrove St,40.026835,-75.09295,,,1, +23324,Southampton Rd & Theresa Dr,40.123278,-75.000248,,,1, +23330,Haldeman Av & Bustleton Av - MBNS,40.094518,-75.02973,,,1, +23331,Haldeman Av & Red Lion Rd - MBFS,40.097103,-75.02019,,,1, +23332,Haldeman Av & Montour St,40.096877,-75.022214,,,1, +23333,Haldeman Av & Conwell Av,40.09595,-75.02519,,,1, +23334,Haldeman Av & Clark St,40.095154,-75.027691,,,1, +23335,Holme Av & Fairfield St,40.058216,-75.043249,,,1, +23336,Holme Av & Revere St,40.057693,-75.041549,,,1, +23337,Holme Av & Revere St - MBFS,40.05838,-75.038517,,,1, +23338,Holme Av & Winchester Av,40.0571,-75.034562,,,1, +23339,Holme Av & Stamford St,40.056517,-75.031202,,,1, +23340,Holme Av & Holme Cir,40.05636,-75.029174,,,1, +23341,Ashton Rd & Holme Cir - FS,40.056973,-75.028106,,,1, +23342,Ashton Rd & Jenny Pl,40.058165,-75.026928,,,1, +23343,Ashton Rd & Jenny Pl - MBFS,40.058983,-75.026096,,,1, +23344,Ashton Rd & Tolbut St - FS,40.06054,-75.024526,,,1, +23345,Ashton Rd & Maxwell St,40.061261,-75.023765,,,1, +23346,Ashton Rd & Tremont St,40.062533,-75.022492,,,1, +23347,Ashton Rd & Willits Rd - FS,40.063209,-75.021838,,,1, +23348,Ashton Rd & Ryerson Rd - NS,40.064455,-75.020589,,,1, +23350,Ashton Rd & Woodbridge Rd,40.066359,-75.018733,,,1, +23351,Ashton Rd & Norcross Ln - FS,40.068529,-75.01658,,,1, +23352,Ashton Rd & Saxton Rd - MBFS,40.070255,-75.014843,,,1, +23353,Ashton Rd & Grant Av,40.072017,-75.013117,,,1, +23354,Grant Av & Ashton Rd - MBFS,40.071208,-75.011419,,,1, +23355,Academy Rd & Glenn St,40.074273,-75.001973,,,1, +23356,Academy Rd & President St,40.075021,-75.001507,,,1, +23357,Academy Rd & Avalon St,40.075707,-75.000888,,,1, +23358,Academy Rd & Avalon St - MBFS,40.077362,-74.999518,,,1, +23359,Academy Rd & Morrell Av,40.078555,-74.998529,,,1, +23360,Academy Rd & Red Lion Rd,40.079827,-74.997291,,,1, +23361,Red Lion Rd & Drummond Rd - FS Route 50,40.081573,-74.998913,,,1, +23362,Comly Rd & Comly Pl - ,40.090544,-74.985091,,,1, +23363,Academy Rd & Newberry Rd,40.092081,-74.981882,,,1, +23364,Academy Rd & Woodhaven Rd,40.093432,-74.980182,,,1, +23365,Academy Rd & Fairdale Rd,40.094871,-74.978256,,,1, +23366,Academy Rd & Byberry Rd,40.09583,-74.976901,,,1, +23370,Knights Rd & Lakewood Av,40.099654,-74.956097,,,1, +23371,Street Rd & Knights Rd - FS,40.105462,-74.95084,,,1, +23372,Street Rd & Knights Rd - MBFS,40.106687,-74.951447,,,1, +23373,Street Rd & Castle Dr - MBFS,40.108592,-74.952298,,,1, +23374,Street Rd & Mechanicsville Rd - MBFS,40.112045,-74.954323,,,1, +23375,Street Rd & Tillman Dr,40.114286,-74.956971,,,1, +23376,Street Rd & Tillman Dr South - FS,40.115397,-74.958041,,,1, +23377,Street Rd & Mechanicsville Rd,40.111088,-74.953737,,,1, +23379,Street Rd & Knights Rd - MBNS,40.106223,-74.951438,,,1, +23381,Knights Rd & Virgina Av - FS,40.103975,-74.951796,,,1, +23382,Knights Rd & Dunks Ferry Rd,40.101228,-74.954596,,,1, +23383,Knights Rd & Plum Av,40.097966,-74.958132,,,1, +23384,Knights Rd & McCarthy Cir,40.095117,-74.96028,,,1, +23385,Knights Rd & Mechanicsville Rd,40.093571,-74.962089,,,1, +23386,Academy Rd & Byberry Rd,40.096151,-74.976769,,,1, +23387,Academy Rd & Fairdale Rd - FS,40.095148,-74.978289,,,1, +23388,Academy Rd & Woodhaven Rd - FS,40.093522,-74.980477,,,1, +23389,Academy Rd & Brandon Rd,40.091896,-74.982487,,,1, +23390,Decatur Rd & Drummond Rd - MBFS,40.086619,-74.999959,,,1, +23391,Red Lion Rd & Decatur Rd - MBFS,40.08346,-75.001466,,,1, +23392,Red Lion Rd & Drummond Rd,40.081359,-74.998902,,,1, +23393,Red Lion Rd & Academy Rd,40.080122,-74.997454,,,1, +23394,Academy Rd & Morrell Av - FS,40.078618,-74.998836,,,1, +23395,Academy Rd & Morrell Av - MBFS,40.07731,-74.99992,,,1, +23396,Academy Rd & Avalon St,40.075948,-75.001064,,,1, +23397,Academy Rd & President St,40.075263,-75.001624,,,1, +23398,Academy Rd & Glenn St,40.074497,-75.002125,,,1, +23399,Ashton Rd & Grant Av - FS,40.071982,-75.013295,,,1, +23400,Ashton Rd & Grant Av - MBFS,40.070265,-75.014973,,,1, +23401,Ashton Rd & Norcross Ln,40.068494,-75.016757,,,1, +23402,Ashton Rd & Woodbridge Rd,40.066493,-75.018744,,,1, +23404,Ashton Rd & Ryerson Rd,40.064615,-75.020576,,,1, +23405,Ashton Rd & Tremont St,40.062676,-75.022492,,,1, +23406,Ashton Rd & Maxwell St,40.061413,-75.023764,,,1, +23407,Ashton Rd & Tolbut St,40.060505,-75.024704,,,1, +23408,Ashton Rd & Tolbut St - MBFS,40.059037,-75.02619,,,1, +23409,Ashton Rd & Jenny Pl,40.058334,-75.026904,,,1, +23410,Ashton Rd & Old Ashton Rd,40.057721,-75.02751,,,1, +23411,Ashton Rd & Holme Cir,40.056813,-75.028414,,,1, +23412,Holme Av & Stamford St,40.056821,-75.030957,,,1, +23413,Holme Av & Winchester Av,40.057241,-75.03403,,,1, +23414,Holme Av & Winchester Av - MBFS,40.058649,-75.038882,,,1, +23415,Holme Av & Revere St,40.058031,-75.041204,,,1, +23416,Holme Av & Fairfield St,40.058331,-75.04274,,,1, +23417,Holme Av & Roosevelt Blvd,40.058851,-75.043612,,,1, +23418,Champlost St & 11th St,40.043781,-75.138014,,,1, +23419,11th St & Spencer St,40.045146,-75.137808,,,1, +23420,11th St & Godfrey Av,40.046537,-75.137507,,,1, +23421,11th St & Medary Av,40.048287,-75.13757,,,1, +23422,11th St & Chelten Av,40.049473,-75.1374,,,1, +23423,11th St & 65th Av,40.051329,-75.136979,,,1, +23424,11th St & 66th Av,40.05289,-75.136629,,,1, +23425,11th St & Oak Ln,40.054844,-75.136207,,,1, +23426,11th St & 69th Av,40.057217,-75.135677,,,1, +23427,69th Av & 12th St,40.057407,-75.136741,,,1, +23428,12th St & Lakeside Av,40.058504,-75.136606,,,1, +23429,70th Av & 12th St,40.059191,-75.136308,,,1, +23430,70th Av & Cheltenham Av,40.059755,-75.133514,,,1, +23431,Mountain Av & Valley Rd,40.060374,-75.130993,,,1, +23432,Mountain Av & Sharpless Rd - FS,40.061511,-75.128634,,,1, +23433,Mountain Av & Stratford Av - FS,40.062384,-75.127767,,,1, +23434,Mountain Av & Prospect Av,40.063979,-75.126968,,,1, +23435,Mountain Av & Union Av,40.066059,-75.127149,,,1, +23436,Union Av & Montgomery Av,40.066208,-75.125823,,,1, +23437,Montgomery Av & Ashbourne Rd,40.068244,-75.126181,,,1, +23438,Montgomery Av & Gerard Av,40.070057,-75.126706,,,1, +23439,Montgomery Av & High School Rd,40.07193,-75.126461,,,1, +23440,High School Rd & Church Rd,40.072502,-75.123052,,,1, +23441,Church Rd & Cadwalader Av,40.073147,-75.123676,,,1, +23442,Cadwalader Av & Waring Rd,40.074447,-75.122429,,,1, +23443,Cadwalader Av & Shoemaker Rd,40.075987,-75.120908,,,1, +23444,Cadwalader Av & Marvin Rd,40.078287,-75.119632,,,1, +23445,Cadwalader Av & Brookside Rd,40.079783,-75.118265,,,1, +23446,Cadwalader Av & Township Line Rd,40.081127,-75.116923,,,1, +23447,Forrest Av & Willow Av,40.086121,-75.111813,,,1, +23449,Forrest Av & Douglas Av,40.086725,-75.110569,,,1, +23450,Fox Chase Rd & Kirkwood St - FS,40.086667,-75.101885,,,1, +23453,Cedar Rd & Gibson Av,40.087047,-75.097115,,,1, +23454,Cedar Rd & Montgomery Av,40.088792,-75.095403,,,1, +23455,Cedar Rd & Old Huntingdon Pk,40.090092,-75.094096,,,1, +23456,Huntingdon Pk & Montgomery Av,40.088565,-75.093878,,,1, +23457,Huntingdon Pk & San Gabriel Av,40.087842,-75.093846,,,1, +23458,Huntingdon Pk & Berkley Av - NS,40.08653,-75.093793,,,1, +23459,Huntingdon Pk & Shady Ln,40.084887,-75.093611,,,1, +23461,Huntingdon Pk & Penn Av - FS,40.08342,-75.092565,,,1, +23462,Huntingdon Pk & Central Av,40.082606,-75.091575,,,1, +23463,Huntingdon Pk & Park Av,40.08197,-75.090845,,,1, +23464,Huntingdon Pk & Sylvania Av,40.081352,-75.090126,,,1, +23465,Huntingdon Pk & Fox St,40.079356,-75.087805,,,1, +23466,Huntingdon Pk & Fillmore St,40.078666,-75.087016,,,1, +23467,Huntingdon Pk & Burholme Av - MBNS,40.078102,-75.086368,,,1, +23468,Rhawn St & Elberon Av,40.076675,-75.083323,,,1, +23469,Rhawn St & Rockwell Av - FS,40.076431,-75.082295,,,1, +23470,Rhawn St & Ridgeway St - FS,40.075739,-75.080807,,,1, +23471,Rhawn St & Halstead St,40.074861,-75.079333,,,1, +23472,Rhawn St & Ferndale St,40.073928,-75.077741,,,1, +23473,Rhawn St & Verree Rd,40.072924,-75.076054,,,1, +23474,Rhawn St & Rising Sun Av,40.07199,-75.07419,,,1, +23475,Rhawn St & Bingham St,40.071137,-75.072443,,,1, +23476,Rhawn St & Tabor Av,40.07023,-75.070579,,,1, +23477,Rhawn St & Ripley St,40.069503,-75.06908,,,1, +23478,Rhawn St & Dungan Rd,40.068731,-75.067511,,,1, +23479,Rhawn St & Meadowbrook Dr - FS,40.0677,-75.065742,,,1, +23480,Rhawn St & Dorcas St - MBNS,40.067018,-75.064586,,,1, +23481,Rhawn St & Algon Av,40.066157,-75.063183,,,1, +23482,Rhawn St & Sumerdale Av,40.065081,-75.061474,,,1, +23483,Rhawn St & Frontenac St,40.064023,-75.059776,,,1, +23484,Rhawn St & Loretto Av,40.062794,-75.057843,,,1, +23485,Rhawn St & Large St,40.060731,-75.054329,,,1, +23486,Rhawn St & Bustleton Av,40.059546,-75.052183,,,1, +23487,Rhawn St & Eastwood St,40.058766,-75.050732,,,1, +23488,Rhawn St & Bradford St,40.057715,-75.04881,,,1, +23489,Rhawn St & Roosevelt Blvd - FS,40.056351,-75.046275,,,1, +23490,Rhawn St & Calvert St,40.055463,-75.044647,,,1, +23491,Rhawn St & Revere St,40.054538,-75.042985,,,1, +23492,Rhawn St & Brous Av,40.054071,-75.042124,,,1, +23493,Rhawn St & Lexington Av,40.053183,-75.040473,,,1, +23494,Rhawn St & Holmehurst Av,40.050893,-75.036169,,,1, +23495,Rhawn St & Cresco Av - FS,40.046917,-75.031887,,,1, +23496,Rhawn St & Crispin St,40.044414,-75.030671,,,1, +23497,Rhawn St & Leon St,40.043457,-75.029932,,,1, +23498,Rhawn St & Craig St,40.042329,-75.029075,,,1, +23499,Rhawn St & Frankford Av - FS,40.041184,-75.028265,,,1, +23500,Rhawn St & Erdrick St,40.040103,-75.027716,,,1, +23501,Rhawn St & Walker St,40.038833,-75.02712,,,1, +23502,Rhawn St & Jackson St,40.036956,-75.026256,,,1, +23503,Rhawn St & Jackson St,40.036249,-75.025716,,,1, +23504,Rhawn St & Walker St,40.038708,-75.026908,,,1, +23505,Rhawn St & Edrick St,40.039995,-75.027492,,,1, +23506,Rhawn St & Frankford Av,40.041327,-75.028182,,,1, +23507,Rhawn St & Craig St,40.042257,-75.028839,,,1, +23508,Rhawn St & Leon St,40.043385,-75.029696,,,1, +23509,Rhawn St & Rowland Av,40.045648,-75.031421,,,1, +23510,Rhawn St & Cresco Av,40.047773,-75.031528,,,1, +23511,Rhawn St & Holmehurst Av,40.050919,-75.035945,,,1, +23512,Rhawn St & Lexington Av,40.0532,-75.040166,,,1, +23513,Rhawn St & Brous Av,40.054124,-75.041864,,,1, +23514,Rhawn St & Revere St,40.05451,-75.042595,,,1, +23515,Rhawn St & Fairfield St,40.055901,-75.045154,,,1, +23516,Rhawn St & Roosevelt Blvd - FS,40.05697,-75.047135,,,1, +23517,Rhawn St & Bradford St,40.057679,-75.048444,,,1, +23518,Rhawn St & Eastwood St,40.058783,-75.050472,,,1, +23519,Rhawn St & Bustleton Av,40.059563,-75.051922,,,1, +23520,Rhawn St & Large St,40.060748,-75.054069,,,1, +23521,Rhawn St & Loretto Av,40.062794,-75.057594,,,1, +23522,Rhawn St & Frontenac St,40.064022,-75.059528,,,1, +23523,Rhawn St & Summerdale Av,40.06508,-75.061225,,,1, +23524,Rhawn St & Meadowbrook Dr - FS,40.067995,-75.065989,,,1, +23525,Rhawn St & Ripley St,40.069556,-75.068903,,,1, +23526,Rhawn St & Tabor Av,40.070256,-75.070342,,,1, +23527,Rhawn St & Bingham St,40.071154,-75.072183,,,1, +23528,Rhawn St & Rising Sun Av,40.072016,-75.073953,,,1, +23529,Rhawn St & Ferndale St,40.073936,-75.077457,,,1, +23530,Rhawn St & Halstead St,40.074878,-75.079037,,,1, +23531,Rhawn St & Ridgeway St,40.075873,-75.080736,,,1, +23532,Rhawn St & Jeanes St,40.076583,-75.082365,,,1, +23533,Rhawn St & Elberon Av - FS,40.076813,-75.083518,,,1, +23534,Huntingdon Pk & Burholme Av,40.077958,-75.086037,,,1, +23536,Huntingdon Pk & Jarrett Av,40.080456,-75.088876,,,1, +23537,Huntingdon Pk & Sylvania Av,40.081343,-75.089925,,,1, +23539,Huntingdon Pk & Central Av,40.082587,-75.091386,,,1, +23540,Huntingdon Pk & Penn Av,40.083581,-75.092564,,,1, +23541,Huntingdon Pk & Shady Ln,40.084735,-75.093387,,,1, +23542,Huntingdon Pk & Berkley Av - FS,40.086735,-75.09365,,,1, +23543,Huntingdon Pk & Pasadena Av - FS,40.087288,-75.093659,,,1, +23544,Huntingdon Pk & Montgomery Av,40.088449,-75.093725,,,1, +23545,Cedar Rd & Old Huntingdon Pk - FS,40.090164,-75.09419,,,1, +23546,Cedar Rd & Montgomery Av,40.088926,-75.095414,,,1, +23548,Cedar Rd & Gibson Rd,40.087181,-75.097126,,,1, +23549,Cedar Rd & Fox Chase Rd,40.085766,-75.098517,,,1, +23551,Fox Chase Rd & Kirkwood Av,40.086819,-75.101931,,,1, +23553,Forrest Av & Douglas Av - FS,40.086788,-75.110746,,,1, +23554,Forrest Av & Willow Av - FS,40.08622,-75.111955,,,1, +23555,Forrest Av & Jenkintown Rd - MBNS,40.085646,-75.114312,,,1, +23556,Cadwalader Av & Marvin Rd - FS,40.078306,-75.119808,,,1, +23557,Cadwalader Av & Shoemaker Rd,40.076183,-75.120931,,,1, +23558,Cadwalader Av & Waring Rd,40.074679,-75.122416,,,1, +23559,Cadwalader Av & Church Rd,40.073254,-75.123842,,,1, +23560,High School Rd & Church Rd - FS,40.072556,-75.123229,,,1, +23561,High School Rd & Montgomery Av,40.072065,-75.12652,,,1, +23562,Harrison Av & Montgomery Av,40.07103,-75.12669,,,1, +23563,Montgomery Av & Gerard Av - FS,40.070139,-75.126871,,,1, +23564,Montgomery Av & Ashbourne Rd,40.068423,-75.126382,,,1, +23565,Montgomery Av & Union Av,40.066404,-75.125834,,,1, +23566,Union Av & Mountain Av,40.066211,-75.12716,,,1, +23567,Mountain Av & Prospect Av,40.064221,-75.127121,,,1, +23568,Mountain Av & Stratford Av,40.062384,-75.12798,,,1, +23569,Mountain Av & Sharpless Rd,40.061511,-75.128847,,,1, +23570,Mountain Av & Valley Rd,40.060543,-75.13085,,,1, +23571,Mountain Av & Cheltenham Av,40.059977,-75.133099,,,1, +23572,12th St & Lakeside Av - FS,40.058594,-75.136854,,,1, +23573,12th St & 69th Av,40.057425,-75.13693,,,1, +23574,69th Av & 11th St,40.057253,-75.135925,,,1, +23575,11th St & Oak Ln Av,40.05513,-75.136301,,,1, +23576,11th St & 66th Av,40.053113,-75.136735,,,1, +23577,11th St & 65th Av,40.051561,-75.137072,,,1, +23578,11th St & Chelten Av,40.049863,-75.137419,,,1, +23579,11th St & Medary Av,40.048537,-75.137759,,,1, +23581,Old Lincoln Hwy & Woodbourne Rd,40.178074,-74.885068,,,1, +23582,Old Lincoln Hwy & Wheeler Way - FS,40.177438,-74.901291,,,1, +23583,Old Lincoln Hwy & S Flowers Mill Rd,40.177911,-74.903408,,,1, +23584,Old Lincoln Hwy & N Flowers Mill Rd ,40.178747,-74.906979,,,1, +23585,Maple Av & Beechwood Cir,40.177966,-74.912304,,,1, +23586,Pine St & Flowers Av,40.174807,-74.916828,,,1, +23587,Pine St & Maple Av - FS,40.17647,-74.917562,,,1, +23588,Pine St & Woods Dr,40.170379,-74.914609,,,1, +23589,Bellevue Av & Highland Av - FS,40.167421,-74.915779,,,1, +23590,Bellevue Av & Park Av,40.163645,-74.913509,,,1, +23591,Bellevue Av & Comly Rd - FS,40.161088,-74.91258,,,1, +23592,Pratt St & Castor Av ,40.028214,-75.088108,,,1, +23594,Pratt St & Saul St,40.02434,-75.081164,,,1, +23595,Pratt St & Oakland St,40.025138,-75.08259,,,1, +23596,Pratt St & Oxford Av,40.026385,-75.084842,,,1, +23597,Pratt St & Large St,40.026995,-75.085927,,,1, +23598,Pratt St & Rutland St,40.027595,-75.087023,,,1, +23599,Pratt St & Roosevelt Blvd ,40.028842,-75.08924,,,1, +23600,Pratt St & Roosevelt Blvd - FS,40.029291,-75.090101,,,1, +23601,Pratt St & Loretto Av ,40.030071,-75.091445,,,1, +23602,Pratt St & Summerdale Av ,40.03086,-75.092883,,,1, +23603,Summerdale Av & Bridge St,40.032062,-75.091837,,,1, +23604,Summerdale Av & Sanger St,40.033317,-75.090614,,,1, +23605,Summerdale Av & Cheltenham Av ,40.034564,-75.089378,,,1, +23606,Summerdale Av & Van Kirk St,40.035828,-75.088154,,,1, +23607,Oxford Av & Martins Mills Rd,40.044121,-75.08886,,,1, +23608,Martins Mill Rd & Montour St,40.046044,-75.090317,,,1, +23609,Martins Mill Rd & Levick St,40.046876,-75.090916,,,1, +23610,Martins Mill Rd & Tabor Av,40.048028,-75.091206,,,1, +23611,Martins Mill Rd & Lawndale St,40.049403,-75.091342,,,1, +23612,Martins Mill Rd & Gilham St,40.05034,-75.091503,,,1, +23613,Martins Mill Rd & Fanshawne St,40.05226,-75.091908,,,1, +23614,Martins Mill Rd & Rising Sun Av,40.053064,-75.092069,,,1, +23616,Central Av & Tudor St,40.066533,-75.089049,,,1, +23617,Central Av & Shelmire Av - FS,40.068518,-75.087041,,,1, +23618,Hasbrook Av & Central Av - FS,40.070263,-75.085293,,,1, +23619,Hasbrook Av & Hartel Av,40.072154,-75.084989,,,1, +23620,Oxford Av & Borbeck Av - FS,40.074447,-75.084741,,,1, +23621,Huntingdon Pk & Robbins Av,40.079713,-75.08804,,,1, +23622,Huntingdon Pk & Rockledge Av,40.090162,-75.093527,,,1, +23623,Huntingdon Pk & Rockledge Av - MBFS,40.091294,-75.093191,,,1, +23624,Huntingdon Pk & Sioux Av - FS,40.094247,-75.092455,,,1, +23625,Huntingdon Pk & Susquehanna St,40.096717,-75.09171,,,1, +23626,Huntingdon Pk & Linton Rd,40.097599,-75.09109,,,1, +23627,Huntingdon Pk & Hoyt Rd,40.101222,-75.087452,,,1, +23628,Huntingdon Pk & Meetinghouse Rd,40.103154,-75.085845,,,1, +23629,Huntingdon Pk & Moredon Rd,40.105811,-75.084696,,,1, +23630,Huntingdon Pk & Moredon Rd - MBFS,40.106764,-75.083923,,,1, +23631,Huntingdon Pk & Meadowbrook Dr,40.108809,-75.081096,,,1, +23633,Huntingdon Pk & Moreland Rd,40.114255,-75.072074,,,1, +23634,Huntingdon Pk & Chestnut St,40.11818,-75.068042,,,1, +23636,Gloria Dei Manor,40.123453,-75.068681,,,1, +23637,Old Welsh Rd & Walton Rd - FS,40.120905,-75.06894,,,1, +23638,Huntingdon Pk & Philmont Av - FS,40.119525,-75.067195,,,1, +23639,Huntingdon Pk & Red Lion Rd,40.125091,-75.06287,,,1, +23640,Huntingdon Pk & Buck Rd,40.128436,-75.062107,,,1, +23641,Bellevue Av & Lincoln Hwy - FS,40.158409,-74.912149,,,1, +23643,Old Lincoln Rd & Glenn Av,40.156506,-74.920702,,,1, +23644,Old Lincoln Rd & Carter Av - FS,40.155345,-74.931581,,,1, +23648,Huntingdon Pk & College Dr,40.134835,-75.061766,,,1, +23649,Huntingdon Pk & Tomlinson Rd,40.133282,-75.06181,,,1, +23650,County Line Rd & James Way,40.164004,-75.058738,,,1, +23651,County Line Rd & Huntingdon Pk - FS,40.158379,-75.049222,,,1, +23652,James Way & Jaymor Rd,40.166377,-75.05233,,,1, +23653,Jaymor Rd & 2nd St Pk,40.164157,-75.047118,,,1, +23654,2nd St Pk & Madison Av - FS,40.167322,-75.045798,,,1, +23655,2nd St Pk & Rozel Av - FS,40.169176,-75.045244,,,1, +23656,2nd St Pk & Knowles Av,40.17104,-75.044712,,,1, +23657,2nd St Pk & Hampton Av - FS,40.173555,-75.044012,,,1, +23658,Street Rd & Knowles Av,40.171621,-75.039095,,,1, +23659,Rockhill Rd & U S 1,40.139605,-74.960794,,,1, +23660,Horizon Corp Center - 1,40.13888,-74.962705,,,1, +23661,Horizon Corp Center 2,40.137439,-74.964005,,,1, +23662,Horizon Corp Center 3,40.137116,-74.96596,,,1, +23664,Old Lincoln & Trailwood,40.135844,-74.971983,,,1, +23665,Old Lincoln Hwy & Street Rd - MBNS,40.13379,-74.974174,,,1, +23666,Old Lincoln Hwy & Carter Rd,40.131921,-74.975856,,,1, +23667,Old Lincoln Hwy & Concord Dr,40.131198,-74.975789,,,1, +23668,Old Lincoln Hwy & Somerton Rd - FS,40.128737,-74.976147,,,1, +23669,Old Lincoln Hwy & Interplex Dr,40.12573,-74.976593,,,1, +23670,Old Lincoln Hwy & Northgate Dr - FS,40.123571,-74.976855,,,1, +23671,MARMAX on site ,40.090872,-75.014558,,,1, +23672,Red Lion Rd & Congdon Pkwy - FS,40.09189,-75.011996,,,1, +23673,Red Lion Rd & Congdon Pkwy - MBFS,40.092552,-75.012548,,,1, +23675,Huntingdon Pk & Byberry Rd - FS,40.149301,-75.057855,,,1, +23676,Huntingdon Pk & Warfield Ln,40.150697,-75.055989,,,1, +23677,Bustleton Av & Tomlinson Rd,40.112901,-75.023058,,,1, +23678,Bustleton Av & Burgess St - FS,40.114771,-75.02158,,,1, +23679,Bustleton Av & Rennard St,40.116568,-75.019865,,,1, +23680,Bustleton Av & Larkspur St,40.115937,-75.020472,,,1, +23681,2nd St Pk & Rozel Av - MBNS,40.169346,-75.045314,,,1, +23682,2nd St Pk & Madison Av - MBNS,40.167589,-75.045844,,,1, +23683,Jaymore Rd & 2nd St Pk - FS,40.164273,-75.047283,,,1, +23684,James Way & Jaymor Rd - FS,40.165978,-75.053196,,,1, +23685,James Way & County Line Rd - MBNS,40.164748,-75.056827,,,1, +23686,Huntingdon Pk & Wright Dr,40.154148,-75.051932,,,1, +23687,Huntingdon Pk & Warfield Ln,40.150848,-75.055976,,,1, +23688,Huntingdon Pk & Byberry Rd - MBFS,40.148919,-75.058532,,,1, +23690,Huntingdon Pk & Fettersmill Rd,40.124779,-75.06312,,,1, +23691,Huntingdon Pk & Old Welsh Rd,40.119642,-75.067431,,,1, +23692,Willits Rd & Cloverly Rd,40.060784,-75.019912,,,1, +23693,Convent Av & Willits Rd - FS,40.060002,-75.018178,,,1, +23694,Convent Av & Fordham Rd - MBFS,40.061547,-75.015851,,,1, +23695,Convent Av & Annapolis Rd,40.062153,-75.012808,,,1, +23696,Convent Av & Andover Rd,40.062406,-75.011044,,,1, +23697,Convent Av & Academy Rd,40.0625,-75.009684,,,1, +23698,Academy Rd & Eden St,40.064846,-75.009351,,,1, +23699,Academy Rd & Holyoke Rd,40.067281,-75.008816,,,1, +23700,Academy Rd & Grant Av - MBFS,40.070046,-75.00563,,,1, +23701,Academy Rd & Cromwell Rd,40.08075,-74.995771,,,1, +23702,Academy Rd & Red Lion Rd,40.081557,-74.994393,,,1, +23703,Morrell Av & Canterbury Rd,40.078311,-74.997856,,,1, +23704,Morrell Av & Chesterfield Rd,40.077143,-74.995426,,,1, +23705,Morrell Av & S Keswick Rd,40.076588,-74.99259,,,1, +23706,Morrell Av & Kayford Circle - 1,40.076389,-74.991669,,,1, +23707,Keswick Rd & Rayland Rd,40.077216,-74.985867,,,1, +23708,Keswick Rd & Brookview Rd,40.079433,-74.984079,,,1, +23709,Keswick Rd & Carey Rd,40.081003,-74.983809,,,1, +23710,Keswick Rd & Chalfont Dr,40.082216,-74.983801,,,1, +23711,Chalfont Dr & Byrne Rd,40.082447,-74.985941,,,1, +23712,Chalfont Dr & Calera Rd,40.082982,-74.988398,,,1, +23713,Chalfont Dr & Academy Rd,40.083987,-74.989859,,,1, +23714,Huntingdon Pk & Barnswallow Ln,40.156205,-75.050323,,,1, +23715,Huntingdon Pk & Alnwick Rd,40.133398,-75.061963,,,1, +23716,Huntingdon Pk & Buck Rd - FS,40.127812,-75.062323,,,1, +23717,Huntingdon Pk & Chestnut St,40.118359,-75.068231,,,1, +23718,Huntingdon Pk & Welsh Rd,40.115046,-75.070993,,,1, +23720,Academy Rd & Ryan High Sch So Entr,40.084866,-74.988434,,,1, +23721,Academy Rd & Ryan Dr North,40.086457,-74.986626,,,1, +23722,Academy Rd & Comly Rd - MBNS,40.088746,-74.98518,,,1, +23723,Medford Rd & Tyrone Rd - FS,40.097487,-74.975991,,,1, +23724,Medford Rd & Ancona Rd,40.098439,-74.975275,,,1, +23725,Medford Rd & Belgreen Rd,40.099682,-74.973445,,,1, +23726,Medford Rd & Danley Rd,40.100638,-74.971202,,,1, +23727,Academy Rd & Comly Rd - FS,40.090098,-74.983894,,,1, +23728,Medford Rd & Lester Rd,40.100777,-74.967675,,,1, +23729,Medford Rd & Hollins Rd,40.099921,-74.965456,,,1, +23730,Medford Rd & Orion Rd,40.099053,-74.964881,,,1, +23731,Medford Rd & Vinton Rd,40.097937,-74.964806,,,1, +23733,Mechanicsville Rd & Verda Dr,40.093959,-74.963069,,,1, +23734,Franklin Mills & Design Ctr - MBFS,40.089681,-74.964883,,,1, +23736,Byberry Rd & Academy Rd - FS,40.096222,-74.976792,,,1, +23739,Byberry Rd & Townsend Rd,40.103663,-74.983277,,,1, +23740,Huntingdon Pk & Holy Redeemer Hos - 1,40.10905,-75.080941,,,1, +23741,Huntingdon Pk & Holy Redeemer Hosp - 2,40.108482,-75.082222,,,1, +23742,Huntingdon Pk & Moredon Rd,40.106026,-75.084849,,,1, +23743,Huntingdon Pk & Meetinghouse Rd,40.10328,-75.085916,,,1, +23744,Huntingdon Pk & King Rd,40.101356,-75.087463,,,1, +23745,Huntingdon Pk & Susquehanna St,40.09695,-75.091862,,,1, +23746,Huntingdon Pk & Arthur Av,40.093471,-75.09279,,,1, +23749,Oxford Av & Pine Rd,40.077198,-75.085343,,,1, +23750,Hasbrook Av & Hartel Av,40.072351,-75.085106,,,1, +23751,Hasbrook Av & Central Av,40.070316,-75.085411,,,1, +23752,Central Av & Faunce St,40.06883,-75.086873,,,1, +23753,Central Av & Shelmire Av,40.068456,-75.087254,,,1, +23754,Central Av & Tudor St,40.066667,-75.08906,,,1, +23755,Cottman Av & Hasbrook Av,40.063602,-75.08762,,,1, +23756,Martins Mill & Rising Sun - FS,40.052904,-75.092177,,,1, +23757,Martins Mill Rd & Fanshawe St - FS,40.052153,-75.092026,,,1, +23758,Martins Mill Rd & Gilham St,40.05068,-75.091714,,,1, +23760,Martins Mill Rd & Tabor Av,40.048171,-75.091359,,,1, +23761,Martins Mill Rd & Levick St,40.047144,-75.091139,,,1, +23762,Martins Mill Rd & Montour St,40.046107,-75.09053,,,1, +23763,Summerdale Av & Cheltenham Av,40.034733,-75.089401,,,1, +23764,Summerdale Av & Sanger St,40.033469,-75.090625,,,1, +23765,Summerdale Av & Bridge St,40.032205,-75.091837,,,1, +23766,Pratt St & Summdale Av - FS,40.030708,-75.092825,,,1, +23767,Pratt St & Loretto Av,40.030107,-75.091728,,,1, +23768,Pratt St & Roosevelt Blvd,40.029246,-75.090172,,,1, +23769,Pratt St & Roosevelt Blvd - FS,40.02869,-75.089158,,,1, +23770,Pratt St & Castor Av,40.028206,-75.088285,,,1, +23771,Pratt St & Rutland St,40.027587,-75.087201,,,1, +23772,Pratt St & Large St,40.026986,-75.086104,,,1, +23773,Pratt St & Horrocks St,40.025982,-75.084324,,,1, +23774,Pratt St & Oakland St,40.025129,-75.082768,,,1, +23775,Pratt St & Saul St,40.024331,-75.081341,,,1, +23778,Thompson St & Ash St ,40.002519,-75.069134,,,1, +23779,Thompson St & Buckius St ,40.001711,-75.070603,,,1, +23780,Thompson St & Lefevre St ,40.000708,-75.072511,,,1, +23781,Thompson St & Orthodox St ,39.999315,-75.0752,,,1, +23782,Richmond St & Sellers St ,39.996725,-75.074776,,,1, +23783,Richmond St & Hedley St ,39.995891,-75.076375,,,1, +23784,Richmond St & Alresford St ,39.995296,-75.077536,,,1, +23785,Richmond St & Berkshire St ,39.994719,-75.078756,,,1, +23786,Richmond St & Lewis St - FS,39.993095,-75.081883,,,1, +23787,Richmond St & Luzerne St,39.992455,-75.083115,,,1, +23788,Richmond St & Wheatsheaf Ln,39.991417,-75.08514,,,1, +23789,Richmond St & Butler St - FS,39.990298,-75.087355,,,1, +23790,Richmond St & Castor Av ,39.989135,-75.089606,,,1, +23791,Richmond St & Tioga St ,39.986703,-75.09439,,,1, +23792,Richmond St & Ontario St ,39.985522,-75.096688,,,1, +23793,Richmond St & Ontario St - FS,39.985459,-75.096558,,,1, +23794,Richmond St & Tioga St ,39.98656,-75.094438,,,1, +23795,Richmond St & Castor Av ,39.988984,-75.089665,,,1, +23796,Richmond St & Wheatsheaf Ln,39.991265,-75.0852,,,1, +23797,Richmond St & Luzerne St ,39.992304,-75.083175,,,1, +23798,Richmond St & Lewis St ,39.993032,-75.081753,,,1, +23799,Richmond St & Berkshire St - FS,39.994629,-75.078555,,,1, +23800,Richmond St & Alresford St ,39.995144,-75.077596,,,1, +23801,Richmond St & Hedley St ,39.995757,-75.076411,,,1, +23802,Richmond St & Sellers St ,39.996574,-75.074835,,,1, +23804,Richmond St & Lefevre St ,39.998517,-75.071044,,,1, +23805,Richmond St & Buckius St ,39.999503,-75.069101,,,1, +23806,Richmond St & Ash St ,40.000381,-75.067407,,,1, +23807,Richmond St & Kirkbride St ,40.002452,-75.064348,,,1, +23808,Richmond St & Bridge St,40.002452,-75.064348,,,1, +23809,Bridge St & Salmon St,40.003348,-75.065691,,,1, +23810,Whitaker Av & Bleigh Av ,40.059024,-75.075094,,,1, +23811,Whitaker Av & Shelmire Av ,40.06027,-75.073929,,,1, +23812,Whitaker Av & Faunce St ,40.061525,-75.072751,,,1, +23813,Whitaker Av & Napfle Av ,40.062193,-75.072169,,,1, +23814,Napfle Av & Pennway St - FS,40.061776,-75.069841,,,1, +23815,Napfle Av & Algon Av ,40.060816,-75.068154,,,1, +23816,Algon Av & Hartel Av ,40.062017,-75.066871,,,1, +23817,Algon Av & Langdon St ,40.063166,-75.065789,,,1, +23818,Algon Av & Loney St ,40.06451,-75.064505,,,1, +23819,Algon Av & Stanwood St ,40.066984,-75.062185,,,1, +23820,Algon Av & Solly Av ,40.068079,-75.061115,,,1, +23821,Algon Av & Hoffnagle St ,40.06944,-75.059713,,,1, +23822,Algon Av & Strahle St ,40.070588,-75.058536,,,1, +23823,Algon Av & Fox Chase Rd ,40.071273,-75.057834,,,1, +23824,Algon Av & Krewstown Rd ,40.07308,-75.055968,,,1, +23825,Krewstown Rd & Rising Sun Av,40.079781,-75.052313,,,1, +23826,Krewstown Rd & Bloomfield Av ,40.082441,-75.04966,,,1, +23827,Krewstown Rd & Surrey Rd - FS,40.084773,-75.047436,,,1, +23828,Krewstown Rd & Grant Av,40.088289,-75.044116,,,1, +23829,Grant Av & Bustleton Av ,40.085492,-75.037506,,,1, +23830,Grant Av & Dungan Rd ,40.084379,-75.035536,,,1, +23831,Grant Av & Hoff St ,40.083526,-75.033896,,,1, +23832,Grant Av & Clark St ,40.082682,-75.032245,,,1, +23833,Grant Av & Evans St ,40.081793,-75.03057,,,1, +23834,Grant Av & Roosevelt Blvd,40.08094,-75.02906,,,1, +23835,Grant Av & Roosevelt Blvd - FS,40.080528,-75.028329,,,1, +23836,Grant Av & Blue Grass Rd - 1,40.07893,-75.025451,,,1, +23837,Grant Av & Blue Grass Rd - 3 MBFS,40.074243,-75.017032,,,1, +23839,Willits Rd & Ashton Rd - MBFS,40.062638,-75.021829,,,1, +23840,Willits Rd & Convent Av ,40.059932,-75.018486,,,1, +23841,Willits Rd & Fairfield St - FS,40.058146,-75.015658,,,1, +23842,Willits Rd & Holme Av ,40.056666,-75.013348,,,1, +23844,Academy Rd & Holme Av - FS,40.058132,-75.008763,,,1, +23845,Academy Rd & Outlook Av ,40.059776,-75.009096,,,1, +23846,Outlook Av & Lansford St ,40.060227,-75.008088,,,1, +23847,Outlook Av & Convent Av ,40.061498,-75.006496,,,1, +23848,Outlook Av & Aubrey Av ,40.062743,-75.004892,,,1, +23849,Outlook Av & Holyoke Rd - FS,40.063951,-75.003324,,,1, +23850,Outlook Av & Primrose Rd ,40.065143,-75.001992,,,1, +23851,Primrose Rd & Fordham Rd ,40.063876,-74.999717,,,1, +23852,Grant Av & Leon St ,40.061958,-74.994619,,,1, +23854,Grant Av & Leon St ,40.062073,-74.994405,,,1, +23855,Willits Rd & Fairfield St ,40.058325,-75.015751,,,1, +23856,Willits Rd & Convent Av ,40.05994,-75.018309,,,1, +23857,Grant Av & Ashton Rd - MBFS,40.074457,-75.016959,,,1, +23858,Grant Av & Roosevelt Blvd - MBNS,40.080795,-75.028316,,,1, +23859,Grant Av & Roosevelt Blvd - FS,40.081181,-75.029023,,,1, +23860,Grant Av & Clark St ,40.082797,-75.031984,,,1, +23861,Grant Av & Hoff St ,40.08365,-75.033635,,,1, +23862,Grant Av & Dungan Rd ,40.084495,-75.035263,,,1, +23863,Grant Av & Bustleton Av ,40.085393,-75.037009,,,1, +23864,Krewstown Rd & Grant Av - FS,40.088342,-75.04421,,,1, +23865,Krewstown Rd & Bloomfield Av ,40.082575,-75.049672,,,1, +23866,Algon Av & Krewstown Rd - FS,40.073009,-75.056205,,,1, +23867,Algon Av & Fox Chase Rd ,40.071407,-75.057845,,,1, +23868,Algon Av & Dorcas St,40.070473,-75.058808,,,1, +23870,Algon Av & Solly Av ,40.068213,-75.061126,,,1, +23871,Algon Av & Stanwood St - FS,40.066967,-75.062339,,,1, +23872,Algon Av & Griffith St,40.064377,-75.064801,,,1, +23874,Algon Av & Hartel Av ,40.062151,-75.066882,,,1, +23875,Algon Av & Napfle Av,40.060878,-75.068071,,,1, +23876,Napfle Av & Pennway St,40.061901,-75.069864,,,1, +23877,Napfle Av & Whitaker Av,40.062451,-75.071931,,,1, +23878,Whitaker Av & Faunce St,40.061659,-75.072763,,,1, +23879,Whitaker Av & Shelmire Av,40.060404,-75.07394,,,1, +23880,Whitaker Av & Bleigh Av,40.059158,-75.075105,,,1, +23882,Outlook Av & Holyoke Rd ,40.064103,-75.003311,,,1, +23883,Outlook Av & Aubrey Av ,40.062894,-75.004879,,,1, +23884,Outlook Av & Convent Av ,40.06165,-75.006483,,,1, +23885,Outlook Av & Academy Rd ,40.059892,-75.009072,,,1, +23886,Academy Rd & Holme Av ,40.0579,-75.008835,,,1, +23887,Holme Av & Dean Plz ,40.056891,-75.011159,,,1, +23888,Holme Av & Willits Rd ,40.056674,-75.013112,,,1, +23889,Willits Rd & Exeter Rd ,40.057428,-75.014373,,,1, +23890,Mechanicsville Rd & Verda Dr,40.093931,-74.96282,,,1, +23891,Mechanicsville Rd & Mechanicsville Pl,40.094442,-74.963539,,,1, +23892,Mechanicsville Rd & Medford Rd,40.095331,-74.964846,,,1, +23893,Medford Rd & Vinton Rd,40.09774,-74.96463,,,1, +23894,Medford Rd & Hollins Rd,40.099875,-74.965207,,,1, +23895,Medford Rd & Lester Rd,40.100865,-74.967437,,,1, +23896,Medford Rd & Atmore Rd,40.10099,-74.969863,,,1, +23897,Medford Rd & Danley Rd,40.100816,-74.970988,,,1, +23898,Medford Rd & Belgreen Rd,40.099869,-74.973384,,,1, +23899,Medford Rd & Ancona Rd ,40.098636,-74.975285,,,1, +23900,Medford Rd & Academy Rd,40.096514,-74.97595,,,1, +23901,Academy Rd & Comly Rd - MBFS,40.088783,-74.985488,,,1, +23902,Academy Rd & Comly Rd - MBFS,40.086752,-74.986731,,,1, +23903,Academy Rd & Chalfont Dr - MBNS,40.085338,-74.988218,,,1, +23904,Chalfont Dr & Calera Rd - FS,40.082803,-74.988258,,,1, +23905,Chalfont Dr & Brookview Dr - FS,40.082496,-74.987183,,,1, +23906,Chalfont Dr & Keswick Rd,40.082253,-74.984014,,,1, +23907,Keswick Rd & Carey Rd,40.081066,-74.983974,,,1, +23908,Keswick Rd & Brookview Rd,40.079603,-74.984184,,,1, +23909,Keswick Rd & Rayland Dr,40.077475,-74.985771,,,1, +23910,Keswick Rd & Red Lion Rd,40.07591,-74.987567,,,1, +23911,Morrell Av & Albermarle Ln,40.076145,-74.990842,,,1, +23912,Morrell Av & Keswick Rd,40.076686,-74.992377,,,1, +23913,Morrell Av & Chesterfield Rd,40.077195,-74.995189,,,1, +23914,Morrell Av & Westbourne Pl,40.077897,-74.996687,,,1, +23915,Morrell Av & Canterbury Rd,40.078337,-74.997595,,,1, +23916,Academy Rd & Grant Av - MBNS,40.070403,-75.005497,,,1, +23917,Academy Rd & Eden St,40.065034,-75.009598,,,1, +23918,Academy Rd & Holyoke Rd,40.067514,-75.008956,,,1, +23919,Academy Rd & Convent Av,40.062732,-75.009623,,,1, +23920,Convent Av & Andover Rd,40.062539,-75.010772,,,1, +23921,Convent Av & Annapolis Rd,40.062286,-75.012559,,,1, +23922,Convent Av & Exeter Rd,40.062147,-75.013482,,,1, +23923,Convent Av & Woodbridge Rd - MBNS,40.061637,-75.015898,,,1, +23924,Convent Av & Willits Rd,40.060011,-75.01832,,,1, +23925,Willits Rd & Cloverly Av,40.060801,-75.019723,,,1, +23928,Frankford Av & Girard Av - FS,39.969221,-75.134361,,,1, +23929,Frankford Av & Thompson St ,39.970033,-75.134357,,,1, +23930,Frankford Av & Master St - FS,39.971836,-75.134338,,,1, +23931,Frankford Av & Jefferson St ,39.972799,-75.134051,,,1, +23932,Frankford Av & Oxford St,39.973993,-75.133349,,,1, +23933,Frankford Av & Palmer St,39.975232,-75.132647,,,1, +23934,Frankford Av & Montgomery Av ,39.976738,-75.131778,,,1, +23935,Frankford Av & Berks St ,39.977523,-75.131326,,,1, +23936,Frankford Av & Norris St ,39.97852,-75.130471,,,1, +23937,Frankford Av & Susquehanna Av ,39.979464,-75.12951,,,1, +23938,Frankford Av & Dauphin St ,39.980399,-75.128561,,,1, +23939,Frankford Av & Trenton Av ,39.981191,-75.12779,,,1, +23940,Frankford Av & Hagert St ,39.982215,-75.126793,,,1, +23941,Frankford Av & Cumberland St,39.983132,-75.125892,,,1, +23942,Frankford Av & Sergeant St ,39.984076,-75.124966,,,1, +23943,Frankford Av & Huntingdon St - FS,39.985261,-75.123957,,,1, +23944,Frankford Av & Somerset St ,39.988688,-75.120291,,,1, +23945,Frankford Av & Cambria St ,39.989655,-75.117865,,,1, +23946,Frankford Av & Orleans St ,39.990276,-75.116267,,,1, +23947,Frankford Av & Elkhart St ,39.99103,-75.114409,,,1, +23948,Frankford Av & Clearfield St ,39.991668,-75.112906,,,1, +23949,Frankford Av & Allegheny Av ,39.992876,-75.110384,,,1, +23950,Frankford Av & Westmoreland St ,39.994101,-75.107885,,,1, +23951,Frankford Av & Ontario St ,39.995336,-75.105623,,,1, +23952,Frankford Av & Tioga St ,39.996714,-75.103454,,,1, +23953,Frankford Av & Venango St ,39.998092,-75.101344,,,1, +23954,Frankford Av & Castor Av,39.999594,-75.099033,,,1, +23955,Frankford Av & Glenwood Av ,40.000581,-75.097764,,,1, +23956,Frankford Av & Valetta St ,40.002334,-75.09583,,,1, +23957,Frankford Av & Wheatsheaf Ln ,40.003616,-75.094418,,,1, +23958,Frankford Av & Jasper St ,40.005075,-75.092815,,,1, +23959,Frankford Av & Worrell St - FS,40.007373,-75.090902,,,1, +23960,Frankford Av & Womrath St ,40.008638,-75.090104,,,1, +23961,Frankford Av & Ruan St ,40.010063,-75.089187,,,1, +23962,Frankford Av & Church St ,40.010794,-75.088699,,,1, +23963,Frankford Av & Unity St ,40.012299,-75.087652,,,1, +23964,Frankford Av & Sellers St ,40.013733,-75.086345,,,1, +23965,Frankford Av & Margaret St ,40.016608,-75.083707,,,1, +23966,Frankford Av & Foulkrod St ,40.017677,-75.082709,,,1, +23967,Frankford Av & Harrison St ,40.018985,-75.081497,,,1, +23968,Frankford Av & Wakeling St ,40.02016,-75.080416,,,1, +23969,Frankford Av & Dyre St ,40.021247,-75.079406,,,1, +23970,Tabor Rd & Mascher St ,40.032537,-75.124003,,,1, +23971,Tabor Rd & 7th St,40.035863,-75.134227,,,1, +23972,Tabor Rd & 10th St,40.036818,-75.138006,,,1, +23973,Tabor Rd & 12th St ,40.037467,-75.141372,,,1, +23974,Tabor Rd & 10th St ,40.03673,-75.138185,,,1, +23975,Tabor Rd & 7th St ,40.035856,-75.134453,,,1, +23976,Tabor Rd & Mascher St ,40.032574,-75.124524,,,1, +23977,Tasker St & Columbus Blvd,39.927405,-75.144508,,,1, +23978,Columbus Blvd & Reed St ,39.929733,-75.144145,,,1, +23979,Columbus Blvd & Washington Av ,39.933239,-75.14334,,,1, +23980,Columbus Blvd & Christian St ,39.934754,-75.142578,,,1, +23981,Columbus Blvd & Lombard Circle,39.941482,-75.142067,,,1, +23982,Columbus Blvd & Catherine St - MBFS,39.938421,-75.142032,,,1, +23983,Columbus Blvd & Spruce St,39.944061,-75.141903,,,1, +23984,Columbus Blvd & Walnut St ,39.946327,-75.141493,,,1, +23985,Columbus Blvd & Penns Landing ,39.949708,-75.140735,,,1, +23986,Columbus Blvd & Race St ,39.953401,-75.139752,,,1, +23987,Columbus Blvd & Vine St - FS,39.95505,-75.139166,,,1, +23988,Columbus Blvd & Callowhill St ,39.95662,-75.138617,,,1, +23992,Frankford Av & Richmond St ,39.966008,-75.134338,,,1, +23993,Cedar St & York St ,39.978087,-75.124838,,,1, +23994,Cedar St & Hagert St ,39.978745,-75.123666,,,1, +23995,Cedar St & Cumberland St ,39.979349,-75.122494,,,1, +23996,Cedar St & Sergeant St ,39.979971,-75.121298,,,1, +23997,Cedar St & Huntingdon St ,39.980548,-75.120173,,,1, +23998,Cedar St & Albert St ,39.980948,-75.119415,,,1, +23999,Aramingo Av & Venango St ,39.993332,-75.097053,,,1, +24000,Lefevre St & Salmon St ,39.999385,-75.071525,,,1, +24001,Lefevre St & Thompson St ,40.000619,-75.07244,,,1, +24002,Lefevre St & Almond St ,40.001513,-75.073086,,,1, +24003,Lefevre St & Miller St ,40.002658,-75.073943,,,1, +24005,Margaret St & Stiles St ,40.006296,-75.075863,,,1, +24007,Margaret St & Worth St ,40.009788,-75.076602,,,1, +24008,Margaret St & Torresdale Av ,40.011297,-75.077008,,,1, +24009,Ridge Pk & Little Av - MBNS,40.0948,-75.289772,,,1, +24010,Orthodox St & Worth St ,40.009428,-75.078707,,,1, +24011,Orthodox St & Tacony St ,40.00749,-75.078268,,,1, +24012,Orthodox St & Stiles St ,40.006123,-75.077979,,,1, +24013,Orthodox St & Bermuda St ,40.004766,-75.077667,,,1, +24014,Orthodox St & Aramingo Av - FS,40.00398,-75.077517,,,1, +24015,Orthodox St & Belgrade St ,40.000818,-75.076693,,,1, +24016,Orthodox St & Almond St ,40.000094,-75.076071,,,1, +24017,Orthodox St & Thompson St ,39.99927,-75.07533,,,1, +24018,Orthodox St & Salmon St ,39.998089,-75.074284,,,1, +24019,Aramingo Av & Venango St,39.993475,-75.097005,,,1, +24020,Memphis St & Lehigh Av - FS,39.982705,-75.118876,,,1, +24021,Memphis St & Albert St,39.982021,-75.120178,,,1, +24022,Memphis St & Huntingdon St,39.98163,-75.120948,,,1, +24023,Memphis St & Sergeant St ,39.981044,-75.122108,,,1, +24024,Memphis St & Cumberland St,39.980404,-75.123304,,,1, +24025,Memphis St & Hagert St,39.979827,-75.124441,,,1, +24026,Memphis St & York St,39.979205,-75.125578,,,1, +24027,Memphis St & Dauphin St,39.978574,-75.126762,,,1, +24028,Memphis St & Susquehanna Av ,39.97797,-75.127945,,,1, +24029,Memphis St & Norris St,39.977597,-75.12862,,,1, +24030,Memphis St & Berks St ,39.976803,-75.129132,,,1, +24031,Memphis St & Montgomery St - FS,39.975796,-75.129715,,,1, +24032,Memphis St & Palmer St ,39.974575,-75.130417,,,1, +24033,Palmer St & Tulip St ,39.974872,-75.131278,,,1, +24034,Palmer St & Frankford Av ,39.975321,-75.132575,,,1, +24035,Frankford Av & Jefferson St ,39.972933,-75.134109,,,1, +24036,Frankford Av & Master St - FS,39.971479,-75.134481,,,1, +24037,Frankford Av & Thompson St ,39.970256,-75.134498,,,1, +24038,Frankford Av & Richmond St ,39.966124,-75.134492,,,1, +24039,Frankford Av & Delaware Av,39.964767,-75.134462,,,1,0 +24041,Fairmount Av & Front St ,39.961332,-75.138503,,,1, +24042,Columbus Blvd & Vine St ,39.955408,-75.139425,,,1, +24043,Columbus Blvd & Market St ,39.949896,-75.141065,,,1, +24044,Columbus Blvd & Spruce St ,39.944232,-75.142257,,,1, +24045,Columbus Blvd & I95 Ramp,39.941715,-75.142432,,,1, +24046,Columbus Blvd & I95 Ramp,39.938788,-75.14242,,,1, +24047,Columbus Blvd & Christian St,39.934996,-75.142778,,,1, +24049,Columbus Blvd & Reed St ,39.929984,-75.14451,,,1, +24050,Columbus Blvd & Tasker St ,39.927513,-75.145074,,,1, +24072,Delaware Av & Ellen St - MBFS,39.963458,-75.135329,,,1, +24088,Frankford Av & Wakeling St ,40.020384,-75.080427,,,1, +24089,Frankford Av & Dyre St,40.02147,-75.079417,,,1, +24090,Frankford Av & Harrison St ,40.019209,-75.081508,,,1, +24091,Frankford Av & Foulkrod St ,40.017962,-75.082649,,,1, +24092,Frankford Av & Oxford St,39.974145,-75.133407,,,1, +24093,Frankford Av & Sellers St ,40.013956,-75.086356,,,1, +24094,Frankford Av & Unity St ,40.012612,-75.087568,,,1, +24095,Frankford Av & Church St ,40.011062,-75.088698,,,1, +24106,Castor Av & Gaul St,39.99326,-75.093403,,,1, +24107,Castor Av & Thompson St,39.990916,-75.091322,,,1, +24108,Richmond St & Butler St ,39.990253,-75.087202,,,1, +24109,Lefevre St & Pearce St - FS,40.004751,-75.075457,,,1, +24116,Ridge Av & School House Ln - MBFS,40.01212,-75.201351,,,1, +24117,Ridge Av & Merrick Rd - MBNS,40.011001,-75.199416,,,1, +24119,8th St & Vine St ,39.957436,-75.152301,,,1, +24121,9th St & Chestnut St ,39.949741,-75.155448,,,1, +24123,Godfrey Av & Franklin St - MBNS,40.046093,-75.134588,,,1, +24129,Frankford Av & Ruan St - MBNS,40.01026,-75.089234,,,1, +24130,Frankford Av & Womrath St ,40.008843,-75.090127,,,1, +24131,Frankford Av & Adams Av ,40.007631,-75.090889,,,1, +24133,Frankford Av & Hunting Park Av - FS,40.005209,-75.092827,,,1, +24134,Frankford Av & Pike St ,40.003821,-75.094346,,,1, +24135,Frankford Av & Buckius St - FS,40.002975,-75.095283,,,1, +24136,Frankford Av & Valetta St ,40.002486,-75.095829,,,1, +24137,Frankford Av & Glenwood Av ,40.00076,-75.097752,,,1, +24138,Frankford Av & Castor Av ,39.999799,-75.098949,,,1, +24139,Frankford Av & Venango St ,39.998296,-75.10119,,,1, +24140,Frankford Av & Tioga St ,39.996936,-75.103323,,,1, +24141,Frankford Av & Ontario St ,39.995505,-75.105527,,,1, +24142,Frankford Av & Westmoreland St ,39.99427,-75.10779,,,1, +24143,Frankford Av & Allegheny Av ,39.993081,-75.110205,,,1, +24144,Frankford Av & Clearfield St ,39.991873,-75.112728,,,1, +24145,Frankford Av & Elkhart St ,39.991288,-75.114077,,,1, +24146,Frankford Av & Orleans St ,39.990507,-75.115971,,,1, +24147,Frankford Av & Cambria St ,39.989815,-75.117723,,,1, +24148,Frankford Av & Somerset St ,39.988857,-75.120208,,,1, +24149,Frankford Av & Huntingdon St ,39.98527,-75.124099,,,1, +24150,Frankford Av & Sergeant St ,39.984317,-75.12493,,,1, +24151,Frankford Av & Cumberland St,39.983355,-75.12582,,,1, +24152,Frankford Av & Hagert St ,39.982474,-75.126674,,,1, +24153,Frankford Av & York St ,39.981566,-75.127576,,,1, +24154,Frankford Av & Dauphin St ,39.980631,-75.128478,,,1, +24155,Frankford Av & Susquehanna Av ,39.979749,-75.129391,,,1, +24156,Frankford Av & Norris St ,39.978699,-75.130435,,,1, +24157,Frankford Av & Berks St ,39.977657,-75.131384,,,1, +24158,Frankford Av & Montgomery Av ,39.976872,-75.131837,,,1, +24159,Frankford Av & Palmer St ,39.975464,-75.132658,,,1, +24162,2nd St & Germantown Av,39.968163,-75.139917,,,1, +24163,2nd St & Wildley St ,39.966414,-75.14029,,,1, +24164,2nd St & Poplar St ,39.964238,-75.140747,,,1, +24165,2nd St & Brown St ,39.963016,-75.141012,,,1, +24166,2nd St & Fairmount Av ,39.962016,-75.141229,,,1, +24167,2nd St & Noble St ,39.959403,-75.141794,,,1, +24168,2nd St & Callowhill St ,39.957315,-75.14224,,,1, +24169,2nd St & Vine St ,39.955728,-75.142577,,,1, +24170,2nd St & Race St ,39.953908,-75.14295,,,1, +24171,2nd St & Arch St ,39.952043,-75.143359,,,1, +24172,17th St & Franklintown Blvd ,39.959414,-75.167352,,,1, +24175,Ward Av & Airport Rd - MBNS,39.9896,-75.57627,,,1, +24176,Dickinson St & 32nd St,39.935403,-75.197439,,,1, +24177,32nd St & Tasker St,39.93435,-75.197596,,,1, +24178,32nd St & Morris St,39.933173,-75.197848,,,1, +24179,Morris St & 31st St,39.932759,-75.196385,,,1, +24180,Morris St & 30th St,39.932542,-75.19478,,,1, +24181,Morris St & 29th St,39.932361,-75.193199,,,1, +24182,Morris St & 28th St,39.932161,-75.191618,,,1, +24183,Morris St & 27th St,39.931953,-75.190048,,,1, +24184,Morris St & 26th St,39.931754,-75.188479,,,1, +24185,Morris St & 25th St,39.931536,-75.186744,,,1, +24186,Morris St & 24th St,39.931319,-75.18508,,,1, +24187,Morris St & 23rd St,39.93111,-75.18344,,,1, +24188,Morris St & 22nd St,39.930875,-75.181764,,,1, +24189,Morris St & 21st St,39.930693,-75.180183,,,1, +24190,Morris St & 19th St,39.93024,-75.17669,,,1, +24191,Morris St & 18th St,39.930041,-75.175133,,,1, +24192,Morris St & 17th St,39.929841,-75.173575,,,1, +24193,Morris St & 16th St,39.929633,-75.171947,,,1, +24194,Morris St & 15th St,39.929433,-75.170424,,,1, +24195,Morris St & 13th St,39.928925,-75.166613,,,1, +24196,Morris St & 12th St,39.928735,-75.165044,,,1, +24197,Morris St & 11th St,39.928535,-75.163474,,,1, +24198,Morris St & 10th St,39.928326,-75.161905,,,1, +24199,Morris St & 9th St,39.928118,-75.160324,,,1, +24200,Morris St & 8th St,39.927909,-75.158766,,,1, +24201,Morris St & 6th St,39.92751,-75.155663,,,1, +24202,Morris St & 5th St,39.927301,-75.154094,,,1, +24203,Morris St & 4th St,39.927083,-75.152513,,,1, +24204,Morris St & Moyamensing Av,39.926911,-75.151262,,,1, +24205,Morris St & 2nd St,39.926648,-75.149257,,,1, +24206,Morris St & Front St,39.926411,-75.147392,,,1, +24208,Tasker St & Columbus Blvd,39.927361,-75.14511,,,1, +24209,Pier 70 Blvd & Columbus Blvd - FS,39.924383,-75.142454,,,1, +24210,Tasker St & 2nd St,39.92794,-75.148567,,,1, +24211,Tasker St & Moyamensing Av,39.928212,-75.150573,,,1, +24212,Tasker St & 4th St,39.928412,-75.152024,,,1, +24213,Tasker St & 5th St,39.928603,-75.153581,,,1, +24214,Tasker St & 6th St,39.928812,-75.155162,,,1, +24215,Tasker St & 8th St,39.929229,-75.158266,,,1, +24216,Tasker St & 9th St,39.929429,-75.159823,,,1, +24217,Tasker St & 10th St,39.929655,-75.161428,,,1, +24218,Tasker St & 11th St,39.929846,-75.162985,,,1, +24219,Tasker St & 12th St,39.930046,-75.164543,,,1, +24220,Tasker St & 13th St,39.930254,-75.166112,,,1, +24221,Tasker St & 15th St,39.930762,-75.169936,,,1, +24222,Tasker St & 16th St,39.930953,-75.171529,,,1, +24223,Tasker St & 17th St,39.931152,-75.173098,,,1, +24224,Tasker St & 18th St,39.931361,-75.174632,,,1, +24225,Tasker St & 19th St,39.93156,-75.176213,,,1, +24226,Tasker St & 20th St,39.93176,-75.177783,,,1, +24227,Tasker St & 21st St,39.932013,-75.179706,,,1, +24228,Tasker St & 23rd St,39.93243,-75.182951,,,1, +24229,Tasker St & 24th St,39.932639,-75.184592,,,1, +24230,Tasker St & 25th St,39.932856,-75.186279,,,1, +24231,Tasker St & 26th St,39.933074,-75.188002,,,1, +24232,Tasker St & 27th St,39.933273,-75.189548,,,1, +24233,Tasker St & 28th St,39.933472,-75.191129,,,1, +24234,Tasker St & 29th St,39.933663,-75.192699,,,1, +24235,Tasker St & 30th St,39.933871,-75.194292,,,1, +24236,Tasker St & 31st St,39.934079,-75.195838,,,1, +24237,Tasker St & 32nd St,39.93427,-75.197396,,,1, +24238,11th St & Moyamensing Av,39.919329,-75.165362,,,1, +24239,Snyder Av & 28th St ,39.927273,-75.192684,,,1, +24240,Snyder Av & 27th St ,39.927064,-75.191115,,,1, +24241,Snyder Av & 26th St ,39.926865,-75.18951,,,1, +24242,Snyder Av & 25th St ,39.926666,-75.187988,,,1, +24243,Snyder Av & 24th St ,39.926485,-75.18656,,,1, +24244,Snyder Av & 23rd St ,39.926222,-75.184495,,,1, +24245,Snyder Av & 22nd St ,39.926013,-75.182832,,,1, +24246,Snyder Av & 21st St ,39.925796,-75.181262,,,1, +24247,Snyder Av & 19th St ,39.92536,-75.177746,,,1, +24248,Snyder Av & 18th St ,39.925152,-75.176165,,,1, +24249,Snyder Av & 17th St ,39.924944,-75.174596,,,1, +24250,Snyder Av & 16th St - FS,39.924644,-75.172271,,,1, +24251,Snyder Av & 15th St ,39.924554,-75.171504,,,1, +24252,Snyder Av & 13th St ,39.924064,-75.167705,,,1, +24253,Snyder Av & 12th St ,39.923873,-75.166148,,,1, +24254,Snyder Av & 11th St ,39.923655,-75.164567,,,1, +24255,Snyder Av & 10th St ,39.923456,-75.162986,,,1, +24256,Snyder Av & 9th St ,39.923256,-75.161416,,,1, +24257,Snyder Av & 8th St ,39.923047,-75.159835,,,1, +24258,Snyder Av & 7th St ,39.922839,-75.158302,,,1, +24259,Snyder Av & 6th St ,39.922639,-75.156732,,,1, +24260,Snyder Av & 5th St ,39.922439,-75.155151,,,1, +24261,Snyder Av & 4th St - FS,39.922212,-75.153299,,,1, +24262,Snyder Av & 3rd St ,39.921931,-75.151187,,,1, +24263,Snyder Av & 2nd St ,39.921795,-75.15009,,,1, +24264,Snyder Av & Front St ,39.921595,-75.148474,,,1, +24265,Snyder Av & Water St - FS,39.921377,-75.146857,,,1, +24266,Snyder Av & Swanson St ,39.921295,-75.146208,,,1, +24268,Snyder Av & Dilworth St - MBNS,39.92104,-75.144097,,,1, +24269,Dilworth St & Synder St - FS,39.921226,-75.143305,,,1, +24270,Dilworth St & McKean St ,39.922082,-75.143124,,,1, +24271,Dilworth St & Delaware Av ,39.922769,-75.142968,,,1, +24272,Snyder Av & Dillworth St ,39.921047,-75.143282,,,1, +24273,Snyder Av & Weccacoe St - FS,39.92132,-75.145406,,,1, +24274,Snyder Av & Swanson St,39.921384,-75.145996,,,1, +24275,Snyder Av & Water St ,39.921556,-75.147317,,,1, +24276,Snyder Av & Front St,39.921692,-75.148261,,,1, +24277,Snyder Av & 2nd St ,39.921874,-75.149818,,,1, +24279,Snyder Av & Moyamensing Av,39.922283,-75.152945,,,1, +24280,Snyder Av & 5th St ,39.922537,-75.154927,,,1, +24281,Snyder Av & 6th St ,39.922737,-75.156508,,,1, +24282,Snyder Av & 7th St ,39.922937,-75.158077,,,1, +24283,Snyder Av & 8th St ,39.923145,-75.159611,,,1, +24284,Snyder Av & 9th St ,39.923354,-75.161192,,,1, +24285,Snyder Av & 10th St ,39.923553,-75.162761,,,1, +24286,Snyder Av & 11th St ,39.923753,-75.164342,,,1, +24287,Snyder Av & 12th St ,39.923971,-75.165923,,,1, +24288,Snyder Av & 13th St ,39.924161,-75.16748,,,1, +24289,Snyder Av & 15th St,39.924651,-75.171292,,,1, +24290,Snyder Av & 16th St,39.924842,-75.172825,,,1, +24291,Snyder Av & 17th St ,39.925041,-75.174371,,,1, +24292,Snyder Av & 19th St ,39.925458,-75.177521,,,1, +24293,Snyder Av & 20th St ,39.925667,-75.179114,,,1, +24294,Snyder Av & 21st St ,39.925894,-75.181038,,,1, +24295,Snyder Av & 22nd St ,39.926111,-75.182607,,,1, +24296,Snyder Av & 23rd St ,39.926319,-75.184271,,,1, +24297,Snyder Av & 24th St ,39.926537,-75.185923,,,1, +24298,Snyder Av & 25th St ,39.926745,-75.187598,,,1, +24299,Snyder Av & 26th St ,39.926963,-75.189286,,,1, +24300,Snyder Av & 27th St ,39.927162,-75.19089,,,1, +24301,Snyder Av & 28th St ,39.92737,-75.19246,,,1, +24302,Snyder Av & 29th St ,39.92757,-75.194029,,,1, +24303,29th St & Winton St ,39.926848,-75.194386,,,1, +24304,Vare Av & Winton St,39.926767,-75.194516,,,1, +24308,Oregon Av & 8th St ,39.915643,-75.161256,,,1, +24309,9th St & Shunk St ,39.916949,-75.162644,,,1, +24310,9th St & Porter St ,39.918225,-75.162379,,,1, +24311,9th St & Ritner St,39.919518,-75.162056,,,1, +24312,9th St & Wolf St ,39.920758,-75.16178,,,1, +24313,9th St & Jackson St ,39.921989,-75.161527,,,1, +24314,9th St & Snyder Av ,39.923238,-75.161251,,,1, +24315,9th St & McKean St ,39.924451,-75.160987,,,1, +24316,9th St & Mifflin St ,39.925646,-75.160723,,,1, +24317,9th St & Moore St ,39.926886,-75.160435,,,1, +24318,9th St & Morris St ,39.9281,-75.160159,,,1, +24319,9th St & Tasker St ,39.929313,-75.159883,,,1, +24320,9th St & Dickinson St ,39.930535,-75.15963,,,1, +24321,9th St & Reed St ,39.931739,-75.159354,,,1, +24322,9th St & Wharton St ,39.932926,-75.15909,,,1, +24323,9th St & Federal St ,39.934165,-75.158802,,,1, +24324,9th St & Ellsworth St ,39.93512,-75.158609,,,1, +24325,9th St & Carpenter St ,39.937493,-75.158093,,,1, +24326,9th St & Catherine St ,39.939687,-75.157612,,,1, +24327,9th St & Fitzwater St ,39.940695,-75.157396,,,1, +24328,9th St & Bainbridge St ,39.941659,-75.157191,,,1, +24329,9th St & South St ,39.942515,-75.157011,,,1, +24330,9th St & Lombard St ,39.943523,-75.156783,,,1, +24331,9th St & Pine St ,39.944415,-75.156591,,,1, +24332,9th St & Spruce St ,39.94586,-75.15629,,,1, +24333,9th St & Locust St ,39.947091,-75.156002,,,1, +24334,9th St & Walnut St ,39.948224,-75.155761,,,1, +24335,9th St & Arch St ,39.953273,-75.154656,,,1, +24336,Franklin St & Race St - FS,39.955159,-75.151542,,,1, +24337,7th St & Wallace St ,39.963044,-75.149457,,,1, +24339,8th St & Noble St ,39.959658,-75.15195,,,1, +24340,School House Ln & Morris St ,40.027867,-75.179265,,,1, +24341,School House Ln & Pulaski Av ,40.029016,-75.178126,,,1, +24342,Pulaski Av & Chelten Av ,40.030412,-75.18019,,,1, +24343,Baynton St & Armat St ,40.038086,-75.170705,,,1, +24344,Baynton St & Church Ln ,40.037109,-75.168628,,,1, +24345,8th St & Passyunk Av,39.935215,-75.157133,,,1, +24347,Oregon Av & 5th St - FS,39.914803,-75.156503,,,1, +24348,Front St & Packer Av - FS,39.907317,-75.151396,,,1, +24349,Packer Av & 3rd St ,39.907755,-75.153815,,,1, +24350,Packer Av & Front St - MBNS,39.907537,-75.152128,,,1, +24351,Oregon Av & 2nd St ,39.91439,-75.151417,,,1, +24352,Oregon Av & 3rd St ,39.914581,-75.153045,,,1, +24353,Oregon Av & 4th St ,39.914817,-75.154933,,,1, +24354,Belfield Av & Penn St - MBNS,40.037185,-75.166558,,,1, +24355,Belfield Av & Penn St ,40.036779,-75.164254,,,1, +24356,Belfield Av & Armstrong St,40.03678,-75.160672,,,1, +24357,Belfield Av & Wister St ,40.036642,-75.158521,,,1, +24358,Belfield Av & 20th St ,40.036279,-75.155815,,,1, +24359,Oregon Av & 9th St ,39.915852,-75.162813,,,1, +24360,Oregon Av & 11th St ,39.916269,-75.16601,,,1, +24361,Oregon Av & 12th St ,39.916451,-75.167532,,,1, +24362,Oregon Av & 13th St ,39.916659,-75.16909,,,1, +24363,Oregon Av & 15th St ,39.917131,-75.172865,,,1, +24364,Oregon Av & 16th St ,39.917339,-75.174446,,,1, +24365,Oregon Av & 17th St ,39.91753,-75.176015,,,1, +24366,Oregon Av & 18th St ,39.917738,-75.177596,,,1, +24367,Oregon Av & 19th St - FS,39.917983,-75.179519,,,1, +24368,Lindley Av & Belfield Av - FS,40.031439,-75.154545,,,1, +24369,Oregon Av & 21st St ,39.918382,-75.182645,,,1, +24370,Lindley Av & Ogontz Av ,40.031354,-75.152571,,,1, +24371,Lindley Av & 17th St ,40.031209,-75.151472,,,1, +24406,Lindley Av & 15th St ,40.0308,-75.148317,,,1, +24407,Oregon Av & 22nd St,39.918581,-75.184205,,,1, +24408,Oregon Av & 23rd St - FS,39.918835,-75.186268,,,1, +24410,Lindley Av & Old York Rd ,40.030178,-75.145659,,,1, +24411,Lindley Av & 13th St ,40.030113,-75.144513,,,1, +24412,Lindley Av & 12th St ,40.03002,-75.142917,,,1, +24413,Lindley Av & 11th St ,40.029874,-75.141334,,,1, +24414,Lindley Av & 10th St ,40.029674,-75.139751,,,1, +24415,Lindley Av & 9th St ,40.029492,-75.138132,,,1, +24416,Lindley Av & 8th St ,40.029364,-75.137186,,,1, +24417,Lindley Av & 7th St ,40.029183,-75.135934,,,1, +24418,Lindley Av & 6th St ,40.028965,-75.134256,,,1, +24419,Lindley Av & 4th St ,40.028474,-75.130416,,,1, +24420,Lindley Av & 3rd St ,40.028347,-75.129436,,,1, +24421,2nd St & Lindley Av - FS,40.02769,-75.127405,,,1, +24422,2nd St & Duncannon Av ,40.029563,-75.126641,,,1, +24423,2nd St & Fisher Av ,40.031142,-75.126303,,,1, +24424,63rd St & Passyunk Av - FS,39.917382,-75.216347,,,1, +24425,Fisher Av & Mascher St ,40.030932,-75.124471,,,1,0 +24426,63rd St & Passyunk Av - MBFS,39.918535,-75.219207,,,1, +24427,Fisher Av & Front St ,40.030668,-75.122557,,,1, +24428,Fisher Av & A St ,40.030449,-75.120608,,,1, +24429,63rd St & Eastwick Av ,39.919963,-75.222655,,,1, +24430,63rd St & Lindbergh Blvd ,39.921018,-75.223997,,,1, +24431,62nd St & Dicks Av ,39.922722,-75.223497,,,1, +24432,62nd St & Buist Av,39.923831,-75.224827,,,1, +24433,62nd St & Elmwood Av ,39.925065,-75.226217,,,1, +24434,62nd St & Grays Av ,39.926049,-75.227819,,,1, +24435,62nd St & Paschall Av ,39.927203,-75.22928,,,1, +24436,62nd St & Woodland Av ,39.928133,-75.230505,,,1, +24437,58th St & Greenway Av ,39.933435,-75.225662,,,1, +24438,58th St & Chester Av - FS,39.935912,-75.228618,,,1, +24439,58th St & Springfield Av ,39.936762,-75.229607,,,1, +24441,58th St & Warrington Av ,39.937942,-75.230997,,,1, +24442,58th St & Florence Av ,39.939024,-75.232281,,,1, +24443,58th St & Willows Av ,39.940311,-75.233506,,,1, +24444,58th St & Whitby Av ,39.941473,-75.234943,,,1, +24445,58th St & Thomas Av ,39.942645,-75.236321,,,1, +24446,58th St & Hoffman Av,39.943843,-75.237723,,,1, +24447,Adams Av & Roosevelt Blvd - FS,40.025589,-75.096875,,,1, +24448,Adams Av & Arrott St ,40.023271,-75.095082,,,1, +24449,58th St & Baltimore Av ,39.945774,-75.240044,,,1,0 +24450,Adams Av & Castor Av - FS,40.02134,-75.094039,,,1, +24451,57th St & Baltimore Av - FS,39.946529,-75.237858,,,1, +24452,Adams Av & Orthodox St ,40.019619,-75.094485,,,1, +24453,57th St & Catherine St ,39.950143,-75.237116,,,1, +24454,Orthodox St & Paul St ,40.014309,-75.084747,,,1, +24455,57th St & Cedar Av ,39.951633,-75.236793,,,1, +24456,Orthodox St & Hedge St ,40.013573,-75.083332,,,1, +24457,57th St & Larchwood Av ,39.953176,-75.23647,,,1, +24458,57th St & Pine St ,39.954702,-75.236147,,,1, +24459,57th St & Spruce St ,39.955763,-75.235932,,,1, +24460,57th St & Locust St ,39.95695,-75.23568,,,1, +24461,57th St & Walnut St ,39.958056,-75.235453,,,1, +24462,57th St & Chestnut St ,39.959573,-75.23513,,,1, +24463,56th St & Arch St ,39.962434,-75.232453,,,1, +24464,56th St & Race St ,39.963942,-75.232142,,,1, +24465,56th St & Vine St ,39.965467,-75.231783,,,1, +24466,Vine St & 57th St ,39.965881,-75.233778,,,1, +24467,Orthodox St & Mulberry St ,40.012739,-75.081811,,,1, +24468,57th St & Haverford Av - FS,39.96813,-75.233654,,,1, +24469,57th St & Girard Av ,39.970433,-75.234108,,,1, +24470,57th St & Thompson St ,39.971951,-75.234376,,,1, +24471,57th St & Master St ,39.973219,-75.23462,,,1, +24472,57th St & Media St ,39.974826,-75.234935,,,1, +24473,57th St & Lansdowne Av ,39.976379,-75.235226,,,1, +24474,57th St & Stewart St - FS,39.977781,-75.235494,,,1, +24475,57th St & Jefferson St ,39.979343,-75.235785,,,1, +24476,Oxford St & 57th St - FS,39.980834,-75.236384,,,1, +24477,Orthodox St & Tackawanna St ,40.011924,-75.080929,,,1, +24478,Orthodox St & Torresdale Av ,40.010411,-75.079388,,,1, +24479,57th St & Upland Way - FS,39.985023,-75.237023,,,1, +24480,58th St & Lebanon Av ,39.986325,-75.237397,,,1, +24481,58th St & Malvern Av ,39.987558,-75.238386,,,1, +24482,58th St & Woodcrest Av ,39.988478,-75.239128,,,1, +24483,Woodcrest Av & Hobart St ,39.988016,-75.240464,,,1, +24484,Woodcrest Av & 59th St ,39.987411,-75.241753,,,1, +24485,59th St & Woodbine Av ,39.988028,-75.242295,,,1, +24486,59th St & Drexel Rd ,39.989011,-75.243072,,,1, +24487,Drexel Rd & Upland Way ,39.988301,-75.246312,,,1, +24488,City Av & 63rd St ,39.989896,-75.250715,,,1, +24489,Lancaster Av & Church Rd,39.987865,-75.252894,,,1, +24490,City Av & Lancaster Av - FS,39.988357,-75.253731,,,1, +24491,City Av & 63rd St ,39.989656,-75.250963,,,1, +24492,Cardinal Av & Overbrook Av,39.992157,-75.240217,,,1, +24493,Overbrook Av & 58th St - FS,39.991409,-75.241518,,,1, +24494,Overbrook Av & 59th St ,39.990271,-75.244014,,,1, +24495,59th St & Drexel Rd ,39.989154,-75.243332,,,1, +24496,59th St & Woodbine Av ,39.9881,-75.242531,,,1, +24497,59th St & Malvern Av ,39.986429,-75.241201,,,1, +24498,Malvern Av & Hobart St ,39.986917,-75.239829,,,1, +24499,Malvern Av & 58th St ,39.987513,-75.238539,,,1, +24500,Malvern Av & 57th St ,39.987896,-75.237593,,,1, +24501,57th St & Lebanon Av ,39.986485,-75.23729,,,1, +24502,57th St & Upland Way ,39.985012,-75.237199,,,1, +24503,Oxford St & 59th St - FS,39.980383,-75.239149,,,1, +24504,Oxford St & 57th St,39.980718,-75.23623,,,1, +24505,56th St & Lancaster Av - FS,39.980224,-75.234164,,,1, +24506,56th St & Jefferson St ,39.97884,-75.234133,,,1, +24507,56th St & Stewart St ,39.977859,-75.234005,,,1, +24508,56th St & Lansdowne Av ,39.976698,-75.233784,,,1, +24509,56th St & Media St ,39.975127,-75.233481,,,1, +24510,56th St & Master St ,39.973591,-75.233214,,,1, +24511,56th St & Thompson St ,39.972288,-75.232981,,,1, +24512,56th St & Girard Av ,39.970743,-75.23269,,,1, +24513,56th St & Wyalusing Av ,39.96886,-75.232317,,,1, +24514,56th St & Haverford Av,39.967565,-75.232061,,,1, +24515,56th St & Vine St - FS,39.965334,-75.232055,,,1, +24516,56th St & Race St ,39.964147,-75.232318,,,1, +24517,56th St & Arch St ,39.962595,-75.232618,,,1, +24518,56th St & Walnut St ,39.958036,-75.233563,,,1, +24519,56th St & Locust St ,39.956911,-75.233791,,,1, +24520,56th St & Spruce St ,39.95568,-75.234042,,,1, +24521,56th St & Pine St ,39.954627,-75.234293,,,1, +24522,56th St & Larchwood Av ,39.953093,-75.234593,,,1, +24523,56th St & Cedar Av ,39.951549,-75.234904,,,1, +24524,56th St & Catherine St ,39.950068,-75.235227,,,1, +24525,56th St & Washington Av ,39.947017,-75.235849,,,1, +24526,58th St & Baltimore Av - FS,39.945613,-75.240068,,,1, +24527,58th St & Hoffman Av ,39.943861,-75.237983,,,1, +24528,58th St & Thomas Av ,39.942681,-75.236581,,,1, +24529,58th St & Whitby Av ,39.941492,-75.235203,,,1, +24530,58th St & Willows Av ,39.940347,-75.233765,,,1, +24531,58th St & Florence Av ,39.93906,-75.232529,,,1, +24532,58th St & Warrington Av ,39.93796,-75.231257,,,1, +24533,58th St & Springfield Av ,39.936789,-75.229855,,,1, +24535,58th St & Chester Av - FS,39.935546,-75.228395,,,1, +24536,58th St & Kingsessing Av ,39.934696,-75.227417,,,1, +24537,58th St & Greenway Av ,39.933489,-75.226016,,,1, +24538,62nd St & Woodland Av - FS,39.928008,-75.230576,,,1, +24539,62nd St & Paschall Av ,39.927203,-75.229587,,,1, +24540,62nd St & Grays Av ,39.926076,-75.228103,,,1, +24541,62nd St & Elmwood Av ,39.924994,-75.226665,,,1, +24542,62nd St & Buist Av ,39.923876,-75.225099,,,1, +24543,62nd St & Dicks Av ,39.922749,-75.223744,,,1, +24544,63rd St & Eastwick Av ,39.919963,-75.222973,,,1, +24545,63rd St & Passyunk Av - 2,39.917257,-75.216407,,,1, +24546,Passyunk Av & 61st St,39.91803,-75.209393,,,1,0 +24547,Passyunk Av & 28th St - FS,39.921108,-75.193637,,,1, +24548,Oregon Av & 24th St - FS,39.919464,-75.18826,,,1, +24549,Oregon Av & 23rd St ,39.918639,-75.186386,,,1, +24550,Oregon Av & 22nd St ,39.918395,-75.184475,,,1, +24551,Oregon Av & 18th St ,39.917552,-75.177844,,,1, +24552,Oregon Av & 17th St ,39.917334,-75.176275,,,1, +24553,Oregon Av & 16th St ,39.917135,-75.174706,,,1, +24554,Oregon Av & 15th St ,39.916944,-75.173125,,,1, +24555,Oregon Av & 9th St ,39.915647,-75.163003,,,1, +24556,Oregon Av & 8th St ,39.915474,-75.161682,,,1, +24557,Front St & Pattison Av,39.902718,-75.152241,,,1, +24558,Pattison Av & 3rd St ,39.902982,-75.154565,,,1, +24559,Pattison Av & Galloway St - FS,39.903227,-75.156511,,,1, +24560,Pattison Av & Lawrence St ,39.903463,-75.158304,,,1, +24561,7th St & Packer Av ,39.909154,-75.161139,,,1, +24562,Packer Av & Lawrence St ,39.908281,-75.157625,,,1, +24568,Main St & Mill St ,39.918091,-75.260053,,,1, +24570,Margaret St & Mulberry St ,40.014472,-75.079392,,,1, +24571,Margaret St & Tackawanna St ,40.013835,-75.078225,,,1, +24572,Margaret St & Duffield St ,40.015298,-75.080877,,,1, +24573,Margaret St & Darrah St ,40.016069,-75.08228,,,1, +24574,Arrott St & Adams Av ,40.023261,-75.094799,,,1, +24575,Adams Av & Ramona Av ,40.024004,-75.095354,,,1, +24576,Adams Av & Roosevelt Blvd ,40.025971,-75.096878,,,1, +24577,C St & Ashdale St ,40.028603,-75.117637,,,1, +24578,Fisher Av & A St ,40.030547,-75.120359,,,1, +24579,Fisher Av & Front St ,40.030766,-75.122273,,,1, +24580,Fisher Av & Mascher St ,40.031029,-75.124246,,,1, +24581,2nd St & Fisher Av - FS,40.031026,-75.126504,,,1, +24582,2nd St & Duncannon Av ,40.029759,-75.12677,,,1, +24583,2nd St & Lindley Av ,40.027682,-75.127594,,,1, +24584,Lindley Av & 3rd St ,40.028444,-75.129211,,,1, +24585,Lindley Av & 4th St ,40.028589,-75.130203,,,1, +24586,Lindley Av & 6th St ,40.029063,-75.134031,,,1, +24587,Lindley Av & 9th St ,40.029589,-75.137907,,,1, +24588,Lindley Av & 10th St ,40.029772,-75.139537,,,1, +24589,Lindley Av & Franklin St ,40.029354,-75.136347,,,1, +24590,Lindley Av & 11th St ,40.029971,-75.141109,,,1, +24591,Ogontz Av & Olney Av - FS,40.03855,-75.149717,,,1,0 +24592,Lindley Av & 12th St ,40.030145,-75.142692,,,1, +24593,Lindley Av & 13th St ,40.030229,-75.144312,,,1, +24594,Lindley Av & 15th St ,40.030898,-75.148104,,,1, +24595,Lindley Av & 16th St ,40.031098,-75.149663,,,1, +24596,Lindley Av & Ogontz Av ,40.031442,-75.152251,,,1, +24597,Lindley Av & Belfield Av ,40.031546,-75.154686,,,1, +24598,Belfield Av & 20th St - FS,40.036386,-75.155767,,,1, +24599,Belfield Av & Wister St - FS,40.036758,-75.158721,,,1, +24600,Belfield Av & Armstrong St ,40.036896,-75.160471,,,1, +24601,Belfield Av & Armstrong St - FS,40.03697,-75.161629,,,1, +24602,Belfield Av & Penn St ,40.036885,-75.163899,,,1, +24603,Belfield Av & Church Ln - MBNS,40.037175,-75.165825,,,1, +24604,Belfield Av & Church Ln ,40.037447,-75.167811,,,1, +24605,Baynton St & Morton St - FS,40.037226,-75.168746,,,1, +24606,Baynton St & Armat St ,40.038068,-75.170445,,,1, +24608,Executive Av & Escort Av,39.884703,-75.228939,,,1,0 +24610,Escort Av & Island Av ,39.884036,-75.230427,,,1, +24612,Island Av & Penrose Av - MBNS,39.8912,-75.23482,,,1, +24614,Moyamensing Av & Pollock St ,39.913905,-75.179533,,,1, +24615,Moyamensing Av & 16th St ,39.915849,-75.174687,,,1, +24616,Moyamensing Av & 15th St ,39.916382,-75.173292,,,1, +24617,10th St & Bigler St ,39.913224,-75.165066,,,1, +24618,Moyamensing Av & 15th St ,39.916846,-75.172972,,,1, +24619,Moyamensing Av & 16th St ,39.916242,-75.174662,,,1, +24620,Moyamensing Av & 17th St ,39.915718,-75.175998,,,1, +24624,48th St & Locust St ,39.954931,-75.21796,,,1, +24625,48th St & Spruce St ,39.953718,-75.218211,,,1, +24626,48th St & Pine St ,39.952647,-75.218439,,,1, +24627,48th St & Larchwood Av,39.951139,-75.21875,,,1, +24628,48th St & Hazel Av ,39.950372,-75.218906,,,1, +24629,48th St & Cedar Av ,39.949578,-75.219074,,,1, +24630,48th St & Baltimore Av ,39.948445,-75.21929,,,1, +24631,49th St & Baltimore Av - FS,39.94802,-75.221216,,,1, +24632,49th St & Florence Av ,39.947457,-75.220568,,,1, +24633,49th St & Warrington Av ,39.946401,-75.219284,,,1, +24634,49th St & Springfield Av ,39.945212,-75.217882,,,1, +24636,49th St & Chester Av - FS,39.944014,-75.216469,,,1, +24637,49th St & Kingsessing Av ,39.943128,-75.215432,,,1, +24638,49th St & Greenway Av ,39.941939,-75.214031,,,1, +24639,Grays Ferry Av & Grove St - MBNS,39.940122,-75.201025,,,1, +24640,Grays Ferry Av & 35th St,39.939861,-75.199833,,,1, +24641,Grays Ferry Av & 34th St ,39.939546,-75.198323,,,1, +24642,Wharton St & 33rd St ,39.937965,-75.197797,,,1, +24643,Wharton St & 32nd St ,39.937821,-75.196853,,,1, +24644,Wharton St & 31st St ,39.937639,-75.195271,,,1, +24646,Allegheny Av & Napa St,40.005074,-75.180432,,,1, +24663,Washington Av & 24th St,39.939838,-75.183233,,,1, +24664,Washington Av & 23rd St ,39.939639,-75.181616,,,1, +24665,Washington Av & 22nd St ,39.93943,-75.179905,,,1, +24666,Washington Av & 21st St ,39.939231,-75.178323,,,1, +24667,Washington Av & 19th St ,39.938804,-75.174842,,,1, +24668,Washington Av & 18th St ,39.938605,-75.173272,,,1, +24669,Washington Av & 17th St ,39.938414,-75.171691,,,1, +24670,Washington Av & 16th St ,39.938214,-75.170109,,,1, +24671,Washington Av & 15th St ,39.938015,-75.16854,,,1, +24672,Washington Av & 12th St ,39.937343,-75.163147,,,1, +24673,Washington Av & 11th St ,39.937126,-75.161589,,,1, +24674,Washington Av & 10th St ,39.93673,-75.160055,,,1, +24675,Washington Av & 9th St ,39.936316,-75.158534,,,1, +24676,Washington Av & 8th St ,39.935902,-75.157001,,,1, +24677,Washington Av & 7th St ,39.935506,-75.155503,,,1, +24678,Washington Av & 6th St ,39.935092,-75.153981,,,1, +24679,Washington Av & 5th St ,39.934669,-75.15246,,,1, +24680,Washington Av & 4th St ,39.934229,-75.150927,,,1, +24681,Washington Av & 3rd St ,39.934011,-75.149334,,,1, +24682,Washington Av & Moyamensing Av,39.933883,-75.148248,,,1, +24683,Washington Av & 2nd St ,39.933783,-75.147387,,,1, +24684,Washington Av & Front St ,39.933592,-75.14577,,,1, +24685,Adams Av & Whitaker Av - FS,40.030666,-75.103985,,,1, +24686,Adams Av & Montour St ,40.031794,-75.10541,,,1, +24687,Adams Av & Tabor Rd ,40.03311,-75.1068,,,1, +24688,Adams Av & Foulkrod St ,40.035337,-75.108421,,,1, +24689,Adams Av & Rising Sun Av ,40.039125,-75.109906,,,1, +24690,Adams Av & Hill Creek Dr - FS,40.036613,-75.108616,,,1, +24691,Adams Av & Newtown Av - FS,40.041755,-75.112247,,,1, +24692,Crescentville Av & Adams Ave - FS,40.04266,-75.113756,,,1, +24693,Crescentville Av & Hammond Av,40.041263,-75.115583,,,1, +24694,Front St & Spencer St - FS,40.043094,-75.119678,,,1, +24695,Godfrey Av & Front St - FS,40.044576,-75.119684,,,1, +24696,Godfrey Av & Mascher St ,40.044794,-75.121314,,,1, +24697,Godfrey Av & 3rd St ,40.045313,-75.125486,,,1, +24698,Godfrey Av & 4th St ,40.04544,-75.126514,,,1, +24699,66th Av & 5th St - FS,40.051833,-75.127339,,,1, +24700,66th Av & 6th St ,40.052042,-75.128982,,,1, +24701,66th Av & 7th St ,40.05226,-75.130648,,,1, +24702,66th Av & 8th St ,40.052397,-75.131747,,,1, +24703,66th Av & Lawnton Av ,40.052842,-75.135151,,,1, +24704,66th Av & 10th St ,40.052651,-75.133697,,,1, +24705,66th Av & 11th St ,40.053024,-75.136558,,,1, +24706,66th Av & 12th St ,40.05316,-75.137645,,,1, +24707,66th Av & 13th St ,40.053369,-75.139229,,,1, +24708,Old York Rd & 66th Av - FS,40.053483,-75.141996,,,1, +24710,Chelten Av 16th St ,40.051036,-75.145352,,,1, +24711,Chelten Av 17th St ,40.051227,-75.146877,,,1, +24712,Chelten Av & 18th St ,40.051418,-75.148496,,,1, +24714,Chelten Av & Limekiln Pk ,40.051793,-75.152882,,,1, +24715,Chelten Av & 21st St ,40.051897,-75.155247,,,1, +24716,Chelten Av & Wister St ,40.052,-75.15767,,,1, +24717,Chelten Av & Anderson St ,40.0512,-75.159081,,,1, +24718,Chelten Av & Ardleigh St ,40.049757,-75.160552,,,1, +24719,Chelten Av & Sprague St ,40.048644,-75.16168,,,1, +24720,Chelten Av & Boyer St ,40.047175,-75.163211,,,1, +24721,Penn St & Pulaski Av - detour,40.02735,-75.175094,,,1, +24722,Penn St & Morris St - detour,40.02621,-75.176292,,,1, +24723,King St & Queen Ln - detour,40.023472,-75.177472,,,1, +24724,Queen Ln & Wissahickon Av - detour,40.022688,-75.178149,,,1, +24725,Queen Ln & Stokley St - detour,40.020052,-75.181125,,,1, +24726,Queen Ln & Fox St - detour,40.018779,-75.182973,,,1, +24727,Wayne Av & Penn St - detour,40.028686,-75.173754,,,1, +24728,Midvale Av & McMichael St ,40.018536,-75.186153,,,1, +24729,Midvale Av & Vaux St - FS,40.015509,-75.190123,,,1, +24730,Midvale Av & Warden Dr ,40.014298,-75.191841,,,1, +24731,Midvale Av & Cresson St - FS,40.011605,-75.192996,,,1, +24735,Reed St & Front St ,39.930148,-75.14628,,,1, +24736,Columbus Blvd & Reed St - MBFS,39.929243,-75.14469,,,1, +24738,Island Av & Suffolk Av - MBFS,39.899525,-75.239352,,,1, +24742,Front St & Wharton St ,39.931246,-75.14611,,,1, +24743,Front St & Ellsworth - FS,39.932994,-75.145714,,,1, +24744,Washington Av & 2nd St ,39.933881,-75.147162,,,1, +24746,Washington Av & 3rd St ,39.934108,-75.149109,,,1, +24747,Washington Av & 4th St ,39.934308,-75.150702,,,1, +24748,Washington Av & 5th St ,39.93474,-75.152224,,,1, +24749,Washington Av & 6th St ,39.935163,-75.153745,,,1, +24750,Washington Av & 7th St ,39.935577,-75.155266,,,1, +24752,Washington Av & 8th St ,39.935982,-75.156764,,,1, +24753,Washington Av & 9th St ,39.936396,-75.158298,,,1, +24754,Washington Av & 10th St ,39.936809,-75.159819,,,1, +24755,Washington Av & 11th St ,39.937214,-75.161388,,,1, +24756,Washington Av & 12th St ,39.937441,-75.162922,,,1, +24757,Washington Av & 13th St ,39.937649,-75.164503,,,1, +24758,Washington Av & 15th St,39.938113,-75.168315,,,1, +24759,Washington Av & 16th St ,39.938312,-75.169885,,,1, +24760,Washington Av & 17th St ,39.938512,-75.171466,,,1, +24761,Washington Av & 18th St ,39.938702,-75.173047,,,1, +24762,Washington Av & 19th St ,39.938902,-75.174629,,,1, +24763,Washington Av & 21st St ,39.939328,-75.178099,,,1, +24764,Washington Av & 22nd St ,39.939528,-75.17968,,,1, +24765,Washington Av & 23rd St ,39.939728,-75.181356,,,1, +24766,Washington Av & 24th St ,39.939936,-75.183008,,,1, +24767,Washington Av & 25th St ,39.940154,-75.184814,,,1, +24778,Midvale Av & Cresson St ,40.011587,-75.192831,,,1, +24779,Midvale Av & Conrad St,40.014102,-75.191842,,,1, +24780,Midvale Av & Vaux St ,40.015437,-75.189982,,,1, +24781,Midvale Av & McMichael St ,40.018339,-75.186178,,,1, +24782,Midvale Av & Fox St ,40.019585,-75.184389,,,1, +24783,Queen Ln & Stokley St - detour,40.01982,-75.18122,,,1, +24784,Queen Ln & Wayne Av - detour,40.027898,-75.172562,,,1, +24785,Queen Ln & Wissahickon Av - detour,40.022474,-75.178149,,,1, +24786,Queen Ln & Laurens St - detour,40.023819,-75.176762,,,1, +24787,Queen Ln & Morris St - detour,40.025359,-75.175184,,,1, +24788,Queen Ln & Pulaski Av - detour,40.02649,-75.17401,,,1, +24789,Wayne Av & Coulter St - FS,40.029384,-75.174709,,,1, +24791,Chelten Av & Boyer St ,40.046978,-75.163188,,,1, +24792,Chelten Av & Sprague St ,40.048457,-75.161669,,,1, +24793,Chelten Av & Ardleigh St ,40.049561,-75.160529,,,1, +24794,Chelten Av & Anderson St ,40.051004,-75.159058,,,1, +24795,Wyncote Av & 65th Av,40.053123,-75.156685,,,1, +24796,Wyncote Av & Stenton Av ,40.053977,-75.15557,,,1, +24797,Wyncote Av & 66th Av ,40.054796,-75.154514,,,1, +24798,66th Av & Limekiln Pk,40.054765,-75.152811,,,1, +24799,66th Av & 20th St ,40.054682,-75.151381,,,1, +24800,66th Av & Ogontz Av ,40.054589,-75.149796,,,1, +24801,66th Av & 18th St ,40.05438,-75.148,,,1, +24802,66th Av & 17th St ,40.054171,-75.146439,,,1, +24803,66th Av & 16th St ,40.053962,-75.144856,,,1, +24804,66th Av & 15th St ,40.053762,-75.143284,,,1, +24805,66th Av & 13th St ,40.053263,-75.139442,,,1, +24806,66th Av & 12th St ,40.053063,-75.13787,,,1, +24807,66th Av & 11th St ,40.052926,-75.136783,,,1, +24808,66th Av & Lawnton Av ,40.052744,-75.135376,,,1, +24809,66th Av & 10th St ,40.052554,-75.133923,,,1, +24810,66th Av & 8th St ,40.052299,-75.131972,,,1, +24811,66th Av & 7th St ,40.052163,-75.130873,,,1, +24812,66th Av & 6th St ,40.051944,-75.129207,,,1, +24813,66th Av & 5th St ,40.05169,-75.127268,,,1, +24814,Godfrey Av & 5th St - FS,40.045543,-75.128228,,,1, +24815,Godfrey Av & Mascher St ,40.044696,-75.121539,,,1, +24816,Godfrey Av & Front St ,40.044442,-75.119684,,,1, +24817,Front St & Spencer St ,40.043023,-75.119856,,,1, +24818,Champlost Av & Front St - FS,40.041336,-75.11991,,,1, +24819,Champlost Av & Ella St ,40.041072,-75.117819,,,1, +24820,Champlost Av & Hammond Av,40.041067,-75.115773,,,1, +24821,Crescentville Rd & Adams Av ,40.042392,-75.113722,,,1, +24822,Adams Av & Newtown Av ,40.041872,-75.112589,,,1, +24823,Adams Av & Rising Sun Av - FS,40.039,-75.110013,,,1, +24824,Adams Av & Hill Creek Dr ,40.0374,-75.109157,,,1, +24825,Adams Av & Bingham St ,40.035444,-75.108657,,,1, +24826,Adams Av & Tabor Rd ,40.033155,-75.107,,,1, +24827,Adams Av & Montour St ,40.031822,-75.105599,,,1, +24828,Adams Av & Whitaker Av ,40.030586,-75.104092,,,1, +24829,Foulkrod St & Ramona St - FS,40.025572,-75.094599,,,1, +24830,Foulkrod St & Castor Av - FS,40.023416,-75.09254,,,1, +24831,Foulkrod St & Rutland St,40.02286,-75.091562,,,1, +24832,Foulkrod St & Large St ,40.02225,-75.090501,,,1, +24833,Foulkrod St & Horrocks St ,40.021245,-75.088756,,,1, +24834,Foulkrod St & Oakland St ,40.02051,-75.087436,,,1, +24835,Foulkrod St & Leiper St ,40.01921,-75.085196,,,1, +24836,Foulkrod St & Penn St ,40.018815,-75.084465,,,1, +24837,Oregon Av & Weccacoe St - MBFS,39.913447,-75.144693,,,1, +24838,Oregon Av & Weccacoe St - MBFS,39.91322,-75.142924,,,1, +24839,Reed St & 31st St ,39.936524,-75.195346,,,1, +24840,Reed St & 32nd St ,39.936714,-75.196927,,,1, +24841,Reed St & 33rd St ,39.936877,-75.198013,,,1, +24844,Paschall Av & Grays Ferry Av - FS,39.941155,-75.209665,,,1, +24845,49th St & Greenway Av ,39.941858,-75.213689,,,1, +24846,49th St & Kingsessing Av ,39.943092,-75.215161,,,1, +24847,49th St & Chester Av - FS,39.944174,-75.216433,,,1,0 +24848,49th St & Springfield Av - FS,39.945346,-75.217835,,,1, +24849,49th St & Warrington Av ,39.946383,-75.219024,,,1, +24850,49th St & Florence Av ,39.947438,-75.220308,,,1, +24851,49th St & Baltimore Av ,39.948109,-75.221133,,,1, +24852,48th St & Baltimore Av - FS,39.948588,-75.219124,,,1, +24853,48th St & Cedar Av ,39.949408,-75.218944,,,1, +24854,48th St & Hazel Av ,39.950202,-75.218777,,,1, +24855,48th St & Larchwood Av ,39.95097,-75.218621,,,1, +24856,48th St & Pine St ,39.952477,-75.21831,,,1, +24857,48th St & Spruce St ,39.953548,-75.218082,,,1, +24858,48th St & Locust St ,39.954761,-75.21783,,,1, +24859,48th St & Walnut St ,39.955894,-75.217591,,,1, +24861,48th St & Fairmount Av ,39.964023,-75.216303,,,1, +24862,48th St & Aspen St ,39.96513,-75.216441,,,1, +24863,48th St & Brown St ,39.966246,-75.21658,,,1, +24864,48th St & Parrish St ,39.96737,-75.216718,,,1, +24865,48th St & Westminster Av ,39.968888,-75.216915,,,1, +24866,3rd St & Monroe St,39.939559,-75.147919,,,1, +24867,3rd St & Green St ,39.961298,-75.143239,,,1, +24868,Germantown Av & Oxford St,39.975129,-75.142097,,,1, +24871,4th St & Welsh St,39.848012,-75.35841,,,1, +24873,3rd St & Madison St,39.849197,-75.355484,,,1, +24874,4th St & Upland St,39.850232,-75.354575,,,1, +24876,4th St & Caldwell St,39.852167,-75.351413,,,1, +24877,4th St & Hinkson St,39.852621,-75.350233,,,1, +24878,4th St & Harrah's Blvd,39.853191,-75.348758,,,1, +24880,Industrial Hwy & Saville Av,39.856899,-75.340959,,,1, +24883,Industrial Hwy & Saude Av,39.866515,-75.296492,,,1, +24885,Governor Printz & Jansen Blvd - MBFS,39.867003,-75.293047,,,1, +24886,Governor Printz Blvd & 1st Av - MBNS,39.868204,-75.289742,,,1, +24887,Governor Printz Blvd & 2nd Av,39.869138,-75.287169,,,1, +24888,Governor Printz Blvd & 3rd Av,39.869903,-75.28502,,,1, +24889,Governor Printz Blvd & 4th Av - FS,39.870793,-75.2826,,,1, +24890,Governor Printz Blvd & 5th Av,39.871451,-75.280794,,,1, +24891,Oxford St & 3rd St - FS,39.974993,-75.140881,,,1, +24892,Brewster Av & 76th St - MBFS,39.90311,-75.231861,,,1, +24894,Essington Av & 67th St - FS,39.913776,-75.221516,,,1, +24896,Lindbergh Blvd & Suffolk Av,39.904343,-75.238608,,,1, +24897,Lindbergh Blvd & 74th St - FS,39.906622,-75.234896,,,1,0 +24898,Lindbergh Blvd & 72nd St - FS,39.909011,-75.232718,,,1, +24899,Lindbergh Blvd & 70th St - FS,39.911157,-75.230116,,,1, +24900,Lindbergh Blvd & 68th St,39.913321,-75.227194,,,1, +24901,Lindbergh Blvd & Eastwick Av - MBNS,39.914801,-75.226022,,,1, +24903,Lindbergh Blvd & 65th St,39.918388,-75.225858,,,1, +24904,Lindbergh Blvd & 64th St,39.919619,-75.224993,,,1, +24905,Lindbergh Blvd & 63rd St,39.920876,-75.224128,,,1, +24906,Lindbergh Blvd & 62nd St,39.92232,-75.22312,,,1, +24907,Lindbergh Blvd & 61st St,39.923862,-75.222089,,,1, +24908,61st St & Eastwick Av,39.923271,-75.220627,,,1, +24909,61st St & Passyunk Av - MBNS,39.919964,-75.212858,,,1,0 +24910,Passyunk Av & 25th St,39.92184,-75.189055,,,1, +24911,Passyunk Av & 24th St,39.922184,-75.187366,,,1, +24912,Passyunk Av & 23rd St,39.922582,-75.185322,,,1, +24913,Passyunk Av & 22nd St,39.922891,-75.183551,,,1, +24914,Passyunk Av & 21st St,39.923209,-75.181791,,,1, +24915,Passyunk Av & 19th St,39.923898,-75.178082,,,1, +24916,Passyunk Av & 18th St,39.924162,-75.176393,,,1, +24917,Passyunk Av & 17th St,39.92448,-75.174692,,,1, +24918,Passyunk Av & 16th St,39.924771,-75.173062,,,1, +24919,Passyunk Av & 15th St,39.925115,-75.171337,,,1, +24920,Passyunk Av & 17th St,39.92464,-75.174538,,,1, +24921,Passyunk Av & 18th St,39.924322,-75.176227,,,1, +24922,Passyunk Av & 19th St,39.924067,-75.177892,,,1, +24923,Passyunk Av & 21st St,39.923351,-75.181613,,,1, +24924,Passyunk Av & 22nd St,39.923033,-75.183302,,,1, +24925,Passyunk Av & 23rd St,39.922715,-75.185039,,,1, +24926,Passyunk Av & 24th St,39.922424,-75.18681,,,1, +24927,Passyunk Av & 25th St,39.922107,-75.188712,,,1, +24929,Passyunk Av & 28th St - FS,39.921305,-75.194073,,,1, +24931,Passyunk Av & 63rd St - FS,39.916891,-75.216538,,,1, +24932,Essington Av & 67th St,39.914115,-75.221562,,,1, +24933,Holstein Av & 74th St,39.903425,-75.227753,,,1, +24934,Brewster Av & 76th St - MBNS,39.903066,-75.232062,,,1, +24935,61st St & Eastwick Av - FS,39.92344,-75.220697,,,1, +24936,Lindbergh Blvd & 61st St - FS,39.923836,-75.222431,,,1, +24937,Lindbergh Blvd & 62nd St,39.922561,-75.223285,,,1, +24938,Lindbergh Blvd & 63rd St,39.921206,-75.224233,,,1, +24939,Lindbergh Blvd & 64th St,39.919887,-75.225122,,,1, +24940,Lindbergh Blvd & 65th St,39.918674,-75.225952,,,1, +24941,Lindbergh Blvd & Harley Av,39.917354,-75.226404,,,1, +24942,Lindbergh Blvd & Eastwick Av,39.916158,-75.226065,,,1, +24943,Lindbergh Blvd & 68th St,39.913652,-75.227252,,,1, +24944,Lindbergh Blvd & 70th St,39.911354,-75.230327,,,1, +24945,Lindbergh Blvd & 72nd St,39.9091,-75.233025,,,1, +24946,Lindbergh Blvd & 74th St - FS,39.906436,-75.235534,,,1,0 +24947,Lindbergh Blvd & 78th St,39.903672,-75.243117,,,1, +24948,Governor Printz & 5th Av - FS,39.872308,-75.281394,,,1, +24949,Governor Printz & 4th Av,39.871632,-75.283283,,,1, +24950,Governor Printz & 3rd Av,39.870849,-75.285408,,,1, +24951,Governor Printz & 2nd Av,39.870058,-75.287497,,,1, +24952,Governor Printz & 1st Av - FS,39.868829,-75.28987,,,1, +24953,Governor Printz & Jansen Av - FS,39.866844,-75.294805,,,1, +24955,Governor Printz & Saude Av,39.866756,-75.296338,,,1, +24957,Industrial Hwy & Saville Av,39.857184,-75.340923,,,1, +24958,Industrial Hw & Eddystone Av - MBFS,39.859954,-75.333584,,,1, +24959,4th St & Harrah's Blvd - FS,39.853272,-75.348888,,,1, +24960,4th St & Caldwell St,39.852354,-75.351259,,,1, +24961,Morton Av & 4th St - FS,39.850892,-75.353218,,,1, +24963,3rd St & Madison St,39.849438,-75.355472,,,1, +24964,3rd St & Crosby St,39.848163,-75.3567,,,1, +24965,Front St & Indiana St ,39.995378,-75.129857,,,1, +24966,Front St & Ontario St ,40.001515,-75.128532,,,1, +24967,Front St & Hunting Park Av - MBFS,40.01528,-75.125614,,,1, +24968,Crescentville Rd & Adams Av - MBFS,40.04372,-75.113066,,,1, +24969,Crescentville & Walnut Prk Dr - MBNS,40.045139,-75.112764,,,1, +24971,4th St & Noble St ,39.959393,-75.145396,,,1, +24972,Whitman Plaza 3,39.912898,-75.154739,,,1, +24973,Whitman Plaza - 2,39.912677,-75.155862,,,1, +24976,Highland Av & 5th St,39.833444,-75.392319,,,1, +24978,Highland Av & 7th St,39.835042,-75.393875,,,1, +24979,Delaware Av & Oregon Av - MBFS,39.909845,-75.138818,,,1, +24980,Columbus Blvd Av & Packer Terminal,39.90758,-75.139311,,,1, +24981,Delaware Av & Packer Terminal,39.907337,-75.138746,,,1,0 +24982,Delaware Av & Oregon Av,39.909898,-75.138193,,,1, +24983,9th St & Harwick St,39.835115,-75.396692,,,1, +24984,9th St & Booth St,39.834481,-75.397836,,,1, +24985,9th St & Clover Ln,39.833866,-75.399004,,,1, +24986,9th St & Meadow Ln,39.832929,-75.401409,,,1, +24987,9th St & Sunset St,39.832457,-75.402612,,,1, +24988,9th St & Langley St,39.83177,-75.404168,,,1, +24989,9th St & Chestnut St,39.831083,-75.405854,,,1, +24990,Ridge Av & Main St,39.830155,-75.407918,,,1, +24991,Ridge Rd & Baker St,39.827452,-75.414391,,,1, +24992,Ridge Rd & Crosgrove St,39.826881,-75.415652,,,1, +24993,Ridge Rd & Yates Av,39.826024,-75.417574,,,1, +24994,Ridge Av & Huddell St,39.82341,-75.422914,,,1, +24995,Ridge Av & Hewes Av,39.822241,-75.425566,,,1, +25007,Bristol Rd & Fulton Av,40.151783,-74.964219,,,1, +25009,Ridge Av & Hewes Av,39.821973,-75.425743,,,1, +25010,Ridge Av & Huddell St - FS,39.82324,-75.422843,,,1, +25013,Ridge Av & Yates Av,39.825757,-75.417739,,,1, +25014,Ridge Av & Crosgrove St - FS,39.826774,-75.415534,,,1, +25016,Ridge Av & Main St,39.829923,-75.408024,,,1, +25017,9th St & Chestnut St,39.830824,-75.406008,,,1, +25018,9th St & Langley Av - FS,39.831529,-75.40431,,,1, +25019,9th St & Sunset St,39.832216,-75.40273,,,1, +25020,9th St & Trainer St Clover Ln,39.833625,-75.399145,,,1, +25021,9th St & Booth St,39.834196,-75.397966,,,1, +25022,9th St & Harwick St,39.834829,-75.396834,,,1, +25023,9th St & Meadow Ln,39.832769,-75.401303,,,1, +25024,Highland Av & 7th St,39.835096,-75.394228,,,1, +25027,Highland Av & 5th St,39.833659,-75.392779,,,1, +25034,Rockhill Rd & Overlook Blvd - FS,40.141105,-74.963389,,,1, +25036,Paschall Av & Grays Ferry Av ,39.941146,-75.209488,,,1, +25037,50th St & Paschall Av,39.939054,-75.212882,,,1, +25038,Paschall Av & 49th St ,39.939748,-75.21144,,,1, +25039,Grays Ferry Av & 33rd St ,39.939348,-75.197344,,,1, +25040,Grays Ferry Av & 32rd St ,39.939195,-75.196553,,,1, +25041,Grays Ferry Av & 31st St ,39.938995,-75.194983,,,1, +25042,Grays Ferry Av & 30th St ,39.938992,-75.193366,,,1, +25043,Grays Ferry Av & 29th St ,39.938989,-75.191748,,,1, +25044,Grays Ferry Av & Carpenter St ,39.941396,-75.185766,,,1, +25045,Grays Ferry Av & Christian St ,39.942242,-75.184441,,,1, +25046,Grays Ferry Av & Catherine St ,39.942918,-75.183364,,,1, +25047,Grays Ferry Av & Fitzwater St ,39.943745,-75.181991,,,1, +25048,Grays Ferry Av & Bainbridge St ,39.944581,-75.180595,,,1, +25049,Chester Pk & Folcroft Av,39.905319,-75.279992,,,1, +25050,Chester Pk & Oak Ln - MBFS,39.903351,-75.283631,,,1, +25052,Chester Pk & Ashland Av,39.901195,-75.287659,,,1, +25053,Chester Pk & Gardner Av,39.900064,-75.289691,,,1, +25054,Chester Pk & Knowles Av,39.898647,-75.29098,,,1, +25055,Chester Pk & Glenolden Av,39.89772,-75.291832,,,1, +25056,Chester Pk & Grays Av,39.896186,-75.293192,,,1, +25057,Chester Pk & South Av,39.894519,-75.294682,,,1, +25060,Chester Pk & Winona Av,39.889053,-75.299541,,,1, +25061,Chester Pk & Amosland Rd,39.888215,-75.300298,,,1, +25062,Chester Pk & Huron Av - FS,39.886503,-75.301835,,,1, +25063,Chester Pk & Summit Av,39.884488,-75.30362,,,1, +25064,Bainbridge St & 22nd St,39.944364,-75.178955,,,1, +25065,Chester Pk & Prospect Av,39.881449,-75.308261,,,1, +25066,Chester Pk & Burk Av - FS,39.87989,-75.311249,,,1, +25067,Chester Pk & Rodney Rd,39.87941,-75.312653,,,1, +25068,Chester Pk & Acres Dr,39.877995,-75.317127,,,1, +25069,22nd St & South St ,39.94522,-75.178503,,,1, +25071,Chester Pk & Swarthmore Av,39.876606,-75.321034,,,1, +25072,22nd St & Lombard St ,39.946219,-75.178287,,,1, +25073,Chester Pk & Sellers Av,39.875091,-75.324044,,,1, +25074,Chester Pk & Stewart Av,39.873969,-75.32611,,,1, +25075,Locust St & 21st St ,39.949588,-75.176067,,,1, +25076,Chester Pk & Hetzel Av,39.873033,-75.327928,,,1, +25077,Chester Pk & Ridley Av,39.871064,-75.332047,,,1, +25078,Locust St & Rittenhouse Sq ,39.949216,-75.173128,,,1, +25079,Rittenhouse Sq & 19th St ,39.94868,-75.172693,,,1, +25080,Rittenhouse Sq & 18th St ,39.94848,-75.171088,,,1, +25082,Locust St & 17th St ,39.948771,-75.169469,,,1, +25083,Locust St & 16th St ,39.948563,-75.167911,,,1, +25084,Locust St & 15th St ,39.948363,-75.166376,,,1, +25085,Locust St & 13th St ,39.9479,-75.162505,,,1, +25086,Locust St & 12th St ,39.9477,-75.160888,,,1, +25087,Locust St & 11th St ,39.947509,-75.159354,,,1, +25088,Locust St & 10th St ,39.9473,-75.157737,,,1, +25089,Locust St & 9th St ,39.947119,-75.156167,,,1, +25090,Pine St & 8th St - FS,39.944224,-75.154856,,,1, +25091,Pine St & 7th St ,39.94407,-75.153605,,,1, +25092,Pine St & 6th St ,39.943879,-75.152023,,,1, +25093,Pine St & 5th St ,39.943679,-75.150501,,,1, +25094,Pine St & 4th St ,39.94347,-75.148907,,,1, +25095,Spruce St & 3rd St - FS,39.944831,-75.147048,,,1, +25096,Spruce St & 6th St ,39.945368,-75.151498,,,1, +25097,Spruce St & 7th St ,39.945559,-75.153056,,,1, +25098,Washington Sq & Walnut St ,39.947826,-75.153153,,,1, +25099,Grays Ferry Av & Bainbridge St ,39.944688,-75.180583,,,1, +25100,Grays Ferry Av & Fitzwater St,39.943906,-75.181908,,,1, +25101,Grays Ferry Av & Catherine St,39.943078,-75.183257,,,1, +25102,Grays Ferry Av & Christian St ,39.94242,-75.184346,,,1, +25103,Grays Ferry Av & Carpenter St ,39.941593,-75.185801,,,1, +25105,Grays Ferry Av & 28th St ,39.93928,-75.189929,,,1, +25106,Grays Ferry Av & 29th St ,39.93923,-75.191559,,,1, +25107,Grays Ferry Av & 30th St ,39.939224,-75.193188,,,1, +25108,Grays Ferry Av & 31st St ,39.939218,-75.194794,,,1, +25109,Grays Ferry Av & 32nd St ,39.939346,-75.196352,,,1, +25110,Grays Ferry Av & 33rd St - FS,39.939535,-75.197343,,,1, +25111,Grays Ferry Av & Grove St - FS,39.940372,-75.201213,,,1, +25113,Chester Pk & Smiley St - FS,39.867634,-75.339353,,,1, +25114,Chester Pk & Baldwin Towers Dr,39.866974,-75.340722,,,1, +25115,Chester Pk & Eddystone Crossings Shopping Ctr,39.866341,-75.341973,,,1, +25116,Chester Pk & Simpson St - FS,39.865397,-75.343873,,,1, +25118,Saville Av & 12th St,39.862622,-75.344714,,,1, +25119,Saville Av & 11th St,39.861916,-75.344208,,,1, +25120,Saville Av & 10th St,39.860693,-75.343431,,,1, +25121,Reed St & Columbus Blvd - MBFS,39.929976,-75.144923,,,1, +25122,Saville Av & 9th St,39.859559,-75.342713,,,1, +25123,9th St & Eddystone Av,39.858793,-75.344577,,,1, +25124,Front St & Dickinson St ,39.928989,-75.146686,,,1, +25125,9th St & Elsinore Pl,39.856691,-75.350205,,,1, +25126,Front St & Greenwich St ,39.927972,-75.146949,,,1, +25127,9th St & Hyatt St - FS,39.856014,-75.352034,,,1, +25128,Front St & Morris St ,39.926518,-75.147215,,,1, +25129,9th St & Morton Av,39.855452,-75.353544,,,1, +25130,Front St & Mifflin St ,39.924101,-75.147885,,,1, +25132,Front St & McKean St ,39.922906,-75.148162,,,1, +25133,9th St & Upland St,39.854107,-75.357154,,,1, +25134,9th St & Madison St,39.85359,-75.358581,,,1, +25135,Av of the States & 7th St,39.850709,-75.360943,,,1, +25136,22nd St & Wolf St ,39.923497,-75.183242,,,1, +25137,22nd St & Jackson St ,39.924728,-75.18299,,,1, +25138,22nd St & Snyder Av ,39.925933,-75.182702,,,1, +25139,22nd St & McKean St ,39.927226,-75.182426,,,1, +25140,22nd St & Mifflin St ,39.928439,-75.18215,,,1, +25141,22nd St & Moore St ,39.929697,-75.181851,,,1, +25142,22nd St & Morris St ,39.930875,-75.181623,,,1, +25143,22nd St & Tasker St ,39.932124,-75.181335,,,1, +25144,22nd St & Dickinson St ,39.933346,-75.181071,,,1, +25145,22nd St & Reed St ,39.934532,-75.180819,,,1, +25146,22nd St & Wharton St ,39.935737,-75.180531,,,1, +25147,22nd St & Oakford St ,39.936879,-75.180291,,,1, +25148,22nd St & Federal St ,39.937806,-75.180099,,,1, +25149,22nd St & Ellsworth St ,39.93844,-75.179955,,,1, +25150,22nd St & Carpenter St ,39.940581,-75.179523,,,1, +25151,22nd St & Christian St ,39.941562,-75.179283,,,1, +25152,22nd St & Catherine St ,39.94232,-75.179162,,,1, +25153,22nd St & Fitzwater St ,39.943364,-75.178887,,,1, +25154,22nd St & Bainbridge St ,39.944336,-75.178695,,,1, +25155,22nd St & Chestnut St ,39.952437,-75.176931,,,1, +25156,22nd St & Market St ,39.953962,-75.176595,,,1, +25157,22nd St & Pennsylvania Av ,39.962749,-75.174721,,,1, +25158,Fairmount Av & 23rd St,39.967391,-75.175248,,,1, +25160,Fairmount Av & 24th St ,39.96743,-75.176854,,,1, +25166,9th St & Barclay St,39.849936,-75.367594,,,1, +25167,9th St & Fulton St,39.849267,-75.36914,,,1, +25168,9th St & Kerlin St,39.848474,-75.371192,,,1, +25170,27th St & Thompson St ,39.975799,-75.180026,,,1, +25171,9th St & Pusey St,39.847021,-75.375332,,,1, +25172,Master St & 27th St - FS,39.977263,-75.179962,,,1, +25173,9th St & Lloyd St,39.84654,-75.376323,,,1, +25174,Master St & 28th St,39.977408,-75.181084,,,1, +25175,Master St & 29th St,39.977607,-75.182689,,,1, +25177,9th St & Lamokin St,39.84547,-75.378305,,,1, +25179,9th St & Tilghman St,39.8439,-75.381336,,,1, +25180,9th St & Central Av,39.843365,-75.382351,,,1, +25181,9th St & Edwards St,39.842776,-75.383436,,,1, +25183,9th St & Yarnall St,39.841144,-75.386632,,,1, +25184,29th St & Sedgley Av,39.98577,-75.180948,,,1, +25185,9th St & Engle St,39.840012,-75.38879,,,1, +25186,9th St & Townsend S - FS,39.839298,-75.390147,,,1, +25188,9th St & Ward St,39.838237,-75.391975,,,1, +25189,9th St & Wilson St,39.837603,-75.392859,,,1, +25190,27th St & Dauphin St ,39.990448,-75.176832,,,1, +25193,9th St & Highland Av,39.836033,-75.395041,,,1, +25194,Highland Av & 10th St,39.836944,-75.396161,,,1, +25196,Highland Av & 12th St,39.837953,-75.39741,,,1, +25197,Highland Av & Swartz St,39.839202,-75.398919,,,1, +25199,Engle St & 11th St,39.841369,-75.389969,,,1, +25200,Susquehanna Av & 27th St ,39.989038,-75.177062,,,1, +25201,Susquehanna Av & 29th St ,39.989428,-75.18012,,,1, +25202,29th St & Sedgley Av,39.985878,-75.181078,,,1, +25203,Hamilton St & 21st St,39.962452,-75.173246,,,1, +25204,21st St & Market St ,39.953915,-75.175142,,,1, +25205,23rd St & Fitzwater St ,39.943725,-75.180669,,,1, +25206,23rd St & Cathatine St ,39.942734,-75.180885,,,1, +25207,23rd St & Christian St ,39.941949,-75.181041,,,1, +25208,23rd St & Carpenter St ,39.940968,-75.181257,,,1, +25209,23rd St & Ellsworth St ,39.9388,-75.181749,,,1, +25210,23rd St & Federal St ,39.93814,-75.181869,,,1, +25211,23rd St & Wharton St ,39.936133,-75.182325,,,1, +25212,23rd St & Reed St ,39.934929,-75.1826,,,1, +25213,23rd St & Dickinson St ,39.933715,-75.182864,,,1, +25214,23rd St & Tasker St ,39.932449,-75.183128,,,1, +25215,23rd St & Morris St ,39.931235,-75.18338,,,1, +25216,23rd St & Pierce St ,39.930468,-75.18356,,,1, +25217,23rd St & Mifflin St ,39.928844,-75.183908,,,1, +25218,23rd St & McKean St ,39.927613,-75.184148,,,1, +25219,23rd St & Snyder Av ,39.926382,-75.184424,,,1, +25220,23rd St & Jackson St ,39.92516,-75.184747,,,1, +25221,23rd St & Wolf St ,39.923911,-75.185023,,,1, +25222,23rd St & Passyunk Av ,39.922725,-75.185227,,,1, +25223,Water St & McKean St ,39.922609,-75.147136,,,1, +25224,Water St & Mifflin St ,39.923849,-75.146859,,,1, +25225,Water St & Morris St ,39.926311,-75.146307,,,1, +25226,Water St & Tasker St ,39.927506,-75.146042,,,1, +25239,Broad St & Hartranft St ,39.907778,-75.172816,,,1, +25240,Broad St & Pattison Av,39.905639,-75.174216,,,1, +25241,Main St & Powell Av,39.918244,-75.260608,,,1, +25242,Crescentville Rd & Walnut ParkDr - MBFS,40.044943,-75.112966,,,1, +25243,Crescentville Rd & Adams Av - MBNS,40.043658,-75.113255,,,1, +25246,Concord Rd & Green St,39.846101,-75.396947,,,1, +25249,Concord Rd & Baldwin Run La - FS,39.858026,-75.40857,,,1, +25251,Concord Rd & Pancoast Rd,39.861927,-75.413557,,,1, +25253,Dutton Mill Rd & Roberts Rd,39.863168,-75.417272,,,1, +25254,Dutton Mill Rd & Vinsmith Av,39.861526,-75.418346,,,1, +25255,Dutton Mill Rd & Joann Dr,39.85975,-75.418676,,,1, +25256,Dutton Mill Rd & Pancoast Av - FS,39.858572,-75.418936,,,1, +25257,Dutton Mill Rd & Turner Way - MBNS,39.857572,-75.420481,,,1, +25258,Dutton Mill Rd & Pennell Rd,39.857207,-75.426732,,,1, +25259,Pennell Rd & Hall Dr,39.860348,-75.42718,,,1, +25260,Concord Rd & Bridgewater Rd,39.85957,-75.410574,,,1, +25261,Concord Rd & Pennel Rd - FS,39.869308,-75.428878,,,1, +25262,Concord Rd & Red Hill Rd - FS,39.870665,-75.432641,,,1, +25263,Concord Rd & Gerald Dr - FS,39.870736,-75.43533,,,1, +25266,Concord Rd & Gerald Dr - FS,39.870576,-75.43533,,,1, +25267,Concord Rd & Red Hill Rd,39.870495,-75.432381,,,1, +25269,Pennell Rd & Knowlton Rd,39.869594,-75.428406,,,1, +25272,Pennell Rd & Old Pennell Rd,39.879134,-75.429597,,,1, +25280,Pennell Rd & Lenni Rd,39.90365,-75.43951,,,1, +25281,Pennell Rd & Whirlaway Ln - FS,39.906568,-75.439888,,,1, +25283,Pennell Rd & Baltimore Pk - MBNS,39.911646,-75.439594,,,1, +25284,Baltimore Pk & Granite Ln,39.913637,-75.434295,,,1, +25288,Ogontz Av & Medary Av,40.050128,-75.150547,,,1, +25290,Baltimore Pk & Granite Run Mall Dr,39.914012,-75.43361,,,1, +25291,Pennell Rd & Baltimore Pk - FS,39.911494,-75.439842,,,1, +25294,Pennell Rd & Berry Ln,39.905988,-75.4401,,,1, +25295,Pennell Rd & Lenni Rd,39.903177,-75.439404,,,1, +25298,Pennell Rd & Laurel Ln - FS,39.897269,-75.436642,,,1, +25299,Pennell Rd & Parkmount Rd,39.894815,-75.435367,,,1, +25300,Pennell Rd & Mount Rd - FS,39.892842,-75.432347,,,1, +25301,Pennell Rd & Glendale Blvd,39.883998,-75.430553,,,1, +25302,Pennell Rd & Old Pennell Rd - FS,39.87917,-75.429786,,,1, +25306,Pennell Rd & Hall Ln,39.860661,-75.427427,,,1, +25307,Pennell Rd & Lamp Post Ln,39.858108,-75.427168,,,1, +25308,Dutton Mill Rd & Pennell Rd - FS,39.857064,-75.426236,,,1, +25309,Dutton Mill Rd & Turner Way,39.857198,-75.423088,,,1, +25310,Dutton Mill Rd & Pancoast Av,39.858215,-75.418913,,,1, +25311,Dutton Mill Rd & Wellington Rd,39.861303,-75.418181,,,1, +25312,Dutton Mill Rd & Concord Rd,39.863855,-75.416541,,,1, +25314,Concord Rd & Pancoast Rd,39.861945,-75.413911,,,1, +25316,Concord Rd & Bridgewater Rd,39.859642,-75.410952,,,1, +25317,Concord Rd & Baldwin Run Dr,39.857883,-75.408676,,,1, +25320,Commerce Dr & MacDonald Blvd,39.850948,-75.404409,,,1, +25322,Concord Rd & Incinerator Rd,39.848841,-75.401002,,,1, +25323,Concord Rd & Green St - FS,39.845913,-75.396888,,,1, +25324,Engle St & Shannon St,39.843547,-75.392161,,,1, +25325,Engle St & 11th St,39.841556,-75.390405,,,1, +25327,Engle St & 9th St,39.839976,-75.389015,,,1, +25331,9th St & Yarnall St - FS,39.841037,-75.386526,,,1, +25333,9th St & Edwards St,39.842571,-75.383507,,,1, +25334,9th St & Central Av,39.843133,-75.382445,,,1, +25335,9th St & Tilghman St - FS,39.843793,-75.381195,,,1, +25336,9th St & Lamokin St,39.845193,-75.378435,,,1, +25338,9th St & Lloyd St,39.846281,-75.376429,,,1, +25340,9th St & Lincoln St,39.847351,-75.373799,,,1, +25341,9th St & Butler St,39.84777,-75.372631,,,1, +25342,9th St & Kerlin St,39.848188,-75.371452,,,1, +25344,9th St & Fulton St,39.849017,-75.369387,,,1, +25345,9th St & Barclay St,39.849668,-75.367807,,,1, +25347,9th St & Sproul St,39.851522,-75.363289,,,1, +25348,Sproul St & 7th St,39.850245,-75.36237,,,1, +25352,9th St & Madison St,39.85334,-75.358758,,,1, +25354,9th St & Potter St,39.854401,-75.35588,,,1, +25357,9th St & Elsinore Pl,39.856441,-75.35037,,,1, +25358,9th St & Eddystone Av,39.858561,-75.344707,,,1, +25359,9th St & Saville Av,39.859336,-75.342595,,,1, +25360,Saville Av & 10th St,39.860532,-75.343077,,,1, +25361,Saville Av & 11th St,39.861791,-75.343866,,,1, +25362,Saville Av & 12th St,39.862568,-75.344372,,,1, +25363,Saville Av & 13th St,39.863318,-75.345197,,,1, +25364,Saville Av & Chester Pk,39.864131,-75.346033,,,1, +25365,Chester Pk & Simpson St,39.865307,-75.34372,,,1, +25366,Chester Pk & Eddystone Crossings Shopping Ctr,39.866092,-75.34208,,,1, +25367,Chester Pk & Baldwin Towers Dr - FS,39.866894,-75.340486,,,1, +25368,Chester Pk & Smiley St,39.867517,-75.339188,,,1, +25369,Cecil B Moore Av & 32nd St ,39.982346,-75.186808,,,1, +25370,Cecil B Moore Av & 31st St ,39.982137,-75.185214,,,1, +25371,Cecil B Moore Av & Glenwood Av,39.981929,-75.183608,,,1, +25372,Cecil B Moore Av & 29th St ,39.981729,-75.182002,,,1, +25373,Cecil B Moore Av & 28th St ,39.98153,-75.18036,,,1, +25374,Cecil B Moore Av & 27th St ,39.98134,-75.178943,,,1, +25375,Cecil B Moore Av & 26th St ,39.981131,-75.177397,,,1, +25376,Cecil B Moore Av & 25th St ,39.980932,-75.175814,,,1, +25377,Cecil B Moore Av & 24th St ,39.980714,-75.17422,,,1, +25378,Cecil B Moore Av & Ridge Av ,39.980515,-75.172602,,,1, +25379,Cecil B Moore Av & 22nd St ,39.980315,-75.171008,,,1, +25380,Cecil B Moore Av & 21st St ,39.980097,-75.169402,,,1, +25381,Cecil B Moore Av & 19th St ,39.979653,-75.165966,,,1, +25382,Cecil B Moore Av & 18th St ,39.979471,-75.164372,,,1, +25383,Cecil B Moore Av & 17th St ,39.979254,-75.162814,,,1, +25384,Cecil B Moore Av & 16th St ,39.979054,-75.161231,,,1, +25385,Cecil B Moore Av & 15th St ,39.978854,-75.159661,,,1, +25386,Cecil B Moore Av & 13th St ,39.978293,-75.155824,,,1, +25387,Cecil B Moore Av & 12th St ,39.978102,-75.154253,,,1, +25388,Cecil B Moore Av & 11th St ,39.977902,-75.152695,,,1, +25389,Cecil B Moore Av & 10th St - FS,39.977684,-75.150805,,,1, +25390,Cecil B Moore Av & 9th St ,39.977538,-75.149518,,,1, +25391,Cecil B Moore Av & 8th St ,39.977411,-75.14855,,,1, +25393,Berks St & 6th St ,39.980044,-75.144866,,,1, +25394,Berks St & Germantown Av ,39.979881,-75.143531,,,1, +25395,Berks St & 4th St ,39.979598,-75.141123,,,1, +25396,Berks St & 3rd St ,39.979453,-75.140119,,,1, +25397,Berks St & American St ,39.979263,-75.138856,,,1, +25398,Berks St & 2nd St ,39.979099,-75.137557,,,1, +25399,Berks St & Mascher St ,39.978863,-75.135609,,,1, +25401,Berks St & Front St ,39.97859,-75.133672,,,1, +25402,Front St & Norris St ,39.979972,-75.133123,,,1, +25403,Front St & Coral St ,39.98148,-75.132798,,,1, +25404,Front St & Susquehanna Av ,39.982952,-75.132485,,,1, +25405,Kensington Av & Cumberland St ,39.987443,-75.129654,,,1, +25406,Kensington Av & Lehigh Av ,39.989745,-75.125462,,,1, +25407,Kensington Av & Orleans St ,39.993646,-75.118403,,,1, +25408,Kensington Av & Castor Av ,40.00404,-75.099556,,,1, +25409,Kensington Av & Hunting Park Av,40.00698,-75.094189,,,1, +25410,Kensington Av & Adams Av ,40.00841,-75.091606,,,1, +25411,Kensington Av & Womrath St ,40.009147,-75.090267,,,1, +25412,Chester Pk & Morris Av,39.869594,-75.334857,,,1, +25413,Chester Pk & Ridley Av,39.870788,-75.332236,,,1, +25414,Chester Pk & Ketcham Rd - MBNS,39.871981,-75.329628,,,1, +25415,Chester Pk & Hetzel Rd,39.872828,-75.327999,,,1, +25416,Chester Pk & Stewart Av,39.873746,-75.326193,,,1, +25417,Chester Pk & Sellers Av - FS,39.87494,-75.323855,,,1, +25418,Chester Pk & Swarthmore Av,39.876374,-75.321164,,,1, +25419,Chester Pk & Princeton Av - FS,39.877238,-75.31918,,,1, +25420,Chester Pk & Acres Dr - FS,39.87779,-75.317304,,,1, +25421,Frankford Av & Oxford Av ,40.016885,-75.083659,,,1, +25422,Chester Pk & Rodney Rd,39.879178,-75.312913,,,1, +25423,Chester Pk & Burk Av,39.879765,-75.311119,,,1, +25424,Chester Pk & Prospect Av,39.881191,-75.308427,,,1, +25425,Chester Pk & Summit Av,39.88422,-75.30362,,,1, +25426,Kensington Av & Womrath St ,40.009361,-75.090172,,,1, +25427,Kensington Av & Adams Av ,40.008686,-75.09138,,,1, +25428,Kensington Av & Hunting Park Av,40.007256,-75.093999,,,1, +25429,Kensington Av & Castor Av ,40.004351,-75.099271,,,1, +25430,Kensington Av & M St ,40.003126,-75.101534,,,1, +25431,Chester Pk & Huron Av,39.886262,-75.301776,,,1, +25432,Chester Pk & Amosland Rd,39.887894,-75.300346,,,1, +25433,Chester Pk & Winona Av,39.888661,-75.299648,,,1, +25434,Chester Pk & Garfield Av,39.890435,-75.298052,,,1, +25435,Chester Pk & Cleveland Av,39.891505,-75.297106,,,1, +25436,Kensington Av & G St ,39.995388,-75.115595,,,1, +25438,Kensington Av & F St ,39.994073,-75.118,,,1, +25439,Chester Pk & South Av,39.894099,-75.2948,,,1, +25440,Kensington Av & E St ,39.992811,-75.120285,,,1, +25441,Chester Pk & Grays Av,39.895883,-75.293216,,,1, +25442,Chester Pk & Glenolden Av,39.897372,-75.291903,,,1, +25443,Chester Pk & Knowles Av,39.89845,-75.290945,,,1, +25445,Chester Pk & Ashland Av,39.900937,-75.287743,,,1, +25446,Chester Pk & Lamont Av - FS,39.901765,-75.286313,,,1, +25448,Chester Pk & Oak Ln,39.903324,-75.283348,,,1, +25449,Chester Pk & Folcroft Av,39.904962,-75.280335,,,1, +25451,Front St & Susquehanna Av ,39.983282,-75.132578,,,1, +25452,Front St & Diamond St ,39.981712,-75.132915,,,1, +25453,Front St & Norris St ,39.98024,-75.13324,,,1, +25455,Berks St & Mascher St ,39.978951,-75.135348,,,1, +25456,Berks St & 2nd St ,39.979197,-75.13732,,,1, +25457,Berks St & American St ,39.979351,-75.138513,,,1, +25458,Berks St & 3rd St ,39.979542,-75.139871,,,1, +25459,Berks St & 4th St ,39.979687,-75.140874,,,1, +25460,Berks St & 5th St ,39.979897,-75.142716,,,1, +25461,Chester Pk & Clifton Av,39.907767,-75.275207,,,1, +25462,Chester Pk & Sharon Av,39.908533,-75.273813,,,1, +25464,Chester Pk & Kenny Av - MBFS,39.910937,-75.269595,,,1, +25465,Berks St & 6th St ,39.980133,-75.144523,,,1, +25466,Chester Pk & Calcon Hook Rd,39.911534,-75.268791,,,1, +25467,6th St & Montgomery Av ,39.978688,-75.145084,,,1, +25468,6th St & Cecil B Moore Av ,39.977154,-75.145361,,,1, +25469,Cecil B Moore Av & 7th St ,39.977299,-75.146708,,,1, +25470,Cecil B Moore Av & 8th St - FS,39.977554,-75.148656,,,1, +25471,Cecil B Moore Av & 10th St ,39.977817,-75.150852,,,1, +25472,Cecil B Moore Av & 11th St ,39.977999,-75.152434,,,1, +25473,Cecil B Moore Av & 12th St ,39.978199,-75.153993,,,1, +25474,Cecil B Moore Av & 13th St ,39.97839,-75.155563,,,1, +25475,Cecil B Moore Av & 15th St ,39.978943,-75.159401,,,1, +25476,Cecil B Moore Av & 16th St ,39.979152,-75.160971,,,1, +25477,Cecil B Moore Av & 17th St ,39.979351,-75.162553,,,1, +25478,Cecil B Moore Av & 18th St ,39.97956,-75.164124,,,1, +25479,Cecil B Moore Av & 19th St ,39.979751,-75.165706,,,1, +25480,Cecil B Moore Av & 21st St ,39.980186,-75.169142,,,1, +25481,Cecil B Moore Av & 22nd St ,39.980386,-75.170654,,,1, +25482,Cecil B Moore Av & Ridge Av ,39.980603,-75.172354,,,1, +25483,Cecil B Moore Av & 24th St ,39.980812,-75.173984,,,1, +25484,Cecil B Moore Av & 25th St ,39.981029,-75.175578,,,1, +25485,Cecil B Moore Av & 26th St ,39.981229,-75.177172,,,1, +25486,Cecil B Moore Av & 27th St ,39.981437,-75.178707,,,1, +25487,Cecil B Moore Av & 28th St ,39.981628,-75.180124,,,1, +25488,Cecil B Moore Av & 29th St ,39.981827,-75.181765,,,1, +25489,Cecil B Moore Av & 30th St ,39.982027,-75.183383,,,1, +25490,Cecil B Moore Av & 31st St ,39.982217,-75.184859,,,1, +25491,Cecil B Moore Av & 32nd St ,39.982443,-75.186548,,,1, +25492,Martins Mill Rd & Magee Av,40.051305,-75.091699,,,1, +25494,Hasbrook Av & Chandler St,40.07293,-75.084878,,,1, +25495,Huntingdon Pk & Roseland Av,40.092695,-75.092888,,,1, +25497,Huntingdon Pk & Welsh Rd,40.114868,-75.070876,,,1, +25498,Huntingdon Pk & Alden Rd,40.130765,-75.061811,,,1, +25499,Huntingdon Pk & Albidale Dr,40.15235,-75.053754,,,1, +25500,Huntingdon Pk & Wright Dr - FS,40.154183,-75.051743,,,1, +25502,County Line Rd & Mann Rd - FS,40.162228,-75.055774,,,1, +25503,James Way & County Line Rd - MBFS,40.164641,-75.056828,,,1, +25513,Calcon Hook Rd & Bayard Av,39.900888,-75.262961,,,1, +25516,Calcon Hook Rd & Bayard Av,39.900718,-75.262679,,,1, +25518,Court at King of Prussia Macys,40.088319,-75.386908,,,1, +25520,Whitby Av & 52nd St - MBNS,39.946727,-75.227454,,,1, +25521,52nd St & Jefferson St - FS,39.979558,-75.2252,,,1, +25525,County Line Rd & Mann Rd - MBFS,40.161681,-75.055007,,,1, +25526,County Line Rd & Huntingdon Pk,40.158039,-75.048963,,,1, +25527,Huntingdon Pk & Albidale Dr,40.152502,-75.053741,,,1, +25528,Huntingdon Pk & Cathedral Rd,40.134951,-75.061896,,,1, +25529,Huntingdon Pk & Alden Rd,40.130881,-75.06194,,,1, +25530,Fox Chase Rd & Roseland Av,40.086288,-75.100301,,,1, +25532,Fox Chase Rd & Forrest Av - MBFS,40.088127,-75.103901,,,1, +25533,Fox Chase Rd & Roseland Av,40.086226,-75.100502,,,1, +25540,Cottman Av & Rockwell Av,40.06309,-75.0867,,,1, +25587,48th St & Chestnut St ,39.957429,-75.217279,,,1, +25590,Haverford Av & 46th St - FS,39.962607,-75.213461,,,1, +25592,Westminster Av & 47th St ,39.969189,-75.215697,,,1, +25593,48th St & Parrish St,39.967522,-75.216895,,,1, +25594,48th St & Brown St,39.966398,-75.216757,,,1, +25595,48th St & Aspen St,39.965282,-75.216618,,,1, +25596,48th St & Fairmount Av ,39.964175,-75.216492,,,1, +25597,48th St & Haverford Av,39.962693,-75.216295,,,1, +25602,Bethel Rd & Felton Av - FS,39.844369,-75.398068,,,1, +25603,Bethel Rd & Honan St,39.843718,-75.399259,,,1, +25604,Bethel Rd & Highland Av - MBNS,39.842916,-75.402596,,,1, +25605,Highland Av & 15th St,39.839997,-75.400251,,,1, +25606,Highland Av & Swartz St - FS,39.839158,-75.399119,,,1, +25609,Highland Av & 10th St,39.836944,-75.396444,,,1, +25611,9th St & Wilson St,39.837371,-75.392895,,,1, +25614,9th St & Townsend St,39.839245,-75.389911,,,1, +25615,9th St & Engle St,39.839806,-75.388838,,,1, +25616,Av of the States & 8th St,39.852154,-75.360812,,,1, +25619,Edgmont Av & 14th St,39.858223,-75.361478,,,1, +25621,15th St & Arbor Dr,39.858778,-75.364414,,,1, +25622,15th St & Shaw Terrace,39.858252,-75.365724,,,1, +25624,Upland Av & 22nd St,39.857782,-75.371479,,,1, +25638,Brookhaven Rd & Gray St,39.867054,-75.392891,,,1, +25640,Brookhaven Rd & Woodland Av - MBNS,39.869383,-75.391262,,,1, +25641,Brookhaven Rd & Mt Vernon Av,39.870328,-75.390106,,,1, +25642,Brookhaven Rd & Burk Av,39.871765,-75.388666,,,1, +25643,22nd St & Wetherill St,39.860539,-75.370321,,,1, +25644,22nd St & Crozer St,39.861851,-75.369648,,,1, +25648,Edgmont Av & 24th St,39.864538,-75.370978,,,1, +25650,Edgmont Av & Elkington Blvd,39.865181,-75.372606,,,1, +25652,Edgmont Av & Avon Rd,39.866208,-75.374916,,,1, +25654,Edgmont Av & Roland Rd,39.866932,-75.376555,,,1, +25657,Edgmont Av & Forrestview Rd,39.868156,-75.379456,,,1, +25659,Edgmont Av & Upland Rd,39.869139,-75.381815,,,1, +25663,Edgmont Av & Ridge Blvd,39.873166,-75.389161,,,1, +25664,Edgmont Av & Maple Av,39.873782,-75.390753,,,1, +25666,Edgmont Av & Cambridge Rd - MBFS,39.875854,-75.393807,,,1, +25667,Edgmont Av & Whiteley Rd - MBNS,39.876889,-75.395057,,,1, +25669,Middletown Rd & High Meadow Dr,39.881772,-75.399207,,,1, +25670,Middletown Rd & Little Ln,39.885307,-75.401377,,,1, +25671,Middletown Rd & Knowlton Rd - FS,39.887636,-75.402555,,,1, +25674,Middletown Rd & Wyncroft Dr - FS,39.8989,-75.408333,,,1, +25678,Middletown Rd & Elwyn Rd,39.905773,-75.415813,,,1, +25680,Middletown Rd & Old Baltimore Pk,39.914181,-75.423708,,,1, +25687,Middletown Rd & Williamson Sch Dr,39.909799,-75.419896,,,1, +25688,Middletown Rd & Glen Riddle Rd,39.904729,-75.41507,,,1, +25691,Middletown Rd & Wyncroft Dr,39.898543,-75.408215,,,1, +25692,Middletown Rd & Copes Ln,39.894375,-75.405172,,,1, +25693,Middletown Rd & Old Middletown Rd,39.888806,-75.403263,,,1, +25694,Middletown Rd & Knowlton Rd,39.887494,-75.402732,,,1, +25699,Edgmont Av & Cobourn Blvd - FS,39.875131,-75.393229,,,1, +25701,Edgmont Av & Maple Av,39.873747,-75.391095,,,1, +25702,Edgmont Av & Ridge Blvd,39.873139,-75.389574,,,1, +25704,Walnut St & 32nd St - FS,39.952356,-75.18798,,,1, +25706,Market St & Sellers Av,39.962723,-75.25253,,,1, +25707,Market St & Glencoe Rd,39.962598,-75.252732,,,1, +25708,Chestnut St & 63rd St - FS,39.961108,-75.246806,,,1, +25711,Market St & 63rd St - FS,39.962911,-75.247274,,,1, +25714,Brookhaven Rd & Mt Vernon Av,39.870623,-75.39,,,1, +25715,Brookhaven Rd & Woodland Av - MBFS,39.869659,-75.391251,,,1, +25717,Brookhaven Rd & Gray St,39.867554,-75.392879,,,1, +25718,Brookhaven Rd & Bridgewater Rd - MBFS,39.862905,-75.394462,,,1, +25719,Bridgewater Rd & Albert Rd,39.859807,-75.392518,,,1, +25720,Bridgewater Rd & Powell Rd - FS,39.858485,-75.389653,,,1,0 +25721,6th St & Patton Av,39.857244,-75.387059,,,1, +25723,6th St & Main St,39.855556,-75.382567,,,1, +25734,Edgmont Av & Garrison Rd,39.868487,-75.380706,,,1, +25735,Edgmont Av & Forrestview Rd,39.868094,-75.379751,,,1, +25737,Edgmont Av & Chelton Rd,39.867307,-75.377864,,,1, +25738,Edgmont Av & Roland Rd - FS,39.866861,-75.376791,,,1, +25740,Edgmont Av & Avon Rd,39.866155,-75.375223,,,1, +25742,Edgmont Av & Elkington Blvd,39.86519,-75.373054,,,1, +25743,Edgmont Av & 24th St,39.864493,-75.371309,,,1, +25744,Edgmont Av & 23rd St - MBFS,39.863921,-75.36941,,,1, +25748,22nd St & Wetherill St,39.860807,-75.370427,,,1, +25750,15th St & Upland Av,39.857343,-75.367375,,,1, +25751,15th St & Shaw Terrace,39.857967,-75.36596,,,1, +25752,15th St & Arbor Dr,39.858537,-75.364568,,,1, +25753,15th Av & Edgmont Av,39.859438,-75.362408,,,1, +25754,Edgmont Av & 14th St,39.858384,-75.361784,,,1, +25756,Bethel Rd & Highland Av - FS,39.842916,-75.402242,,,1, +25758,Bethel Rd & Felton St - FS,39.844334,-75.397856,,,1, +25761,City Av & 59th St,39.992112,-75.245782,,,1, +25771,Belmont Av & Belmont Mansion Dr,39.992897,-75.217552,,,1, +25772,Belmont Av & Edgely Av,39.994263,-75.217914,,,1, +25776,Ford Rd & Belmont Av - MBNS,40.001994,-75.218849,,,1, +25781,Washington Av & 13th St ,39.937552,-75.164728,,,1, +25785,Wynnfield Av & 53rd St,39.991697,-75.231144,,,1, +25786,Wynnefiled Av & 51st St,39.99154,-75.228155,,,1, +25789,Belmont Av & Hayes Manor Dr - FS,39.997755,-75.218897,,,1, +25793,Delaware Av & Frankford Av,39.964936,-75.134024,,,1,0 +25794,Columbus Blvd & Spring Garden St,39.960338,-75.137326,,,1, +25795,Spring Garden St & 2nd St,39.960749,-75.141328,,,1, +25800,Ridge Av & 27th St ,39.984613,-75.177774,,,1, +25801,Ridge Av & Glenwood Av,39.985257,-75.178658,,,1, +25809,Parkside Av & W Memorial Hall Dr,39.976973,-75.211409,,,1, +25815,Windrim Av & Wayne Av - MBNS,40.021669,-75.160079,,,1, +25816,Fox St & Hunting Park Av - MBFS,40.008924,-75.173044,,,1, +25819,Roberts Av & Henry Av ,40.009724,-75.180286,,,1, +25820,Queen Ln & McMichael St ,40.017275,-75.184905,,,1, +25821,Fox St & Midvale Av - detour,40.019665,-75.184223,,,1, +25822,Abbottsford Av & Henry Av - FS,40.011655,-75.18191,,,1, +25823,Abbottsford Av & Henry Av - MBFS,40.012865,-75.180145,,,1, +25824,Abbottsford Av & Fox St,40.014236,-75.178178,,,1, +25825,Fox St & Roberts Av - MBFS,40.010981,-75.175105,,,1,0 +25826,Fox St & Bakers Centre - FS,40.009693,-75.173963,,,1, +25827,Fox St & Roberts Av ,40.012045,-75.176082,,,1, +25828,Roosevelt Blvd & Godfrey Av,40.027865,-75.091065,,,1, +25832,Lincoln Hwy & Highland Pk Rd - MBFS,40.171081,-74.892382,,,1, +25833,Lincoln Hwy & Woodbourne Rd ,40.176894,-74.884651,,,1, +25845,Wynnfield Av & Monument Rd,39.990834,-75.222155,,,1, +25867,Roosevelt Blvd & Hoffnagle St - MBNS,40.060296,-75.043439,,,1, +25877,Townsend Rd & McNulty Rd - FS 2,40.107657,-74.977051,,,1, +25878,Townsend Rd & 14065 - MBNS,40.108963,-74.975362,,,1, +25881,Old Lincoln Hwy & Interplex Dr - MBNS,40.126844,-74.976148,,,1, +25883,Old Lincoln Hwy & Street Rd,40.131965,-74.975642,,,1, +25904,Holme Av & Willits Rd,40.056352,-75.012936,,,1, +25905,Holme Av & Willits Rd - MBFS,40.056579,-75.011445,,,1, +25906,Academy Rd & Convent Av,40.06241,-75.009365,,,1, +25907,Holme Av & Winchester Av - MBFS,40.056694,-75.032933,,,1, +25908,Kewick Rd & Helmer Dr,40.080083,-74.98385,,,1, +25909,Mechanicsville Rd & Westhampton Dr,40.095116,-74.964753,,,1, +25910,Knights Rd & Monroe Av,40.099343,-74.956643,,,1, +25911,Chalfont Dr & Academy Rd - FS,40.083871,-74.989955,,,1, +25912,Chalfont Dr & Carey Rd,40.082304,-74.985895,,,1, +25913,Academy Rd & Red Lion Rd,40.081861,-74.994427,,,1, +25914,Belmont Av & Mantua Av,39.972467,-75.211955,,,1, +25915,Grays Ferry Av & 27th St ,39.939768,-75.188334,,,1, +25916,Locust St & 8th St ,39.946919,-75.154633,,,1, +25918,Delaware Av & Frankford Av,39.964357,-75.134286,,,1, +25919,Paschall Av & Hanson St ,39.940086,-75.210967,,,1, +25920,Wharton St & 30th St ,39.93744,-75.193713,,,1, +25921,30th St & Grays Ferry Av ,39.938983,-75.193212,,,1, +25922,Washington Av & 25th St ,39.940056,-75.185038,,,1, +25924,Roosevelt Blvd & Plaza Dr - 2 MBFS,40.102681,-75.003993,,,1, +25925,Byberry Rd & Townsend Rd - MBNS,40.106682,-74.986513,,,1, +25926,Townsend Rd & 14300 - 1,40.110928,-74.972891,,,1, +25927,Townsend Rd & 14300 - 2,40.111708,-74.971877,,,1, +25928,Evans St & Byberry Rd - MBNS,40.111118,-75.002132,,,1, +25929,Byberry Rd & Evans St - FS,40.110659,-75.003543,,,1, +25930,Byberry Rd & Evans St - MBFS,40.109282,-75.002179,,,1, +25931,Byberry Rd & Roosevelt Blvd - MBNS,40.108142,-75.000895,,,1, +25932,Somerton Rd & Carter Rd,40.130233,-74.982981,,,1, +25933,Rockhill Rd & US1 Exit Ramp,40.138331,-74.959109,,,1, +25945,Maple Av & Cherry St - MBFS,40.177234,-74.914524,,,1, +25946,Old Lincoln Hwy & Woodbourne Rd,40.177807,-74.885307,,,1, +25948,Maple Av & Cherry St - MBNS,40.17743,-74.914298,,,1, +25949,Old Lincoln Hwy & Hulmeville Av,40.157828,-74.916476,,,1, +25950,Township Line Rd & Holme Av ,40.074126,-75.105065,,,1, +25951,Street Rd & Reading Av,40.135224,-74.980831,,,1, +25952,Old Lincoln Hwy & Somerton Rd - MBFS,40.127202,-74.976383,,,1, +25953,Townsend Rd & FedEx 3,40.112118,-74.97159,,,1, +25954,Townsend Rd & FedEx - 2,40.11114,-74.972827,,,1, +25955,Townsend Rd & FedEx - 1,40.109266,-74.975206,,,1, +25956,Roosevelt Blvd & Hornig Rd - MBFS,40.111842,-74.991901,,,1, +25957,Roosevelt Blvd & Bennett Rd - MBFS,40.10312,-75.004546,,,1, +25958,Roosevelt Blvd & Haldeman Av,40.100438,-75.008455,,,1, +25960,Roosevelt Blvd & Strahle St - MBNS,40.06381,-75.042568,,,1, +25962,Township Line Rd & Susan Dr ,40.072799,-75.1028,,,1, +25965,Greenwood Av & Washington Ln,40.094335,-75.123657,,,1, +25966,Washington Ln & York Rd,40.093045,-75.125165,,,1, +25969,Glenside Av & Hewett Rd ,40.095181,-75.141556,,,1, +25971,Easton Rd & HWY 309 - MBNS,40.090142,-75.1635,,,1, +25972,Cedarbrook Plaza Stop - 2 ,40.08051,-75.167357,,,1, +25973,Cedarbrook Plaza Stop 4,40.083158,-75.165727,,,1, +25974,Cedarbrook Plaza Stop 5,40.083851,-75.168552,,,1, +25975,Cheltenham Av & Waverly Rd ,40.085924,-75.178459,,,1, +25976,Cheltenham Av & Hillcrest Rd ,40.086479,-75.179403,,,1, +25977,Willow Grove Av & Southampton Av,40.08445,-75.186888,,,1, +25979,Belmont Av & Monument Rd - 2 MBNS,39.996592,-75.21872,,,1, +25980,Wynnfield Av & 51st St,39.991656,-75.227954,,,1, +25981,Wynnfield Av & 53rd St,39.991812,-75.230942,,,1, +25982,Jefferson St & 53rd St,39.980438,-75.228269,,,1, +25983,41st St & Viola St,39.974591,-75.206491,,,1, +25984,Parkside Av & E Memorial Hall Dr,39.976659,-75.210217,,,1, +25985,Parkside Av & W Memorial Hall Dr,39.977009,-75.211161,,,1, +25988,Cranston Rd & Lankenau Av - FS,40.000577,-75.209884,,,1, +25989,40th St & Poplar St,39.972596,-75.203957,,,1, +25991,Conshohocken Av & W Cntry Club - 2 MBNS,40.002892,-75.206792,,,1, +25992,Cedar Rd & Fox Chase Rd - FS,40.085792,-75.098316,,,1, +25993,Torresdale Av & Sheffield Av,40.033333,-75.029113,,,1, +25994,Rhawn St & Crispin St,40.044342,-75.030435,,,1, +25995,Rhawn St & Algon Av,40.066156,-75.062947,,,1, +25996,Rhawn St & Dorcas St - MBFS,40.067026,-75.064409,,,1, +25997,70th Av & 12th St,40.059386,-75.135976,,,1, +25999,Cheltenham Av & Pleasant St ,40.087519,-75.181482,,,1, +26000,Cheltenham Av & Waverly Rd ,40.085907,-75.178719,,,1, +26001,Conshohocken Av & Cranston Rd - MBFS,40.001965,-75.212468,,,1, +26002,Belmont Av & Conshohocken Av - FS,39.999568,-75.219541,,,1, +26004,Greenwood Av & Nice Av ,40.094677,-75.124614,,,1, +26005,Greenwood Av & Washington Ln - MBFS,40.093502,-75.122442,,,1, +26006,Township Line Rd & High School Rd,40.079694,-75.11506,,,1, +26007,Township Line Rd & Holme Av ,40.074118,-75.105325,,,1, +26008,Township Line Rd & Susan Dr - FS,40.072639,-75.102812,,,1, +26009,Edgmont Av & 15th St,39.859366,-75.362019,,,1, +26011,Edgmont Av & 17th St,39.860902,-75.362997,,,1, +26013,Edgmont Av & 20th St,39.863027,-75.365719,,,1, +26014,Edgmont Av & 21st St,39.863581,-75.367075,,,1, +26015,Township Line Rd & Laurel Av ,40.068919,-75.09675,,,1, +26016,22nd St & Madison St,39.864687,-75.366555,,,1,0 +26017,22nd St & Upland St,39.865365,-75.365092,,,1, +26018,22nd St & Potter St,39.866016,-75.363688,,,1, +26019,22nd St & Walnut St - FS,39.866666,-75.362284,,,1, +26020,Chestnut St & 24th St,39.869389,-75.362989,,,1, +26021,Chestnut St & 24th St - MBFS,39.871264,-75.364627,,,1, +26022,Chestnut Pkwy & Harvey Rd,39.873139,-75.367362,,,1, +26023,Chestnut Pkwy & Blakeley Rd,39.874069,-75.369638,,,1, +26024,Chestnut Pkwy & Ryanard Rd,39.874739,-75.371442,,,1, +26025,Chestnut Pkwy & Media Pkwy,39.875418,-75.373399,,,1, +26028,Waterville Rd & Brookhaven Rd,39.876484,-75.384134,,,1, +26029,Brookhaven Rd & Putnam Blvd - FS,39.877716,-75.383566,,,1, +26031,Brookhaven Rd & Moore Rd,39.883614,-75.381463,,,1, +26033,Brookhaven Rd & Garnet Ln,39.886442,-75.379939,,,1, +26034,Brookhaven Rd & Todmorden Dr - FS,39.887835,-75.379725,,,1, +26038,Brookhaven Rd & Engle Dr,39.895018,-75.376782,,,1, +26040,Brookhaven Rd & Providence Rd,39.898996,-75.373015,,,1, +26041,Township Line Rd & Perry St - MBFS,40.07133,-75.100595,,,1, +26042,Cottman Av & Grove Av ,40.066937,-75.093341,,,1, +26043,5th St & Ruscomb St ,40.027345,-75.132573,,,1, +26044,Rising Sun Av & Randolph St ,40.009382,-75.137422,,,1, +26045,6th St & Sedgley Av ,40.003925,-75.139737,,,1, +26046,6th St & Clearfield St ,39.998492,-75.140928,,,1, +26047,6th St & Somerset St ,39.994014,-75.141903,,,1, +26048,6th St & Cumberland St ,39.989349,-75.142926,,,1, +26050,8th St & Cecil B Moore Av - FS,39.977223,-75.148598,,,1, +26051,8th St & Thompson St ,39.972139,-75.149705,,,1, +26052,8th St & Fairmount Av,39.96461,-75.15134,,,1, +26053,8th St & Bainbridge St ,39.941638,-75.155727,,,1, +26056,7th St & Willow St - MBFS,39.959582,-75.150084,,,1, +26057,7th St & Brown St ,39.964872,-75.149107,,,1, +26058,5th St & Allegheny Av ,39.999665,-75.138466,,,1, +26059,5th St & Rising Sun Av ,40.010048,-75.136178,,,1, +26064,5th St & Grange St - FS,40.039682,-75.129719,,,1, +26065,7th St & Poplar St - FS,39.967424,-75.148636,,,1, +26066,Fairmount Av & 45th St,39.964381,-75.211979,,,1, +26068,Providence Rd & Possum Hollow Rd,39.903486,-75.374746,,,1, +26069,Wallingford Av & Providence Rd - FS,39.90487,-75.375642,,,1, +26071,Wallingford Av & Highland Av - FS,39.907513,-75.379971,,,1, +26072,Wallingford Av & Dennis La - FS,39.908148,-75.381505,,,1, +26076,Wallingford Av & Manchester Av,39.910068,-75.38659,,,1, +26078,Manchester Av & Emerald St,39.912593,-75.385078,,,1, +26082,City Line Av & Trent Rd,39.978796,-75.272302,,,1, +26083,Jackson St & Jasper St,39.918289,-75.389253,,,1, +26085,Jackson St & 3rd St,39.92052,-75.388732,,,1, +26087,Jackson St & 5th St,39.922447,-75.388295,,,1, +26089,Monroe St & 6th St - FS,39.923393,-75.386169,,,1, +26090,Providence Rd & Jackson St - FS,39.92673,-75.385766,,,1, +26091,Providence Rd & Ridge Rd,39.928471,-75.386615,,,1, +26093,Providence Rd & Maple Av - FS,39.931122,-75.387935,,,1, +26095,Providence Rd & School Ln - FS,39.93322,-75.389504,,,1, +26097,Marshall Rd & Long Ln - FS,39.952635,-75.263455,,,1, +26099,Providence Rd & Rose Tree Park Dr,39.940272,-75.395038,,,1, +26100,Marshall Rd & Harrison Av - MBFS,39.95487,-75.253247,,,1, +26102,Marshall Rd & Powell Ln,39.955412,-75.251828,,,1, +26103,Palmers Mill Rd & Mansion Dr,39.945163,-75.395933,,,1, +26104,Palmers Mill Rd & Lakeview Dr,39.949643,-75.394419,,,1, +26106,Newtown St Rd & Springton Mews Cir,39.958612,-75.393588,,,1, +26107,Newtown Street Rd & Cedar Grove Rd,39.960487,-75.394189,,,1, +26108,61st St & Spruce St,39.956695,-75.24383,,,1, +26111,Spruce St & 46th St,39.95306,-75.214257,,,1, +26113,Newtown Street Rd & Camelot Ln - MBFS,39.974214,-75.397691,,,1, +26114,Newtown Street Rd & Cornerstone Dr - FS,39.978195,-75.397547,,,1, +26116,Newtown Street Rd & Alpha Dr,39.983773,-75.398407,,,1, +26117,Newtown Street Rd & West Chester Pk,39.986674,-75.40045,,,1, +26118,61st St & Spruce St - FS,39.956695,-75.243983,,,1, +26119,Academy Rd & Red Lion Rd - 2,40.080237,-74.997241,,,1, +26120,Academy Rd & Cromwell Rd,40.081018,-74.995887,,,1, +26121,Marshall Rd & Powell Ln,39.955564,-75.251698,,,1, +26122,Marshall Rd & Powell Ln - MBFS,39.954968,-75.253282,,,1, +26123,Marshall Rd & Sherbrook Blvd,39.951487,-75.26628,,,1, +26124,Sherbrook Blvd & Margate - FS,39.951872,-75.26746,,,1, +26125,Wycombe Loop,39.951739,-75.267697,,,1, +26128,Bustleton Av & Winchester Av,40.077336,-75.04382,,,1, +26129,Old Bustleton Av & Gregg St - MBFS,40.079326,-75.040828,,,1, +26130,Old Bustleton Av & Ambassador St - MBFS,40.081026,-75.039115,,,1, +26131,Bustleton Av & Lott St,40.089469,-75.033508,,,1, +26132,Bustleton Av & President St,40.093399,-75.031262,,,1, +26134,Holme Av & Galens Rd - MBNS,40.05696,-75.032541,,,1, +26136,Bustleton Av & Norwalk Rd - FS,40.098278,-75.030324,,,1, +26137,Bustleton Av & Norwalk Rd - MBFS,40.09958,-75.030044,,,1, +26138,Bustleton Av & Red Lion Rd,40.102254,-75.028763,,,1, +26139,Bustleton Av & Northeast Av - MBFS,40.10114,-75.02929,,,1, +26140,Tomlinson Rd & Audubon Av,40.115991,-75.029041,,,1, +26141,Rennard St & Audubon Av,40.120959,-75.02796,,,1, +26143,Bustleton Av & Southampton Rd,40.132935,-75.010845,,,1, +26144,Bustleton Av & Southampton Rd - MBFS,40.133602,-75.009989,,,1, +26145,County Line Rd & Barcalow Av - FS,40.135299,-75.010535,,,1, +26146,16th St & Carpenter St ,39.939374,-75.169704,,,1, +26147,Bustleton Av & County Line Rd - MBFS,40.136184,-75.008032,,,1, +26148,16th St & Wallace St ,39.965467,-75.164022,,,1, +26149,16th St & North St ,39.966029,-75.163902,,,1, +26150,16th St & Brown St ,39.96809,-75.163434,,,1, +26151,Bridgetown Pk & Jay St - FS,40.154605,-74.999693,,,1, +26152,Bridgetown Pk & Lillian St - FS,40.157245,-74.993898,,,1, +26153,Overhill Av & Barcalow St,40.132507,-75.013641,,,1, +26154,Bustleton Av & Verree Rd - MBFS,40.106925,-75.027057,,,1, +26155,Bustleton Av & Gorman St,40.105169,-75.027788,,,1, +26157,Red Lion Rd & Bustleton Av - FS,40.102271,-75.028586,,,1, +26158,Frankford Av & Evarts St - MBFS,40.049919,-75.010916,,,1, +26159,Bustleton Av & Northeast Av - MBFS,40.09942,-75.030282,,,1, +26160,Bustleton Av & Norwalk Rd,40.098153,-75.030514,,,1, +26161,Frankford Av & Benson St - FS,40.045654,-75.01651,,,1, +26162,Bustleton Av & Norwalk Rd - MBFS,40.096833,-75.030616,,,1, +26163,Frankford Av & Cottman Av - FS,40.036708,-75.041059,,,1, +26164,Bustleton Av & Grant Av,40.085617,-75.037387,,,1, +26165,Bustleton Av & Bergen St - FS,40.069405,-75.050901,,,1, +26181,Newtown Street Rd & Mary Jane Ln,39.983916,-75.398762,,,1, +26182,Newtown Street Rd & Dudie Dr,39.981265,-75.397959,,,1, +26183,Newtown Street Rd & Troop Farm Rd,39.977829,-75.397867,,,1, +26184,Newtown Street Rd & Camelot Ln - MBNS,39.974134,-75.397904,,,1, +26191,Palmers Mill Rd & Lakeside Dr,39.949884,-75.394573,,,1, +26192,Palmers Mill Rd & Mansion Dr,39.945404,-75.396063,,,1, +26195,Providence Rd & Rose Tree Rd,39.937523,-75.39315,,,1, +26198,Providence Rd & Woodcliffe Av,39.933149,-75.389705,,,1, +26199,Providence Rd & Maple Av,39.931051,-75.388124,,,1, +26203,Monroe St & Providence Rd - MBFS,39.925303,-75.385956,,,1, +26204,Monroe St & 6th St - FS,39.923214,-75.386429,,,1, +26206,5th St & Jackson St,39.922617,-75.388247,,,1, +26207,Jackson St & 4th St,39.921725,-75.388673,,,1, +26208,Jackson St & 3rd St,39.920743,-75.388898,,,1, +26210,Jackson St & Front St,39.918949,-75.389324,,,1, +26211,Jackson St & Baltimore Pk,39.917004,-75.389773,,,1, +26215,Wallingford Av & Manchester Av - FS,39.90989,-75.386614,,,1, +26219,Wallingford Av & Treetop La - FS,39.90813,-75.3818,,,1, +26220,Wallingford Av & Highland Av - FS,39.907228,-75.379641,,,1, +26222,Wallingford Av & Providence Rd,39.904709,-75.375678,,,1, +26223,Providence Rd & Possum Hollow Rd,39.903683,-75.375077,,,1, +26225,Providence Rd & Brookhaven Rd,39.899193,-75.373027,,,1, +26227,Brookhaven Rd & Rabbit Run Rd - FS,39.895196,-75.376912,,,1, +26228,Erie Av & 2nd St ,40.006691,-75.131795,,,1, +26229,Brookhaven Rd & Todmorden Dr,39.891137,-75.379405,,,1, +26231,Brookhaven Rd & Garnet Ln,39.886657,-75.380116,,,1, +26233,Torresdale Av & Howell St ,40.016811,-75.060717,,,1, +26234,Brookhaven Rd & Moore Rd,39.883944,-75.381521,,,1, +26237,Waterville Rd & Brookhaven Rd - FS,39.876127,-75.383992,,,1, +26240,Chestnut Pkwy & Media Pkwy,39.875347,-75.373718,,,1, +26241,Chestnut Pkwy & Ryanard Rd,39.874676,-75.371831,,,1, +26242,Chestnut Pkwy & Blakeley Rd,39.87406,-75.37005,,,1, +26243,Chestnut Pkwy & Ridley Dr,39.873086,-75.367704,,,1, +26244,Chestnut St & Belvedere Retirement,39.87071,-75.364415,,,1, +26245,Chestnut St & 24th St,39.869451,-75.363296,,,1, +26246,Chestnut St & Providence Av,39.868746,-75.3626,,,1, +26247,Erie Av & F St ,40.006259,-75.115618,,,1, +26250,22nd St & Upland St,39.865615,-75.364986,,,1, +26251,22nd St & Madison St,39.864946,-75.366414,,,1,0 +26253,Edgmont Av & 20th St - FS,39.862983,-75.366073,,,1, +26255,Erie Av & D St - MBFS,40.007031,-75.121252,,,1, +26257,Edgmont Av & 16th St - MBNS,39.860616,-75.363032,,,1, +26259,Erie Av & Roberto Clemente Dr - NS,40.00716,-75.130021,,,1, +26260,Berks St & Germantown Av ,39.979978,-75.143307,,,1, +26261,Berks St & 5th St ,39.979808,-75.142976,,,1, +26262,Kensington Av & Sedgley Av ,40.002761,-75.101902,,,1, +26263,Cecil B Moore Av & 33rd St ,39.98267,-75.188248,,,1, +26266,Penn St & 5th St,39.846641,-75.363482,,,1, +26269,7th St & Barclay St,39.848454,-75.366534,,,1, +26270,7th St & Fulton St,39.847678,-75.368139,,,1, +26271,7th St & Parker St,39.847232,-75.369283,,,1, +26274,7th St & Lincoln St,39.846101,-75.372692,,,1, +26276,7th St & Lloyd St,39.845093,-75.375098,,,1, +26279,7th St & Norris St,39.843212,-75.378648,,,1, +26280,7th St & Tilghman St,39.842454,-75.380087,,,1, +26281,7th St & Central St,39.841946,-75.381137,,,1, +26282,7th St & Edwards St,39.841339,-75.382199,,,1, +26283,7th St & Flower St,39.840875,-75.383083,,,1, +26286,Flower St & 4th St,39.838251,-75.381281,,,1, +26287,Flower St & 3rd St,39.837394,-75.380539,,,1, +26289,3rd St & Yarnall St,39.836404,-75.382473,,,1, +26291,3rd St & Engle St,39.835236,-75.38462,,,1, +26292,3rd St & Townsend St,39.834718,-75.385693,,,1, +26294,3rd St & Ward St,39.833621,-75.387804,,,1, +26296,3rd St & Hayes St,39.832453,-75.389915,,,1, +26311,7th St & Lamokin St,39.844032,-75.377103,,,1, +26313,3rd St & Harwick St,39.830794,-75.393111,,,1, +26314,3rd St & Booth St,39.830232,-75.394195,,,1, +26315,3rd St & Trainer St,39.829635,-75.39541,,,1, +26318,3rd St & Price St,39.827538,-75.39949,,,1, +26320,Post Rd & Main St,39.826157,-75.40575,,,1, +26322,Post Rd & Smith St,39.823328,-75.408981,,,1, +26324,10th St & Plaza Dr,39.82158,-75.412459,,,1, +26325,10th St & Yates Av - FS,39.821107,-75.413897,,,1, +26327,10th St & Market St,39.820072,-75.417127,,,1,0 +26347,Market St & Laughead Av,39.828533,-75.423468,,,1, +26348,Market St & Johnson Av,39.830362,-75.423786,,,1, +26350,Market St & Washington Av,39.837921,-75.424658,,,1, +26352,Meetinghouse Rd & Market St,39.843169,-75.4256,,,1, +26354,Meetinghouse Rd & Rodgers Av,39.840161,-75.430164,,,1, +26356,Meetinghouse Rd & Friends Way,39.835503,-75.432015,,,1, +26359,Meetinghouse Rd & Chichester Av,39.83096,-75.439548,,,1, +26360,Chichester Av & Galbraith Av,39.832254,-75.440845,,,1, +26361,Chichester Av & Kingsman Rd - FS,39.834663,-75.441753,,,1, +26363,Chichester Av & Mill Rd,39.839652,-75.442709,,,1, +26366,Chichester Av & Flora Ln,39.844542,-75.444478,,,1, +26367,Chichester Av & Rolling Glen Dr,39.84572,-75.446259,,,1, +26368,Chichester Av & Woodstream Rd,39.846478,-75.447521,,,1, +26372,Chelsea Pkwy & Chichester Av,39.851761,-75.452982,,,1, +26381,Oak Ln & New 2nd St,40.056183,-75.121608,,,1, +26382,Oak Ln & Coventry Rd,40.060375,-75.113146,,,1, +26383,Cottman Av & Leon St,40.037704,-75.042686,,,1, +26385,Conchester Hwy & Clayton Park,39.863308,-75.486034,,,1, +26386,State Rd & Bleigh Av - MBFS,40.028878,-75.025911,,,1, +26387,Conchester Hwy & Mattison Rd,39.866955,-75.492559,,,1, +26390,Torresdale Av & Blakiston St,40.041359,-75.013343,,,1, +26392,Cheyney Rd & Baltimore Pk - FS,39.891267,-75.50589,,,1, +26395,Cheyney Rd & Springlawn Rd,39.905238,-75.512537,,,1, +26409,Cheyney Rd & Springlawn Rd,39.905479,-75.512938,,,1, +26411,Cheyney Rd & Gov Markham Dr,39.896478,-75.507252,,,1, +26412,Cheyney Rd & Baltimore Pk,39.891222,-75.506102,,,1, +26417,Conchester Hwy & Featherbed Ln,39.866776,-75.492606,,,1, +26418,Conchester Hwy & Clayton Park - FS,39.86304,-75.485939,,,1, +26420,Creek Pkwy & Conchester Hwy,39.852812,-75.460718,,,1, +26424,Chichester Av & Sommers Ln,39.853465,-75.45474,,,1, +26425,Bethel Rd & Chelsea Pkwy - FS,39.849495,-75.448724,,,1, +26426,Chichester Av & Larkin Rd - FS,39.848932,-75.451189,,,1, +26427,Chichester Av & Woodstream Rd,39.846505,-75.44791,,,1, +26428,Chichester Av & Rolling Glen Dr,39.845756,-75.44666,,,1, +26429,Chichester Av & Apple St,39.844417,-75.444608,,,1, +26432,Chichester Av & Mill Rd,39.840491,-75.443204,,,1, +26434,Chichester Av & Kingsman Rd,39.834449,-75.44193,,,1, +26435,Chichester Av & McKay Av,39.832004,-75.440868,,,1, +26436,Meetinghouse Rd & Chichester Av,39.830844,-75.439312,,,1, +26437,Meetinghouse Rd & Johnson Rd,39.832361,-75.435881,,,1, +26441,Meetinghouse Rd & Rodgers Av,39.839911,-75.430058,,,1, +26446,Market St & Chestnut St,39.835244,-75.424599,,,1, +26448,Market St & Laughead Av,39.828747,-75.423774,,,1, +26450,10th St & Yates Av,39.82091,-75.413932,,,1, +26451,10th St & Plaza Dr,39.821419,-75.412376,,,1, +26453,Post Rd & Pennell St,39.823908,-75.408097,,,1, +26455,Post Rd & Main St,39.82588,-75.405844,,,1, +26458,3rd St & Wilcox St,39.827833,-75.398452,,,1, +26459,3rd St & Irving St,39.828404,-75.397415,,,1, +26461,3rd St & Trainer St,39.829528,-75.395269,,,1, +26462,3rd St & Booth St,39.830054,-75.394196,,,1, +26469,3rd St & Townsend St,39.834504,-75.385764,,,1, +26470,3rd St & Engle St,39.835048,-75.384632,,,1, +26472,3rd St & Yarnall St,39.83619,-75.382544,,,1, +26475,Flower St & 4th St,39.838144,-75.380963,,,1, +26477,Flower St & 7th St,39.840661,-75.382977,,,1, +26478,7th St & Edwards St,39.841134,-75.382246,,,1, +26479,7th St & Central St,39.841705,-75.381232,,,1, +26480,7th St & Tilghman St,39.842195,-75.380194,,,1, +26481,7th St & Norris St,39.842944,-75.378755,,,1, +26482,7th St & Lamokin St,39.843773,-75.377209,,,1, +26484,7th St & Lloyd St,39.844817,-75.375228,,,1, +26486,7th St & Lincoln St,39.845851,-75.372869,,,1, +26488,7th St & Kerlin St,39.846653,-75.370592,,,1, +26490,7th St & Fulton St,39.847428,-75.368269,,,1, +26491,7th St & Barclay St,39.848186,-75.366664,,,1, +26497,6th & Edgemont Av,39.849254,-75.360991,,,1, +26501,Torresdale Av & Megargee St,40.045125,-75.007929,,,1, +26502,State Rd & Rhawn St - MBFS,40.030023,-75.024131,,,1, +26503,State Rd & Bleigh Av - MBNS,40.028639,-75.026633,,,1, +26504,Cottman Av & Leon St,40.037739,-75.042402,,,1, +26505,Ashbourne Rd & Jenkintown Rd,40.062146,-75.10422,,,1, +26506,Oak Ln Rd & Ashbourne Rd - FS,40.061744,-75.111106,,,1, +26507,Oak Ln Rd & Brookfield Rd,40.061042,-75.112256,,,1, +26508,Oak Ln Rd & Barclay Cir,40.059576,-75.114959,,,1, +26509,Frankford Av & Buckius St ,40.002957,-75.095142,,,1, +26511,Germantown Pk & Edmonds Rd,40.09197,-75.260516,,,1, +26512,Germantown Pk & Whitefield Dr - MBNS,40.085765,-75.240608,,,1, +26513,Germantown Pk & Whitefield Dr,40.086093,-75.23888,,,1, +26514,Germantown Av & Norman Ln,40.079252,-75.21409,,,1, +26515,Bethlehem Pk & Gordon Ln,40.090918,-75.214848,,,1, +26516,Bethlehem Pk & Bells Mill Rd ,40.087301,-75.213309,,,1, +26517,Bethlehem Pk & Stenton Av ,40.086067,-75.212082,,,1, +26519,Stenton Av & Willow Grove Av - MBFS,40.07534,-75.193188,,,1, +26520,Stenton Av & Mermaid Ln - MBFS,40.073594,-75.190142,,,1, +26521,Stenton Av & Johnson St - FS,40.060285,-75.166876,,,1, +26524,Stenton Av & Mermaid Ln - MBFS,40.075232,-75.192502,,,1, +26525,Paper Mill Rd & Stenton Av - FS,40.086441,-75.21149,,,1, +26526,Germantown Av & Chestnut Hill Av,40.077969,-75.210522,,,1, +26527,Germantown Pk & Whitfield Dr ,40.0862,-75.238678,,,1, +26528,Germantown Pk & Church Rd - MBNS,40.084233,-75.248952,,,1, +26529,Germantown Pk & Church Rd - FS,40.084601,-75.250135,,,1, +26531,Stanbridge St & Oak St,40.123709,-75.351541,,,1, +26532,Stanbridge St & Elm St,40.125181,-75.350083,,,1, +26533,Stanbridge St & James St,40.127313,-75.347986,,,1, +26534,Stanbridge St & Sterigere St,40.128294,-75.347038,,,1, +26536,Sterigere St & Forrest Av,40.132413,-75.353982,,,1, +26537,Sterigere St & Buttonwood St,40.129867,-75.349593,,,1, +26538,Sterigere St & Stanbridge St,40.128464,-75.347168,,,1,0 +26539,Beech Dr & Spruce St - FS,40.13602,-75.354606,,,1, +26550,Swede Rd & Hancock Av,40.135789,-75.3312,,,1, +26552,Swede Rd & Overhill Rd,40.139892,-75.327192,,,1, +26554,Swede Rd & Mill Rd,40.142736,-75.323032,,,1, +26555,Swede Rd & Germantown Pk,40.144883,-75.318825,,,1, +26556,Swede Rd & Germantown Pk - MBFS,40.146337,-75.317367,,,1, +26559,Germantown Pk & DeKalb Pk - FS,40.141325,-75.3122,,,1, +26560,Germantown Pk & New Hope St - MBNS,40.138902,-75.308641,,,1, +26561,Germantown Pk & Hilltop Rd,40.135917,-75.304111,,,1, +26563,Germantown Pk & Mill Creek Rd,40.132183,-75.301229,,,1, +26564,Germantown Pk & Virginia Rd,40.128665,-75.299555,,,1, +26565,Germantown Pk & Pleasant Rd,40.127261,-75.297367,,,1, +26567,Germantown Pk & Walton Rd,40.121896,-75.288807,,,1, +26568,Germantown Pk & Plymouth Hill Condo,40.120047,-75.287378,,,1, +26569,Germantown Pk & Jolly Rd,40.124293,-75.292626,,,1, +26571,Laurel Dr & Locust St,40.133827,-75.34503,,,1, +26572,Locust St & Lower Farm Rd,40.135337,-75.347041,,,1, +26573,Lower Farm Rd & Circle Dr,40.134989,-75.347764,,,1, +26574,Circle Dr & Market St,40.133866,-75.350239,,,1, +26575,Market St & Oak Dr,40.134348,-75.350949,,,1, +26576,Beech Dr & Maple St,40.134575,-75.356371,,,1, +26578,Hickory Rd & Germantown Pk - MBNS,40.11808,-75.284045,,,5, +26580,Germantown Pk & Plymouth Hill Condo,40.120127,-75.287177,,,1, +26581,Germantown Pk & Jolly Rd - FS,40.124462,-75.292554,,,1, +26584,Germantown Pk & Virginia Rd - FS,40.128789,-75.299412,,,1, +26585,Germantown Pk & Valley Creek Rd,40.131951,-75.300969,,,1, +26586,Germantown Pk & Mulberry Ln - FS,40.134442,-75.302291,,,1, +26588,Germantown Pk & Arch Rd,40.136533,-75.304821,,,1, +26589,Germantown Pk & Hannah Av- MBNS,40.139984,-75.30987,,,1, +26590,Germantown Pk & DeKalb Pk,40.141807,-75.312377,,,1, +26591,Swede Rd & Swede Square Shop Ctr,40.146498,-75.317568,,,1, +26593,Swede Rd & Mill Rd,40.142977,-75.322925,,,1, +26595,Swede Rd & Overhill Rd,40.140079,-75.327275,,,1, +26598,Swede Rd & Hancock Av - FS,40.135896,-75.331365,,,1, +26599,Markley St & Logan St,40.133024,-75.333548,,,1, +26600,Markley St & Roberts St - FS,40.131472,-75.334355,,,1, +26601,Markley St & Coolidge Blvd,40.129661,-75.336097,,,1, +26602,Markley St & Freedley St,40.128635,-75.337117,,,1, +26604,Markley St & Wood St,40.12587,-75.339819,,,1, +26605,Markley St & James St,40.123988,-75.34168,,,1, +26607,Sterigere St & Stanbridge St,40.128482,-75.346848,,,1, +26608,Stanbridge St & James St,40.127616,-75.34795,,,1, +26609,Stanbridge St & Elm St,40.12544,-75.350095,,,1, +26610,Stanbridge St & Oak St,40.123995,-75.351529,,,1, +26612,Main St & Astor St,40.117353,-75.350116,,,1, +26613,Main St & George St,40.118381,-75.351866,,,1, +26614,Main St & Haws Av,40.119025,-75.353677,,,1, +26615,Main St & Stanbridge St,40.119624,-75.355357,,,1, +26616,Main St & Noble St,40.120285,-75.356706,,,1, +26618,Main St & Hamilton St,40.121643,-75.359072,,,1, +26619,Main St & Selma St,40.122367,-75.360337,,,1, +26625,Main St & School Ln - FS,40.136033,-75.38212,,,1, +26628,Ridge Pk & Clearfield Av - FS,40.144096,-75.392049,,,1, +26635,Eagleville Rd & Ridge Pk - MBFS,40.159381,-75.408657,,,1, +26652,Main St & 1st Av,40.184463,-75.449167,,,1, +26658,Ridge Pk & Wilson Blvd - FS,40.162533,-75.413536,,,1, +26659,Ridge Pk & Eagleville Rd,40.15922,-75.407745,,,1, +26660,Ridge Pk & Mt Kirk Av,40.15547,-75.40141,,,1, +26666,Main St & Trooper Rd - MBFS,40.141694,-75.389197,,,1, +26668,Main St & Galbraith Av - FS,40.137382,-75.383907,,,1, +26669,Main St & School Ln,40.135881,-75.382227,,,1, +26672,Main St & Rittenhouse Blvd,40.128433,-75.371151,,,1, +26675,Main St & Hartranft St - FS,40.122581,-75.361024,,,1, +26680,Main St & Haws Av,40.119025,-75.354209,,,1, +26685,Main St & Forrest Av,40.123492,-75.362242,,,1, +26686,Ridge Pk & Barry Av,40.149078,-75.396961,,,1, +26689,Main St & 3rd Av,40.185953,-75.451513,,,1, +26691,Main St & 5th Av,40.190317,-75.455602,,,1, +26692,Main St & 6th Av,40.191307,-75.457949,,,1, +26695,Main St & 1st Av,40.194563,-75.465747,,,1, +26696,Main St & Trappe Center,40.195339,-75.467548,,,1, +26698,Main St & Harvard Dr,40.198443,-75.475098,,,1, +26711,Ridge Pk & Sunset Rd,40.225085,-75.515075,,,1, +26712,Ridge Pk & Limerick Rd,40.230998,-75.521898,,,1, +26715,Ridge Pk & Village Way,40.234399,-75.532395,,,1, +26717,Ridge Pk & Kugler Rd,40.236949,-75.536904,,,1, +26724,High St & Shaners Trailer Park,40.244155,-75.578166,,,1, +26729,High St & Pleasant View Rd - FS,40.244961,-75.597613,,,1, +26731,High St & Heritage Dr,40.244384,-75.601679,,,1, +26732,High St & Sunnybrook Rd,40.244052,-75.609302,,,1, +26736,High St & Roland St,40.243631,-75.622273,,,1, +26748,High St & Penn St - FS,40.245569,-75.649052,,,1, +26754,Hanover St & Queen St,40.24487,-75.650698,,,1, +26775,High St & Sunnybrook Rd - FS,40.243891,-75.609302,,,1, +26778,High St & Pleasant View Rd - MBNS,40.244773,-75.597981,,,1, +26783,High St & Shaners Trailer Park,40.243986,-75.578035,,,1, +26786,Ridge Pk & Airport Rd - MBNS,40.242414,-75.553571,,,1, +26788,Ridge Pk & Limerick Center Rd,40.236922,-75.537236,,,1, +26790,Ridge Pk & Village Way,40.233704,-75.53103,,,1, +26793,Ridge Pk & Limerick Rd,40.230971,-75.522242,,,1, +26807,Main St & 5th Av - MBFS,40.198711,-75.4762,,,1, +26808,Main St & 3rd Av,40.196588,-75.471163,,,1, +26810,Main St & 1st Av,40.194572,-75.466221,,,1, +26813,Main St & 6th Av,40.191307,-75.458399,,,1, +26814,Main St & 5th Av,40.190344,-75.456112,,,1, +26816,Main St & 3rd Av,40.186007,-75.451857,,,1, +26818,DeKalb Pk & Colonial Dr - MBNS,40.089735,-75.378294,,,6, +26819,Swedesford Rd & Drummers Ln,40.08081,-75.410833,,,6, +26820,Mall Blvd & Goddard Blvd - FS,40.090375,-75.396266,,,6, +26823,Bear Hill Rd & Daylesford Blvd,40.057179,-75.472029,,,1, +26824,Bear Hill Rd & Central Av - FS,40.04503,-75.475498,,,1, +26825,King Rd & Lancaster Av - FS,40.041388,-75.496743,,,1, +26826,King Rd & Lloyd Av,40.041111,-75.498694,,,1, +26827,King Rd & Grubb Rd,40.040207,-75.501885,,,1, +26828,King Rd& Arlington Av,40.039135,-75.504852,,,1, +26829,King St & Ruthland Av,40.037686,-75.508835,,,1, +26831,King St & Bridge St,40.036872,-75.512629,,,1, +26833,King St & Kingsbury Condos,40.034994,-75.517438,,,1, +26834,King St & Karen Dr,40.034528,-75.519909,,,1, +26837,King St & Sugartown Rd,40.033549,-75.529188,,,1, +26839,King Rd & Gingerwood Rd,40.032313,-75.534246,,,1, +26840,King Rd & Summit Rd,40.0324,-75.537202,,,1, +26842,King Rd & Line Rd,40.028974,-75.545188,,,1, +26847,King Rd & Frazer Rd,40.028167,-75.55838,,,1, +26852,King Rd & Weston Way - FS,40.021063,-75.582102,,,1, +26853,King Rd & Phoenixville Pk,40.019837,-75.584913,,,1, +26857,Lincoln Hwy & Lockwood Ln,40.033765,-75.580782,,,1, +26859,Lincoln Hwy & Church Farm Ln,40.031856,-75.594586,,,1, +26860,Lincoln Hwy & Springdale Dr,40.031423,-75.597871,,,1, +26861,Lincoln Hwy & Belden Blvd,40.030324,-75.6056,,,1, +26862,Lincoln Hwy & Ship Rd - MBNS,40.030106,-75.607775,,,1, +26866,Exton Square Mall & Pottstown Pk,40.030502,-75.629717,,,1, +26867,Exton Square Mall - 1,40.031779,-75.629343,,,1, +26868,Exton Square Mall - 2,40.032801,-75.626544,,,1, +26870,Pottstown Pk & Bartlett Av,40.023475,-75.625809,,,1, +26878,Phoenixville Pk & Laurel Dr,40.006654,-75.592176,,,1, +26879,Phoenixville Pk & Knollwood Dr,40.005368,-75.592918,,,1, +26881,Phoenixville Pk & Karen La.,40.000923,-75.59364,,,1, +26882,Phoenixville Pk & E Greenhill Rd,39.998317,-75.593209,,,1, +26884,Phoenixville Pk & Camaro Run Dr,39.993059,-75.594166,,,1, +26885,Phoenixville Pk & Ashbridge Rd,39.990667,-75.594302,,,1, +26888,Phoenixville Pk & Goshen Rd,39.978727,-75.592739,,,1, +26889,Goshen Rd & Greystone Dr,39.976482,-75.596526,,,1, +26890,Goshen Rd & North Hills Rd,39.974792,-75.599192,,,1, +26892,Marshall St & Convent Dr,39.968897,-75.60258,,,1, +26893,Marshall St & Franklin St,39.966717,-75.604016,,,1, +26896,Marshall St & High St,39.964765,-75.608393,,,1, +26897,High St & Biddle St,39.963437,-75.607669,,,1, +26899,High St & Chestnut St,39.96152,-75.6062,,,1, +26900,High St & Nields St,39.954363,-75.598813,,,1, +26901,High St & Rosedale Av,39.951966,-75.59621,,,1, +26902,High St & Church Av,39.94814,-75.593815,,,1, +26903,High St & Spruce Av,39.944884,-75.592556,,,1, +26904,Old Eagle School Rd & Swedesford Rd,40.079534,-75.41262,,,1, +26905,Devon Park Dr &Old Eagle School Dr- MBFS,40.074312,-75.41384,,,1, +26907,Devon Park Dr & West Valley Rd - MBNS,40.071359,-75.420772,,,1, +26908,Devon Park Dr & West Valley Rd - 2,40.069779,-75.424475,,,1, +26909,West Valley Rd & USPS Facility,40.071921,-75.425882,,,1, +26910,Swedesford Rd & Westlakes Dr,40.061313,-75.466532,,,1, +26911,High St & Spruce Av,39.94443,-75.592154,,,1, +26912,High St & Rosedale Av,39.951886,-75.595867,,,1, +26914,High St & Washington St - FS,39.962501,-75.60671,,,1, +26915,High St & Biddle St,39.96333,-75.607338,,,1, +26916,High St & Marshall St,39.964587,-75.608286,,,1, +26917,Marshall St & Walnut St,39.965088,-75.607201,,,1, +26919,Marshall St & Franklin St,39.96644,-75.604098,,,1, +26920,Marshall St & Convent Ln,39.968915,-75.602308,,,1, +26923,Goshen Rd & Fern Hill Rd,39.978442,-75.592786,,,1, +26924,Phoenixville Pk & Saunders Ln,39.987185,-75.595263,,,1, +26926,Phoenixville Pk & Ashbridge Rd,39.99048,-75.594077,,,1, +26927,Phoenixville Pk & Camaro Run Dr,39.992863,-75.593894,,,1, +26929,Phoenixville Pk & E Greenhill Rd,39.997719,-75.593066,,,1, +26930,Phoenixville Pk & Karen Ln,40.000709,-75.59338,,,1, +26932,Phoenixville Pk & Gail Rd,40.005217,-75.592787,,,1, +26942,Pottstown Pk & Mountainview Dr,40.017671,-75.621928,,,1, +26943,Pottstown Pk & Commerce Dr,40.026356,-75.626904,,,1, +26944,Lincoln Hwy & Tabas Ln MBNS,40.028975,-75.618754,,,1, +26945,Lincoln Hwy & Ship Rd,40.029791,-75.609772,,,1, +26947,Lincoln Hwy & Springdale Dr,40.030794,-75.601062,,,1, +26948,Lincoln Hwy & Church Farm Ln,40.031767,-75.594184,,,1, +26950,Lincoln Hwy & Lockwood Ln - FS,40.033479,-75.581053,,,1, +26956,High St & Guinta Ln,39.948167,-75.593603,,,1, +26957,King Rd & Weston Way,40.02092,-75.582008,,,1, +26961,King Rd & Hershey Mill Rd,40.026764,-75.568922,,,1, +26962,King Rd & Frazer Rd,40.027979,-75.558841,,,1, +26963,King Rd & Cottonwood Dr,40.026772,-75.552053,,,1, +26966,King Rd & Line Rd,40.029726,-75.542979,,,1, +26969,King Rd & Summit Rd,40.032302,-75.536942,,,1, +26970,King Rd & Gingerwood Rd,40.032179,-75.534554,,,1, +26974,King St & Crest Av,40.033563,-75.522319,,,1, +26976,King St & Malvern Crossing Apts.,40.034861,-75.517202,,,1, +26978,King St & Bridge St,40.036666,-75.512759,,,1, +26980,King St & Ruthland Av,40.037427,-75.509012,,,1, +26981,King St & Arlington Av,40.038894,-75.505017,,,1, +26982,King Rd & Grubb Rd,40.039975,-75.502039,,,1, +26983,King Rd & Lloyd Av,40.040861,-75.498906,,,1, +26984,King Rd & Lancaster Av,40.041425,-75.495431,,,1, +26985,Bear Hill Rd & Central Av,40.04537,-75.475274,,,1, +26986,Bear Hill Rd & Daylesford Blvd,40.056438,-75.472336,,,1, +26988,Swedesford Rd & Westlakes Blvd - FS,40.061117,-75.466212,,,1, +26989,Swedesford Rd & Valley Forge Rd,40.070993,-75.436327,,,6,0 +26990,West Valley Rd & USPS Facility,40.072341,-75.426391,,,1, +26991,Devon Park Dr & West Valley Rd,40.069663,-75.424309,,,1, +26992,Devon Park Dr & 300,40.070493,-75.422357,,,1, +26993,Devon Park Dr & 200,40.07251,-75.417614,,,1, +26994,Devon Park Dr & 446,40.073938,-75.414301,,,1, +26999,Bethlehem Pk & Yeakel Av,40.093514,-75.213716,,,1, +27000,Bethlehem Pk & Chesney Ln,40.0957,-75.213165,,,1, +27001,Bethlehem Pk & Haws Ln - MBNS,40.098653,-75.212754,,,1, +27002,Bethlehem Pk & Jones Av - FS,40.100661,-75.212641,,,1, +27003,Bethlehem Pk & Wissahickon Av,40.102473,-75.212802,,,1, +27004,Bethlehem Pk & Bysher Av,40.104661,-75.213103,,,1, +27006,Bethlehem Pk & Mill Rd - MBNS,40.107651,-75.213531,,,1, +27010,Bethlehem Pk & Farmar Ln,40.116267,-75.21489,,,1, +27014,Bethlehem Pk & Fort Hill Dr,40.13187,-75.215471,,,1, +27016,Bethlehem Pk & Station Av,40.136355,-75.213101,,,1, +27017,Bethlehem Pk & Washington Ln,40.138853,-75.212277,,,1, +27023,Bethlehem Pk & Highland Av,40.15043,-75.21268,,,1, +27026,Lindenwold Av & Bethlehem Pk - FS,40.155566,-75.214369,,,1, +27028,Lindenwold Av & Butler Av,40.15577,-75.219201,,,1, +27029,Butler Av & Spring Garden Av,40.154214,-75.222865,,,1, +27030,Butler Av & Ridge Av,40.154819,-75.22143,,,1, +27034,Spring Garden St & Tennis Av - FS,40.157817,-75.226217,,,1, +27050,Morris Rd & Windermere Dr,40.181019,-75.28035,,,1, +27051,Morris Rd & Twin Silo Dr,40.184874,-75.286918,,,1, +27052,Morris Rd & North Wales Rd - MBNS,40.191567,-75.29393,,,1, +27054,West Point Pk & Dehaven Dr,40.201761,-75.303166,,,1, +27058,West Point Pk & Merck Laboratories,40.213551,-75.292822,,,1, +27059,West Point Pk & Garfield Av,40.206167,-75.298987,,,1, +27060,Church Rd & Becker Rd,40.218395,-75.290869,,,1, +27061,Church Rd & Kneedler Rd - MBNS,40.220679,-75.289323,,,1, +27063,Church Rd & Cherry St,40.229462,-75.281672,,,1, +27067,Main St & Hillcrest Shop Ctr - FS,40.233072,-75.269761,,,1, +27068,Main St & Oakland Av,40.23215,-75.268127,,,1, +27085,Main St & Greenwood Rd,40.233169,-75.269417,,,1, +27089,Church Rd & Cherry St - FS,40.229908,-75.281398,,,1, +27090,Church Rd & Wissahickon Av MBNS,40.227484,-75.284426,,,1, +27091,Church Rd & Kneedler Rd - MBNS,40.220947,-75.289394,,,1, +27092,Church Rd & Becker Rd - MBFS,40.217495,-75.291736,,,1, +27093,West Point Pk & Merck Laboratories ,40.210759,-75.294972,,,1, +27095,West Point Pk & Garfield Av,40.206381,-75.299069,,,1, +27098,West Point Pk & Dehaven Dr,40.202065,-75.303142,,,1, +27101,Morris Rd & Tournament Dr - FS,40.184553,-75.286729,,,1, +27102,Morris Rd & Windemere Dr,40.181011,-75.28067,,,1, +27104,Morris Rd & Cathcart Rd,40.174045,-75.270628,,,1, +27119,Spring Garden St & Reiffs Mill Rd,40.157853,-75.226466,,,1, +27122,Butler Av & Spring Garden St,40.154,-75.22296,,,1, +27123,Butler Av & Ridge Av,40.154587,-75.221513,,,1, +27124,Butler Av & Lindenwold Av,40.155548,-75.219533,,,1, +27126,Lindenwold Av & Bethlehem Pk,40.155396,-75.214252,,,1, +27128,Bethlehem Pk & Church St - FS,40.151958,-75.213161,,,1, +27130,Bethlehem Pk & Bannockburn Av,40.148279,-75.212615,,,1, +27136,Bethlehem Pk & Station Av,40.136498,-75.213278,,,1, +27138,Bethlehem Pk & Fort Hill Dr,40.131852,-75.215767,,,1, +27140,Bethlehem Pk & Skippack Pk,40.122385,-75.217346,,,1, +27142,Bethlehem Pk & Farmar Ln,40.116473,-75.215138,,,1, +27144,Bethlehem Pk & Sunnybrook Rd,40.112991,-75.214557,,,1, +27146,Bethlehem Pk & Mill Rd,40.107857,-75.213779,,,1, +27148,Bethlehem Pk & College Av,40.105054,-75.213385,,,1, +27149,Bethlehem Pk & Wissahickon Av,40.102697,-75.213038,,,1, +27150,Bethlehem Pk & Jones Av,40.100876,-75.212877,,,1, +27151,Bethlehem Pk & Haws Ln - MBFS,40.098484,-75.212956,,,1, +27152,Bethlehem Pk & Chesney Ln,40.095923,-75.213354,,,1, +27153,Bethlehem Pk & Yeakel Av - FS,40.093746,-75.213869,,,1, +27223,Chemical Rd & Germantown Pk - FS,40.105181,-75.283018,,,1, +27226,Butler Pk & Keys St,40.092531,-75.288297,,,1, +27227,Butler Pk & Plymouth Park Apartment,40.089687,-75.290977,,,1, +27228,Butler Pk & North Ln,40.087449,-75.293111,,,1, +27229,Butler Pk & Antioch Av,40.085211,-75.295256,,,1, +27230,Fayette St & 13th Av Ply Gard Apt,40.084007,-75.296453,,,1, +27231,Fayette St & 11th Av,40.082313,-75.298113,,,1, +27232,Fayette St & 10th Av,40.081484,-75.298931,,,1, +27233,Fayette St & 9th Av,40.080646,-75.299737,,,1, +27234,Fayette St & 8th Av,40.079807,-75.300578,,,1, +27236,Fayette St & 6th Av,40.078149,-75.302202,,,1, +27237,Fayette St & 5th Av,40.077302,-75.303031,,,1, +27239,Fayette St & 3rd Av - FS,40.075447,-75.304856,,,1, +27241,Fayette St & 1st Av,40.073976,-75.306302,,,1, +27245,Front St & George St,40.069563,-75.31181,,,1, +27246,Front St & William St,40.070126,-75.312317,,,1, +27250,River Rd & Smith-Kline,40.082427,-75.324352,,,1, +27252,River Rd & 3rd St,40.087588,-75.326451,,,1, +27258,Hertzog Blvd & Flint Hill Rd - FS,40.090112,-75.335451,,,1, +27260,Feheley Dr & Church Rd,40.092355,-75.339483,,,1, +27262,Horizon Blvd & Renaissance Blvd,40.084982,-75.338842,,,1, +27263,Renaissance Blvd & Swedeland Rd,40.079675,-75.331656,,,1, +27264,Swedeland Rd & Smith Kline,40.076331,-75.335221,,,1, +27269,Swedeland Rd & Renaissance Rd - MBNS,40.077766,-75.333184,,,1, +27271,2000 Renaissance Rd,40.082676,-75.334621,,,1, +27273,Feheley Dr & Church Rd - FS,40.092382,-75.339258,,,1, +27274,Feheley Dr & Hertzog Blvd,40.089524,-75.33725,,,1, +27275,Hertzog Blvd & Flint Hill Rd,40.090255,-75.335534,,,1, +27278,B St & V St,40.088038,-75.331064,,,1, +27281,River Rd & 3rd St - FS,40.087847,-75.326663,,,1, +27283,River Rd & Smith Kline,40.082481,-75.324636,,,1, +27287,Front St & William St,40.070207,-75.31266,,,1, +27289,Fayette St & 1st Av - FS,40.073922,-75.306089,,,1, +27291,Fayette St & 3rd Av - FS,40.075563,-75.304478,,,1, +27293,Fayette St & 5th Av,40.077043,-75.30302,,,1, +27294,Fayette St & 6th Av,40.077899,-75.30219,,,1, +27295,Fayette St & 7th Av,40.078737,-75.301361,,,1, +27296,Fayette St & 8th Av,40.079531,-75.300579,,,1, +27297,Fayette St & 9th Av,40.080378,-75.299725,,,1, +27299,Fayette St & 11th Av,40.082045,-75.29809,,,1, +27300,Fayette St & 13th Av,40.083793,-75.296371,,,1, +27301,Butler Pk & 14th Av,40.084863,-75.295328,,,1, +27302,Butler Pk & North Ln - FS,40.087653,-75.292637,,,1, +27303,Butler Pk & Plymouth Park Apartment,40.089365,-75.291001,,,1, +27304,Butler Pk & Cedar Grove Rd,40.092201,-75.288333,,,1, +27305,Ridge Pk & Chemical Rd - FS,40.096682,-75.296879,,,1, +27311,Main St & Arch St,40.112508,-75.339233,,,1, +27312,Main St & Walnut St,40.1119,-75.33734,,,1, +27313,Main St & Franklin St,40.111283,-75.335731,,,1, +27314,Main St & Ford St,40.110415,-75.333318,,,1, +27315,Main St & Gretz Beverage FS,40.109065,-75.32945,,,1, +27316,Ridge Pk & Chestnut St,40.108246,-75.322842,,,1, +27318,Ridge Pk & Conshohocken Rd,40.107888,-75.320575,,,1, +27319,Ridge Pk & Diamond Av,40.107752,-75.318658,,,1, +27321,Ridge Pk & School Ln,40.106554,-75.315926,,,1, +27322,Ridge Pk & Belvoir Rd,40.104409,-75.312888,,,1, +27323,Ridge Pk & Carland Rd,40.103292,-75.310843,,,1, +27325,Ridge Pk & Regal Dr - MBFS,40.100429,-75.303854,,,1, +27327,Chemical Rd & Gallagher Rd - FS,40.099812,-75.294673,,,1, +27329,Elm St & Poplar St,40.072357,-75.302236,,,1, +27330,Elm St & Cherry St,40.072844,-75.299242,,,1, +27331,Apple St & Hectoer St,40.073779,-75.297206,,,1, +27335,Hector St & Sandy St,40.074808,-75.291443,,,1, +27336,Hector St & Lime St,40.075057,-75.289857,,,1, +27337,Hector St & Lee St,40.075278,-75.288461,,,1, +27345,Joshua Rd & Ridge Pk,40.088532,-75.266085,,,1, +27346,Joshua Rd & Germantown Pk,40.092739,-75.261698,,,1, +27349,Harry St & Elm St,40.072209,-75.306435,,,1, +27350,Church Rd & Ridge Pk,40.081892,-75.253087,,,1, +27352,Ridge Pk & Chestnut St,40.086872,-75.259487,,,1, +27353,Ridge Pk & Mulberry Ln,40.08767,-75.262006,,,1, +27360,Joshua Rd & Cedar Grove Rd - MBNS,40.079152,-75.281111,,,1, +27362,Hector St & Lee St,40.075456,-75.288224,,,1, +27363,Hector St & Lime St,40.075235,-75.289609,,,1, +27364,Hector St & Sandy St,40.074987,-75.291194,,,1, +27367,Hector St & Jones St - FS,40.074269,-75.295703,,,1, +27369,Hector St & Cherry St,40.07363,-75.299182,,,1, +27370,Hector St & Poplar St,40.073169,-75.302104,,,1, +27371,Hector St & Ash St,40.07276,-75.304542,,,1, +27373,Ridge Pk & Regal Dr,40.101027,-75.304741,,,1, +27374,Ridge Pk & Industrial Way - MBNS,40.102002,-75.306455,,,1, +27375,Ridge Pk & Carland Rd,40.103318,-75.310606,,,1, +27376,Ridge Pk & Belvoir Rd - FS,40.104293,-75.312463,,,1, +27377,Ridge Pk & School Ln,40.106518,-75.315678,,,1, +27380,Ridge Pk & Lucetta St,40.107959,-75.320267,,,1, +27383,Ridge Pk & Ross St,40.108741,-75.326184,,,1, +27384,Main St & Ford St,40.110371,-75.332915,,,1, +27385,Main St & Franklin St,40.11131,-75.335494,,,1, +27386,Main St & Walnut St,40.111802,-75.336855,,,1, +27387,Main St & Arch St,40.112606,-75.339019,,,1, +27388,Airy St & Arch St - FS,40.114239,-75.338508,,,1, +27389,Airy St & Green St,40.114892,-75.340236,,,1, +27390,Airy St & DeKalb St - FS,40.115375,-75.341525,,,1, +27391,Airy St & Swede St,40.116189,-75.343501,,,1, +27392,Swede St & Marshall St - FS,40.117482,-75.342718,,,1, +27394,Swede St & Oak St - FS,40.119026,-75.341722,,,1, +27395,Swede St & Elm St - FS,40.121355,-75.340464,,,1, +27398,Pine St & Wood St,40.124691,-75.338779,,,1, +27400,Pine St & Freedley St,40.127001,-75.335485,,,1, +27401,Pine St & Brown St,40.12816,-75.33385,,,1, +27402,Pine St St & Roberts St,40.129265,-75.332286,,,1, +27403,Pine St & Johnson Hwy,40.131815,-75.328601,,,1, +27405,Johnson Hwy & DeKalb Pk - FS,40.129625,-75.324413,,,1, +27410,Bridge St & Almond St - FS,40.006149,-75.068016,,,1, +27411,Levering Av & Fleming St - FS,40.032463,-75.223713,,,1, +27413,Comly Rd & Nestor Rd,40.103328,-75.000036,,,1, +27414,Comly Rd & Caroline Rd - MBFS,40.100148,-74.996659,,,1, +27415,Drummond Rd & Decatur Rd - FS,40.088802,-74.996313,,,1, +27416,Drummond Rd & Decatur Rd - MBFS,40.087407,-74.995458,,,1, +27417,Drummond Rd & 10430 - MBFS,40.084594,-74.995026,,,1, +27418,Comly Rd & Norcom Rd - MBFS,40.100219,-74.996552,,,1, +27419,DeKalb Pk & Northtowne Shop Ctr,40.138454,-75.315662,,,1, +27423,DeKalb Pk & Township Line Rd,40.148497,-75.307618,,,1, +27424,DeKalb Pk & Shoppes at Blue Bell,40.150245,-75.30636,,,1, +27425,DeKalb Pk & Yost Rd,40.155203,-75.301958,,,1, +27426,DeKalb Pk & Jolly Rd - FS,40.158119,-75.29898,,,1, +27427,DeKalb Pk & Michaels Ln - FS,40.159991,-75.297152,,,1, +27429,DeKalb Pk & Skippack Pk - MBFS,40.167846,-75.289214,,,1, +27430,DeKalb Pk & The Shoppes at Village ,40.170334,-75.286615,,,1, +27431,DeKalb Pk & Tournament Dr FS,40.175844,-75.281273,,,1, +27434,DeKalb Pk & Township Line Rd,40.182923,-75.274529,,,1, +27435,DeKalb Pk & Grasshopper Ln,40.185837,-75.270862,,,1, +27438,Sumneytown Pk & DeKalb Pk - FS,40.202553,-75.256178,,,1, +27442,Main St & Prospect Av,40.208071,-75.270718,,,1, +27445,Main St & Montgomery Av,40.210112,-75.275608,,,1, +27450,Walnut St & 10th St,40.218411,-75.273623,,,1, +27451,North Wales Rd & Mill Rd,40.219953,-75.272126,,,1, +27452,Roosevelt Blvd & Robbins Av,40.03498,-75.072363,,,1, +27453,North Wales Rd & Hancock Rd,40.223099,-75.268112,,,1, +27455,Old York Rd & Beech Av,40.065131,-75.134864,,,1, +27456,Old York Rd & Foxcroft Rd,40.08208,-75.126951,,,1, +27459,Main St & Line St,40.238876,-75.279079,,,1, +27461,Main St & Broad St,40.24147,-75.283437,,,1, +27462,Hunting Park Av & 15th St,40.017284,-75.151041,,,1, +27463,Hunting Park Av & 17th St,40.015357,-75.155186,,,1, +27464,Old York Rd & Adams Av,40.11329,-75.12238,,,1, +27465,Old York Rd & Eckard Av,40.116365,-75.120639,,,1, +27466,Park Av & Easton Rd - MBFS,40.14433,-75.117487,,,1, +27467,Easton Rd & Fitzwatertown Rd - MBFS,40.157874,-75.122343,,,1, +27469,Easton Rd & Fair Oaks Av,40.174097,-75.12803,,,1, +27470,Easton Rd & Ruth Av,40.176204,-75.128116,,,1, +27471,Easton Rd & Birch Av,40.180467,-75.130527,,,1, +27472,Easton Rd & Girard Av,40.186857,-75.133865,,,1, +27473,Easton Rd & Maple Av,40.189503,-75.135524,,,1, +27474,Easton Rd & Maple Av - MBFS,40.194077,-75.137295,,,1, +27475,Easton Rd & Moreland Av,40.196194,-75.137902,,,1, +27476,Easton Rd & Moreland Av - MBFS,40.201838,-75.139159,,,1, +27477,Easton Rd & County Line Rd - MBFS,40.21463,-75.139462,,,1, +27478,Easton Rd & Street Rd - MBFS,40.231675,-75.137805,,,1, +27479,Easton Rd & Valley Sq Blvd,40.234119,-75.137178,,,1, +27480,Easton Rd & Georges Ln,40.235341,-75.136901,,,1, +27481,Easton Rd & Almshouse Rd - FS,40.271127,-75.129147,,,1, +27482,Easton Rd & Kelly Dr - MBFS,40.26763,-75.130197,,,1, +27483,Easton Rd & Sauerman Rd,40.290511,-75.127574,,,1, +27484,Main St & Bridge St,40.306591,-75.129155,,,1, +27485,Main St & Chapman Av,40.325696,-75.129906,,,1, +27486,Main St & Chapman Av - FS,40.32558,-75.130085,,,1, +27487,Main St & Commerce Ctr,40.293359,-75.127799,,,1, +27488,Main St & New Britain Rd,40.291085,-75.128829,,,1, +27489,Easton & Almshouse - MBNS,40.274525,-75.128341,,,1, +27490,Easton Rd & Almshouse Rd - MBFS,40.268549,-75.130241,,,1, +27491,Easton Rd & Upper Barness Rd,40.242374,-75.136492,,,1, +27492,Easton Rd & Oakfield Dr,40.234548,-75.137236,,,1, +27493,Easton Rd & Street Rd - MBNS,40.232291,-75.137933,,,1, +27494,Easton Rd & Titus Av - MBNS,40.223968,-75.140088,,,1, +27495,Easton Rd & Titus Av - MBFS,40.21738,-75.139748,,,1, +27496,Easton Rd & County Line Rd,40.212041,-75.139485,,,1, +27497,Easton Rd & County Line Rd - MBFS,40.206392,-75.139851,,,1, +27499,Easton Rd & Maple Av - MBNS,40.192532,-75.137028,,,1, +27502,Easton Rd & Girard Av,40.186974,-75.134125,,,1, +27503,Main St & Park Dr MBFS,40.237463,-75.277067,,,1, +27505,Easton Rd & Horsham Rd - 2,40.177749,-75.128524,,,1, +27506,Easton Rd & Fair Oaks Av,40.174204,-75.128195,,,1, +27507,Easton Rd & Sycamore Av,40.168613,-75.12649,,,1, +27508,Easton Rd & Sycamore Av - MBFS,40.167174,-75.125761,,,1, +27511,North Wales Rd & Hancock Rd,40.223438,-75.267981,,,1, +27512,North Wales Rd & Mill Rd,40.220248,-75.27209,,,1, +27514,Walnut St & 8th St,40.217083,-75.275154,,,1, +27516,Easton Rd & Wyandotte Rd - MBFS,40.158348,-75.122815,,,1, +27519,Main St & Montgomery Av,40.210158,-75.276272,,,1, +27522,Main St & Prospect Av,40.208054,-75.271014,,,1, +27533,Old York Rd & Woodland Rd - FS,40.118915,-75.119504,,,1, +27534,Old York Rd & Brook Rd,40.112516,-75.123153,,,1, +27536,DeKalb Pk & Skippack Pk,40.167552,-75.28983,,,1, +27538,DeKalb Pk & Michaels Ln,40.159867,-75.297555,,,1, +27539,DeKalb Pk & Jolly Rd,40.158173,-75.299299,,,1, +27540,DeKalb Pk & Yost Rd - FS,40.155257,-75.302182,,,1, +27541,DeKalb Pk & Tournament Dr - FS,40.17571,-75.281866,,,1, +27542,DeKalb Pk & Shoppes at Blue Bell,40.150272,-75.306585,,,1, +27543,DeKalb Pk & Township Line Rd,40.148871,-75.307582,,,1, +27546,DeKalb Pk & Germantown Pk - MBNS,40.143163,-75.311724,,,1, +27547,DeKalb Pk & Dekalb Apts,40.138606,-75.315721,,,1, +27554,Pine St & Johnson Hwy - FS,40.131914,-75.32879,,,1, +27555,Pine St & Roberts St,40.129542,-75.332215,,,1, +27556,Pine St & Brown St,40.12841,-75.333814,,,1, +27557,Pine St & Freedley St,40.12726,-75.335426,,,1, +27558,Pine St & Fornance St,40.126109,-75.337073,,,1, +27559,Pine St & Wood St,40.124968,-75.338708,,,1, +27560,Pine St & Swede St,40.124121,-75.339904,,,1, +27562,Swede St & Elm St,40.120926,-75.340773,,,1, +27563,Swede St & Oak St - FS,40.118919,-75.34203,,,1, +27566,DeKalb St & Marshall St,40.116392,-75.34053,,,1, +27568,DeKalb St & Oak St,40.118007,-75.339486,,,1, +27570,DeKalb St & Elm St,40.119978,-75.338122,,,1, +27571,DeKalb St & Spruce St,40.120932,-75.336736,,,1, +27572,DeKalb St & Wood St - FS,40.122074,-75.335113,,,1, +27573,DeKalb St & Fornance St - FS,40.123295,-75.333383,,,1, +27575,DeKalb St & Brown St,40.12531,-75.330504,,,1, +27577,DeKalb St & Logan St,40.127575,-75.327269,,,1, +27578,DeKalb St & Johnson Hwy,40.129393,-75.324686,,,1, +27579,Johnson Hwy & Arch St,40.128303,-75.322734,,,1, +27580,Johnson Hwy & Zummo Way,40.127302,-75.32109,,,1, +27582,New Hope St & Montco VoTech,40.126983,-75.314343,,,1, +27587,Arch Rd & Henley Rd,40.138245,-75.302982,,,1, +27594,Jolly Rd & Aetna,40.148085,-75.289975,,,1, +27596,Union Meeting & Harvest Dr - MBNS,40.148811,-75.284775,,,1, +27597,Harvest Dr & Union Meeting Rd,40.151257,-75.28451,,,1, +27599,Harvest Dr & 930 Building,40.152437,-75.286296,,,1, +27600,Harvest Dr & Union Meeting Rd,40.151257,-75.28451,,,1, +27601,Union Meeting & Harvest Dr - MBFS,40.150515,-75.283339,,,1, +27603,Union Meeting Rd & Jolly Rd - FS,40.146298,-75.287658,,,1, +27605,Township Line & Penllyn Blue Bell - 1,40.135834,-75.285476,,,1, +27608,Walton Rd & Apache Ln,40.130214,-75.280279,,,1, +27609,Walton Rd & Apollo Rd - FS,40.128324,-75.282212,,,1, +27613,Fountain Dr & PM Exec Campus 3,40.119739,-75.283272,,,1, +27621,Walton Rd & Apache Ln,40.129928,-75.280315,,,1, +27622,Walton Rd & Township Line Rd,40.131818,-75.278381,,,1, +27623,Norristown Rd & Walton Rd - MBFS,40.131593,-75.27689,,,1, +27624,Norristown Rd & Sentry Pkwy - FS,40.130835,-75.269682,,,1, +27626,Norristown Rd & Copper Beech Dr,40.132783,-75.258253,,,1, +27630,Butler Pk & Skippack Pk,40.13886,-75.244232,,,1, +27638,Butler Av & Chestnut St,40.152614,-75.226516,,,1, +27641,Pennsylvania Av & Commerce Dr - FS,40.133924,-75.206053,,,1, +27647,Pennsylvania Av & Apel Av - FS,40.117407,-75.179757,,,1, +27648,Pennsylvania Av & Twining Rd,40.116816,-75.178788,,,1, +27652,North Hills Av & Chestnut Av,40.114055,-75.168619,,,1, +27660,Fitzwatertown Rd & North Hills Av,40.128389,-75.160044,,,1, +27662,Fitzwatertown Rd & Susquehanna Rd,40.132417,-75.152712,,,1, +27666,Fitzwatertown Rd & Woodland Rd,40.138888,-75.144967,,,1, +27671,Fitzwatertown Rd & Old Welsh Rd,40.144022,-75.134042,,,1, +27679,Moreland Rd & Coolidge Av - MBFS,40.144602,-75.122637,,,1, +27681,Harbison Av & Kennedy St ,40.014512,-75.068234,,,1, +27682,Harbison Av & Van Kirk St ,40.018257,-75.063712,,,1, +27684,Moreland Rd & Center Av - MBFS,40.143803,-75.120923,,,1, +27685,Magee Av & Loretto Av ,40.042793,-75.076498,,,1, +27699,Fitzwatertown Rd & Woodland Rd,40.139209,-75.144765,,,1, +27700,Fitzwatertown Rd & Burn Brae Dr,40.136859,-75.147403,,,1, +27703,Fitzwatertown Rd & Woodside Cir,40.131813,-75.153993,,,1, +27705,Fitzwatertown & North Hills,40.128515,-75.160315,,,1, +27706,Fitzwatertown Rd & Eastview Dr - FS,40.127111,-75.163245,,,1, +27712,North Hills Av & Walnut Av,40.115775,-75.167157,,,1, +27713,North Hills Av & Chestnut Av,40.114109,-75.168832,,,1,0 +27715,Olney Square 1 Conway,40.037139,-75.118782,,,1, +27717,Pennsylvania Av & Girard Av,40.114522,-75.174251,,,1, +27719,Pennsylvania Av & Twining RD.,40.116824,-75.178445,,,1, +27720,Levick St & Dorcas St - MBNS,40.044642,-75.086835,,,1, +27721,Magee Av & Frontenac St ,40.043888,-75.078692,,,1, +27722,Harbison Av & Kennedy St ,40.015092,-75.068243,,,1, +27723,Pennsylvania Av & Apel Av,40.117576,-75.179685,,,1, +27725,Pennsylvania Av & Heritage Av ,40.121051,-75.185343,,,1, +27729,Pennsylvania Av & Commerce Dr,40.134765,-75.206985,,,1, +27730,Pennsylvania Av & Summit Av,40.136725,-75.210342,,,1, +27731,State Rd & Ashburner St - MBFS,40.03821,-75.008609,,,1, +27732,State Rd & Pennypack St - MBFS,40.043558,-74.998562,,,1, +27733,State Rd & James St ,40.0515,-74.985127,,,1, +27734,Red Lion Rd & Waldemire Rd - MBFS,40.073638,-74.983547,,,1, +27735,Red Lion Rd & Knights Rd - MBNS,40.07266,-74.982205,,,1, +27736,Knights Rd & Liberty Bell Blvd,40.088725,-74.969515,,,1, +27738,Southampton Rd & Arbours Way,40.116613,-74.990701,,,1, +27739,Philmont Av & Clifford Ln ,40.129451,-75.023603,,,1, +27740,Southampton Rd & Kovats Dr - FS,40.122237,-74.998798,,,1, +27741,Southampton Rd & London Rd ,40.120739,-74.996511,,,1, +27742,Southampton Rd & Roosevelt - MBNS,40.115771,-74.989924,,,1, +27743,State Rd & Linden Av - MBFS,40.044429,-74.997303,,,1, +27744,State Rd & Pennypack St - 1 MBNS,40.043266,-74.999332,,,1, +27745,State Rd & Pennypack St - 2 MBNS,40.041652,-75.002333,,,1, +27746,State Rd & Milnor St ,40.021945,-75.037889,,,1, +27747,Tacony St & Devereaux Av - MBFS,40.015005,-75.053753,,,1, +27748,Stenton Av & Ogontz Av,40.051519,-75.14995,,,1, +27750,66th Av & Broad St - FS,40.05349,-75.141239,,,1, +27751,Pennypack St & Marigold Pl ,40.054909,-75.019118,,,1, +27752,Midvale Av & Creswell St ,40.00982,-75.193121,,,1, +27753,Pennypack St & Stardust Ln,40.053583,-75.017754,,,1, +27754,Crispin St & Dartmouth Pl ,40.053393,-75.011428,,,1, +27755,Midvale Av & Creswell St ,40.00991,-75.193262,,,1, +27756,Crispin St & Harvard Pl - MBNS,40.052022,-75.012441,,,1, +27757,Crispin St & Pennypack St - FS,40.050237,-75.015089,,,1, +27758,Welsh Rd & Tolbut St - MBFS,40.061988,-75.028007,,,1, +27759,Welsh Rd & Roosevelt Blvd - FS,40.074774,-75.035116,,,1, +27760,Grant Av & Alton St ,40.089042,-75.045461,,,1, +27761,Darlington Rd & Flagstaff Rd ,40.100146,-75.057329,,,1, +27762,Holme Av & Longford St ,40.056632,-75.022124,,,1, +27763,Cresco Av & Fuller St - FS,40.048474,-75.030424,,,1, +27764,Butler Av & Locust St ,40.152543,-75.227168,,,1, +27769,Butler Pk & Ridings Way - FS,40.145242,-75.238402,,,1, +27772,Butler Pk & Skippack Pk,40.139127,-75.244244,,,1, +27774,Butler Pk & Farm Dr,40.135259,-75.247947,,,1, +27777,Norristown Rd & Copper Beech Dr,40.133033,-75.25804,,,1, +27778,Norristown Rd & Huntsman Ln,40.132563,-75.260113,,,1, +27779,Norristown Rd & Sentry Pkwy,40.130943,-75.270593,,,1, +27781,Township Line Rd & Walton Rd - FS,40.132533,-75.279138,,,1, +27783,Township Line Rd & Penllyn BlueBell,40.136165,-75.285689,,,1, +27786,Jolly Rd & Unisys Building,40.146431,-75.287279,,,1, +27788,Jolly Rd & PA Turnpike,40.148058,-75.289573,,,1, +27794,Arch Rd & Henley Rd,40.138477,-75.303018,,,1, +27795,Arch Rd & Elizabeth Dr - FS,40.134625,-75.306943,,,1, +27799,New Hope St & Montco VoTech,40.126983,-75.314615,,,1, +27801,Johnson Hwy & North Hills Dr,40.125925,-75.318405,,,1, +27802,Johnson Hwy & Rahway or Zummo Way,40.127248,-75.320652,,,1, +27805,Powell St & Johnson Hwy,40.130538,-75.326921,,,1, +27806,Powell St & Logan St,40.129191,-75.328829,,,1, +27808,Powell St & Brown St,40.126927,-75.332112,,,1, +27810,Powell St & Fornance St - FS,40.124537,-75.335465,,,1, +27813,Powell St & Swede St,40.121096,-75.340453,,,1, +27814,Easton Rd & Titus Av - MBFS,40.223646,-75.139912,,,1, +27816,Wayne Av & Roberts Av ,40.020936,-75.159703,,,1, +27817,Orthodox St & Pilling St,40.016839,-75.089469,,,1, +27818,Courtland St & Windrum Av ,40.024179,-75.156889,,,1, +27820,DeKalb St & Schuylkill Av,40.111887,-75.343683,,,1, +27825,Ford St & Rambo St,40.104539,-75.340154,,,1, +27826,Ford St & 5th St,40.103532,-75.34238,,,1, +27828,Ford St & 7th St,40.102569,-75.344511,,,1, +27829,Ford St & 8th St,40.101999,-75.345814,,,1, +27831,Ford St & Green St,40.100599,-75.348892,,,1, +27832,Ford St & DeKalb St,40.099566,-75.351177,,,1, +27833,Saulin Blvd & DeKalb Pk & - MBFS,40.095732,-75.357985,,,1, +27835,Monroe Blvd & Henderson Sq Shop Ctr,40.092608,-75.359183,,,1, +27840,Allendale Rd & Elliott Dr,40.09371,-75.387852,,,1, +27841,Allendale Rd & Crossfield Rd,40.095827,-75.390702,,,1, +27842,Allendale Rd & Keebler Rd,40.097273,-75.392618,,,1, +27844,1st Av & Allendale Rd - FS,40.098336,-75.395138,,,8, +27847,Shannondell Blvd & Trooper Rd - FS,40.128016,-75.405754,,,1, +27848,Shannondell & Audubon Squ Shop Ctr,40.129274,-75.406523,,,1, +27849,Egypt Rd & Rittenhouse Rd,40.129981,-75.414005,,,1, +27851,Egypt Rd & Crawford Rd,40.129294,-75.422457,,,1, +27853,Egypt Rd & Park Av,40.128357,-75.431466,,,1, +27855,Egypt Rd & Mill Grove Dr - FS,40.130588,-75.436817,,,1, +27859,Station Av & Egypt Rd - FS,40.132398,-75.454635,,,1, +27862,North Dr & Montgomery Av - MBFS,40.125757,-75.457651,,,1, +27863,Oaks Mills Shopping Ctr & Lowes,40.128266,-75.454349,,,1, +27864,Oaks Mills Shopping Ctr & Target,40.130167,-75.452018,,,1, +27866,Cresson Rd & Egypt Rd,40.132684,-75.450858,,,1, +27868,Cider Mill Rd & SEI Industries,40.140905,-75.449606,,,1, +27869,Cider Mill Rd& Upper Indian Head Rd,40.14286,-75.451264,,,1, +27871,Cider Mill Rd & Minuteman Dr,40.147223,-75.455469,,,1, +27873,Arcola Rd & Troutman Rd - MBFS,40.158851,-75.465824,,,1, +27874,Campus Dr & Wyeth Bldg 400,40.158582,-75.47017,,,1, +27875,Campus Dr & Marriott Hotel,40.159813,-75.471627,,,1, +27876,Campus Dr & Iron Mountain Bldg,40.161107,-75.47312,,,1, +27877,Arcola Rd & Springhouse Dr,40.163223,-75.472849,,,1, +27884,Bridge St & Jacobs St,40.136474,-75.506682,,,1, +27885,Bridge St & Starr St,40.134435,-75.512481,,,1, +27886,Bridge St & Main St,40.134049,-75.515997,,,1, +27887,Bridge St & Gay St,40.133798,-75.518317,,,1, +27889,Church St & Gay St - FS,40.132566,-75.518043,,,1, +27891,Bridge St & Walnut St,40.136046,-75.506989,,,1, +27892,Bridge St & Norwood St - FS,40.138029,-75.503676,,,1, +27897,Collegeville Rd & BlackRock Rd - MBFS,40.158006,-75.483114,,,1, +27898,Arcola Rd & Springhouse Dr FS,40.164472,-75.473643,,,1, +27899,Campus Dr & Iron Mountain Bldg,40.161411,-75.473014,,,1, +27900,Campus Dr & Marriott Hotel - FS,40.159679,-75.471769,,,1, +27901,Campus Dr & Wyeth Bldg 400,40.158537,-75.470442,,,1, +27902,Campus Dr & Arcola Rd,40.159092,-75.466309,,,1, +27905,Cider Mill Rd & Minuteman Dr,40.147643,-75.456191,,,1, +27907,Cider Mill Rd & Upper Indian Head Rd,40.142636,-75.451287,,,1, +27912,Egypt Rd & Pawlings Rd,40.128179,-75.43181,,,1, +27914,Egypt Rd & Crawford Rd,40.129107,-75.422789,,,1, +27916,Egypt Rd & Rittenhouse Rd - FS,40.12982,-75.414005,,,1, +27917,Shannondell Blvd & Trooper Rd ,40.127552,-75.405316,,,1, +27918,Trooper Rd & Van Buren Av ,40.120974,-75.411793,,,1, +27920,Trooper Rd & Audubon Rd,40.114638,-75.41847,,,1, +27921,1st Av & Park Av - FS at Ebay,40.094992,-75.4067,,,8, +27923,1st Av & Allendale Rd,40.098336,-75.3947,,,8, +27924,Allendale Rd & Keebler Rd,40.0973,-75.392961,,,1, +27926,Allendale Rd & Elliott Dr,40.093719,-75.388183,,,1, +27927,Wills Blvd & Allendale Rd - MBFS,40.090327,-75.386221,,,1, +27928,Court Blvd & Allendale Rd - MBNS,40.089327,-75.384186,,,1, +27930,Monroe Blvd & Henderson Sq Shop Ctr,40.092519,-75.358876,,,1, +27948,Verree Rd & Strahle St ,40.077524,-75.071016,,,1, +27949,Verree Rd & Bloomfield Av - MBNS,40.085864,-75.06016,,,1, +27950,Verree Rd & Pine Hill Rd - MBNS,40.099314,-75.044861,,,1, +27952,Northeast Av & Gorman St ,40.103652,-75.024909,,,1, +27953,Red Lion Rd & Ferndale St ,40.106315,-75.034563,,,1, +27954,Verree Rd & Dogwood Ln - FS,40.092752,-75.053108,,,1, +27955,Verree Rd & Susquehanna Rd - MBNS,40.081839,-75.066238,,,1, +27956,Verree Rd & Bloomfield Av - 3 MBFS,40.08439,-75.062546,,,1, +27957,Verree Rd & Bloomfield Av - 4 MBFS,40.083261,-75.06416,,,1, +27958,Verree Rd & Strahle St ,40.077774,-75.071062,,,1, +27959,Gregg St & Krewstown Rd ,40.086296,-75.046197,,,1, +27960,Grant Av & Blue Grass Rd - MBNS,40.075588,-75.01894,,,1, +27961,Grant Av & Blue Grass Rd - 2,40.079027,-75.02519,,,1, +27962,Krewstown Rd & Surrey Rd ,40.084782,-75.047578,,,1, +27963,Dungan Rd & Rhawn St - FS,40.068535,-75.06763,,,1, +27964,Dungan Rd & Lorna Dr,40.065936,-75.070257,,,1, +27965,Napfle Av & Whitaker Av,40.062381,-75.072357,,,1, +27966,Susquehanna Av & 8th St ,39.985118,-75.146653,,,1, +27967,School House Ln & Wissahickon - FS,40.025863,-75.181341,,,1, +27968,Belfield Av & Armstrong St - MBNS,40.036881,-75.162102,,,1, +27970,Middletown Blvd & Town Center Dr,40.186521,-74.881615,,,1, +27972,North Bucks Town Rd & Town Ctr Dr,40.187004,-74.875676,,,1, +27975,Oxford Valley Rd & Penns Gate Blvd,40.179131,-74.86947,,,1, +27978,Oxford Valley Rd & Trenton Rd - MBFS,40.175293,-74.859609,,,1, +27980,Olds Blvd & Hood Blvd,40.172927,-74.847699,,,1, +27983,Hood Blvd & Queen Anne Dr,40.172517,-74.844018,,,1, +27984,Hood Blvd & Fairhurst Rd,40.172836,-74.839692,,,1, +27986,New Falls Rd & Hood Blvd - MBFS,40.171146,-74.83524,,,1, +27987,New Falls Rd & Parson Pl,40.169326,-74.837411,,,1, +27988,Levittown Pkwy & New Falls Rd - FS,40.165087,-74.841296,,,1, +27989,Levittown Pkwy & Holly Turn,40.164283,-74.839265,,,1, +27991,Levittown Pkwy & Crabtree Dr - FS,40.161246,-74.833143,,,1, +27996,Levittown Pkwy & Sexton Ln,40.151581,-74.825953,,,1, +27998,Levittown Pkwy & Spur Ln,40.14746,-74.822944,,,1, +27999,Levittown Pkwy & Lakeside Dr,40.145588,-74.82161,,,1, +28000,Levittown Town Ctr & Walmart,40.142378,-74.820489,,,1,0 +28003,Bristol Pk & Levittown Train Station,40.14082,-74.817518,,,1, +28005,Tyburn Rd & Martha Dr,40.182959,-74.813864,,,1, +28010,Trenton Rd & Beverly Av,40.187826,-74.829142,,,1, +28012,Arleans Av & Lincoln Hwy - MBNS,40.189086,-74.831359,,,1, +28015,Woolston Dr & West Trenton Av - MBNS,40.195543,-74.817015,,,1, +28019,West Trenton Av & Sweetbriar Rd,40.203431,-74.807502,,,1, +28021,West Trenton Av & Plaza Dr - FS,40.208591,-74.800488,,,1, +28026,West Trenton Av & Lincoln Av,40.212527,-74.791339,,,1, +28028,West Trenton Av & Hamilton Blvd,40.213516,-74.789209,,,1, +28030,West Trenton Av & Lafayette Av,40.214478,-74.787138,,,1, +28031,West Trenton Av & Pennsylvania Av,40.215838,-74.78421,,,1, +28033,Pennsylvania Av & Hendrickson Av,40.213964,-74.780908,,,1, +28034,Pennsylvania Av & Franklin St,40.21321,-74.780109,,,1, +28035,Pennsylvania Av & Palmer St,40.211999,-74.77884,,,1, +28037,Pennsylvania Av & Hillcrest Av,40.210383,-74.777207,,,1, +28040,Pennsylvania Av & Union St,40.20988,-74.776548,,,1, +28041,Pennsylvania Av & Osborne Av,40.210849,-74.777476,,,1, +28045,Pennsylvania Av & Maple Av - MBFS,40.215536,-74.782838,,,1, +28049,West Trenton Av & Hamilton Blvd,40.213809,-74.788993,,,1, +28050,West Trenton Av & Decou Dr - FS,40.212732,-74.791267,,,1, +28052,West Trenton Av & Doloro Dr - FS,40.211142,-74.794718,,,1, +28054,West Trenton Av & Big Oak Rd,40.209431,-74.798739,,,1, +28055,West Trenton Av & Plaza Dr - FS,40.208285,-74.801712,,,1, +28058,West Trenton Av & Stevens Dr - MBFS,40.206311,-74.805071,,,1, +28066,West Trenton Dr & Woolston Dr - MBNS,40.197019,-74.814146,,,1, +28067,Woolston Dr & Makefield Rd,40.195678,-74.817274,,,1, +28068,Trenton Rd & Beverly Ln ,40.187621,-74.829191,,,1, +28073,Tyburn Rd & Martha Dr,40.182809,-74.814186,,,1, +28076,Levittown Town Center & Walmart,40.142673,-74.820451,,,1, +28077,Levittown Pkwy & Lakeside Dr,40.145515,-74.821137,,,1, +28079,Levittown Pkwy & Sexton Ln,40.151749,-74.825655,,,1, +28080,Levittown Pkwy & Penn Ln,40.154454,-74.827669,,,1, +28082,Levittown Pkwy & Willowood Way,40.157132,-74.829648,,,1, +28084,Levittown Pkwy & Willowood Gate,40.159846,-74.831674,,,1, +28085,Levittown Pkwy & Magnolia Dr,40.160975,-74.83253,,,1, +28086,Levittown Pkwy & Holly Tn,40.164405,-74.83879,,,1, +28088,Levittown Pkwy & New Falls Rd,40.16539,-74.841281,,,1, +28089,New Falls Rd & Magnolia Pass,40.168632,-74.837938,,,1, +28090,New Falls Rd & Hood Blvd,40.171499,-74.834515,,,1, +28093,Hood Blvd & Queen Anne Dr,40.172712,-74.843709,,,1, +28096,Olds Blvd & Hood Blvd,40.172865,-74.847924,,,1, +28097,Levittown Pkwy & Spur Ln,40.147422,-74.822506,,,1, +28101,Oxford Valley Rd & Austin Dr,40.178359,-74.866692,,,1, +28102,Oxford Valley Rd & S Bucks Town Rd,40.183204,-74.870279,,,1, +28104,Oxford Valley Rd & Trenton Rd,40.175497,-74.859382,,,1, +28107,Middletown Blvd & Town Center Dr,40.186832,-74.881317,,,1, +28109,Lincoln Hwy & Highland Pk Rd - MBNS,40.168995,-74.895028,,,1, +28118,Woodbourne Rd & Terrace Rd - MBFS,40.172752,-74.882526,,,1, +28119,Woodbourne Rd & Harmony Rd,40.170159,-74.879455,,,1, +28121,Woodbourne Rd & Trenton Rd - MBNS,40.167899,-74.876902,,,1, +28122,Woodbourne Rd & Brist Oxf Val Rd - FS,40.165853,-74.874548,,,1, +28124,Woodbourne Rd & Cobalt Ridge Dr,40.159605,-74.868427,,,1, +28126,Woodbourne Rd & Quincy Dr,40.156479,-74.862151,,,1, +28128,New Falls Rd & Red Cedar Dr,40.156915,-74.852033,,,1, +28130,New Falls Rd & Wistar Rd,40.160431,-74.847789,,,1, +28131,New Falls Rd & Appletree Pl,40.162472,-74.845344,,,1, +28141,Bristol Pk & Edgley Rd,40.128985,-74.834477,,,1, +28143,Bristol Pk & Airport Rd - MBFS,40.123201,-74.840113,,,1, +28144,Bristol Pk & I276,40.121264,-74.842011,,,1, +28146,Green Ln & Wilson Av,40.113902,-74.840509,,,1, +28149,Green Ln & Farragut Av,40.110373,-74.837828,,,1, +28155,Pond St & Lincoln St,40.103181,-74.847934,,,1, +28156,Pond St & Jefferson Av,40.102465,-74.849289,,,1, +28157,Jefferson Av & Wood St,40.100952,-74.848319,,,1, +28158,Jefferson Av & Radcliffe St,40.099563,-74.847123,,,1, +28161,Radcliffe St & Walnut St - FS,40.096422,-74.853136,,,1, +28165,Henry Av & Abbottsford Av - MBFS,40.010788,-75.181488,,,1, +28166,Weccacoe Av & Vandalia St,39.920113,-75.144631,,,1, +28167,Bath St & Otter St - FS,40.097214,-74.860609,,,1, +28169,Pattison Av & 7th St ,39.903963,-75.162185,,,1, +28170,7th St & Pattison Av - MBFS,39.90646,-75.161715,,,1, +28171,Passyunk Av & 28th St - MBNS,39.921445,-75.19255,,,1, +28172,Bath St & Buckley St,40.099147,-74.861611,,,1, +28173,Bath St & Howell St - MBFS,40.100883,-74.862532,,,1, +28176,Old Orchard Rd & Fayette Dr,40.108226,-74.869859,,,1, +28181,Oxford St & 59th St ,39.980491,-75.239279,,,1, +28187,State Rd & River Rd -- MBFS,40.096144,-74.876852,,,1, +28188,State Rd & Industrial Dr - FS,40.093661,-74.882586,,,1, +28190,State Rd & Elm Av,40.092068,-74.887674,,,1, +28193,State Rd & Linton Av,40.090229,-74.893793,,,1, +28196,State Rd & Rosa Av - FS,40.088266,-74.900398,,,1, +28198,State Rd & Cedar Av,40.087201,-74.903944,,,1, +28199,Lancaster Av & 60th St ,39.982787,-75.241328,,,1, +28201,Cedar Av & Main Av,40.090233,-74.905507,,,1, +28202,Cedar Av & Magnolia Av,40.092344,-74.906533,,,1, +28206,Bristol Pk & Gray Av,40.093277,-74.91643,,,1, +28208,Bristol Pk & Bensalem Blvd,40.091468,-74.923731,,,1, +28209,Bristol Pk & Appleton Av - MBFS,40.0894,-74.926585,,,1, +28210,Bristol Pk & Street Rd - MBNS,40.085019,-74.933821,,,1, +28218,Bristol Pk & Kings Av,40.075743,-74.956243,,,1, +28219,Bristol Pk & Hulmeville Rd,40.07534,-74.95821,,,1, +28229,Hulmeville Rd & Brookwood Dr,40.099638,-74.94256,,,1, +28230,Hulmeville Rd & Park Av,40.104989,-74.939056,,,1, +28231,Hulmeville Rd & Byberry Rd,40.108487,-74.936783,,,1, +28232,Galloway Rd & Hulmeville Rd,40.11085,-74.935974,,,1, +28236,Galloway Rd & Bristol Rd - MBNS,40.133941,-74.943072,,,1, +28238,Neshaminy Blvd & Bristol Rd,40.138913,-74.947644,,,1, +28241,Galloway Rd & Thunder Hollow Apts,40.134996,-74.943491,,,1, +28242,Galloway Rd & Richlieu Rd - 1,40.131834,-74.94298,,,1, +28245,Galloway Rd & Hulmeville Rd,40.110403,-74.9358,,,1, +28246,Hulmeville Rd & Byberry Rd - FS,40.108355,-74.937104,,,1, +28247,Hulmeville Rd & Park Av,40.105266,-74.939125,,,1, +28258,Bristol Pk & Hulmeville Rd,40.074986,-74.958993,,,1, +28260,Bristol Pk & Station Av,40.076135,-74.953591,,,1, +28267,Bristol Pk & Street Rd - FS,40.084698,-74.9338,,,1, +28268,Bristol Pk & Park Av - FS,40.090641,-74.924553,,,1, +28270,Overbrook Station,39.98969,-75.249545,,,1, +28273,Bristol Pk & Gray Av,40.093055,-74.916656,,,1, +28274,Bristol Pk & Haunted Ln,40.093309,-74.915483,,,1, +28277,Bristol Pk & Allen Av - FS,40.092339,-74.920625,,,1, +28279,Cedar Av & Main Av,40.090395,-74.905813,,,1, +28281,Lankenau Dr & Lancaster Av - MBNS,39.98988,-75.2583,,,1, +28283,State Rd & Rosa Av,40.088079,-74.900423,,,1, +28285,State Rd & Church St - FS,40.089258,-74.896451,,,1, +28286,State Rd & Linton Av,40.089988,-74.893985,,,1, +28289,59th St & Woodcrest Av ,39.987286,-75.241884,,,1, +28292,State Rd & Industrial Dr,40.093227,-74.883216,,,1, +28293,State Rd & River Rd - FS,40.096178,-74.876331,,,1, +28299,Lancaster Av & 60th St,39.982752,-75.241612,,,1, +28300,Dicks Av & 63rd St ,39.921805,-75.224916,,,1, +28302,Veterans Hwy & Winder Dr,40.1069,-74.876875,,,1, +28303,63rd St & Passyunk Av - MBNS,39.918288,-75.218941,,,1, +28304,Passyunk Av & Oregon Av ,39.921601,-75.190378,,,1, +28307,Veterans Hwy & Rockview Dr,40.111193,-74.878783,,,1, +28308,Veterans Hwy & Rockview Dr - FS,40.111042,-74.879163,,,1, +28309,Winder Dr & Veterans Hwy,40.10712,-74.876199,,,1, +28317,Bath St & Howell St,40.100678,-74.862664,,,1, +28318,Bath St & Mifflin St,40.099434,-74.861999,,,1, +28319,Mill St & Wood St,40.095723,-74.858443,,,1,0 +28321,Radcliffe St & Walnut St,40.09634,-74.8529,,,1, +28325,JFK Blvd & 30th St,39.955796,-75.18332,,,1,0 +28327,Market & 36th St,39.956227,-75.19397,,,1, +28329,Presbyterian Medical Center,39.958128,-75.198806,,,1, +28333,Osler Circle & Curie Blvd - MBFS,39.948135,-75.195603,,,1, +28341,Osler Circle & Civic Center Blvd - MBFS,39.948108,-75.195402,,,1, +28343,38th St & Spruce St,39.951132,-75.199112,,,1, +28345,Presbyterian Medical Center,39.958137,-75.198924,,,1, +28346,Market St & 36th St,39.956094,-75.19429,,,1, +28351,Jefferson Av & Wood St,40.100852,-74.847965,,,1, +28352,Jefferson Av & Pond St,40.102241,-74.849196,,,1, +28359,Green Ln & Farragut St,40.110255,-74.837485,,,1, +28362,Green Ln & Wilson Av,40.113785,-74.840178,,,1, +28378,Ridge Av & Lemonte St ,40.039434,-75.223669,,,1, +28380,New Falls Rd & Wistar Rd,40.160503,-74.847989,,,1, +28382,New Falls Rd & Red Cedar Dr,40.15721,-74.851972,,,1, +28386,Woodbourne Rd & Cobalt Ridge Dr,40.15972,-74.86826,,,1, +28388,Woodbourne Rd & Brist Oxf Val Rd - FS,40.16639,-74.874781,,,1, +28389,Woodbourne Rd & Trenton Rd,40.167844,-74.876547,,,1, +28391,Woodbourne Rd & Harmony Rd,40.170095,-74.8791,,,1, +28393,Lincoln Hwy & Woodbourne Rd - FS,40.176644,-74.884499,,,1, +28394,Ridge Av & Port Royal Av - MBNS,40.058573,-75.237191,,,1, +28395,Easton Rd & Castlewood Rd ,40.11426,-75.140059,,,1, +28396,Easton Rd & Tyson Av ,40.119826,-75.134544,,,1, +28397,Old York Rd & Montgomery Av - FS,40.179147,-75.105595,,,1, +28398,Old York Rd & Summit Av - MBFS,40.181903,-75.104943,,,1, +28399,Old York Rd & Crescent Rd ,40.184686,-75.104291,,,1, +28400,Old York Rd & Date St ,40.193884,-75.102211,,,1, +28401,Street Rd & Norwood Av ,40.203933,-75.09509,,,1, +28402,Jacksonville Rd & Steamboat Dr - FS,40.194526,-75.085382,,,1, +28403,Thouron Av & Gorgas Ln,40.072171,-75.170322,,,1, +28404,Rising Sun Av & Chew Av - FS,40.035476,-75.113965,,,1, +28406,Durham Rd & Woodland Av - FS,40.15833,-74.908218,,,1, +28408,Durham Rd & Claymont Av - FS,40.158088,-74.903624,,,1, +28411,Durham Rd & Hollybrooke Dr,40.149176,-74.894288,,,1, +28412,Durham Rd & Frosty Hollow Rd,40.143686,-74.892043,,,1, +28415,New Falls Rd & Durham Rd,40.132357,-74.887298,,,1, +28416,New Falls Rd & New Rodgers Rd,40.13406,-74.884787,,,1, +28418,New Falls Rd & Petunia Rd - MBNS,40.137289,-74.880181,,,1, +28419,New Falls Rd & Plumbridge Dr,40.139461,-74.876932,,,1, +28420,New Falls & Brist Oxf Vly - MBNS,40.140286,-74.875718,,,1, +28421,Bristol Oxford Valley Rd & Mill Dr,40.136574,-74.874018,,,1, +28423,Mill Creek Rd & Brist Oxf Vly - MBFS,40.128174,-74.865737,,,1, +28425,Mill Creek Rd & Blue Ridge Pass,40.130089,-74.86294,,,1, +28426,Green Ln & N Fleetwing Dr,40.12969,-74.855651,,,1, +28429,Green Ln & Pacific Av,40.120491,-74.848563,,,1, +28430,Jacksonville Rd & Van Horn Dr - FS,40.191338,-75.088289,,,1, +28431,Green Ln & Elwood Av,40.119257,-74.846158,,,1, +28432,Jacksonville Rd & Steamboat Dr ,40.194552,-75.085133,,,1, +28435,Beaver Dam Rd & Lakeland Av,40.116517,-74.854016,,,1, +28436,Street Rd & Jacksonville Rd - FS,40.196919,-75.082527,,,1, +28437,Beaver Dam Rd & Venice Av - FS,40.113958,-74.854392,,,1, +28438,Old York Rd & Crescent Rd ,40.184847,-75.10442,,,1, +28444,Easton Rd & Lammott Av ,40.13394,-75.12447,,,1, +28445,Beaver St & Buckley St,40.102147,-74.855954,,,1, +28446,Easton Rd & Hilldale Rd - MBNS,40.115517,-75.139048,,,1, +28447,Easton Rd & Fairfield Rd,40.113584,-75.140937,,,1, +28448,Easton Rd & Pleasant Av ,40.112417,-75.142114,,,1, +28450,Cheltenham Av & Phil Ellena St ,40.07575,-75.161377,,,1, +28451,Cheltenham Av & 18th St ,40.066682,-75.145302,,,1, +28452,Cheltenham Av & Pitville Av ,40.066063,-75.144216,,,1, +28454,Beaver St & Canal St - FS,40.100862,-74.856059,,,1, +28455,Beaver St & Pond St,40.098667,-74.856195,,,1, +28456,Old US 13 & Market St,40.097251,-74.85881,,,1, +28458,Wharton Rd & Rittenhouse Cr,40.117111,-74.883093,,,1, +28459,Rittenhouse Cr & Wharton Rd,40.118295,-74.884446,,,1, +28471,Newportville Rd & Hazel Av - FS,40.117497,-74.902502,,,1, +28472,Newportville Rd & New Falls Rd,40.123859,-74.899887,,,1, +28474,Bensalem Blvd & Gibson Rd - FS,40.120253,-74.906163,,,1, +28475,Bensalem Blvd & Flushing Rd - FS,40.114803,-74.909126,,,1, +28477,Bensalem Blvd & Portside Dr,40.113512,-74.909988,,,1, +28479,Bensalem Blvd & Mt Vernon Dr,40.110672,-74.911867,,,1, +28483,Bensalem Blvd & Ford Rd - FS,40.105545,-74.915206,,,1, +28486,Bridgewater Rd & Bensalem Blvd - FS,40.097937,-74.920881,,,1, +28487,Bridgewater Rd & Trace Dr,40.098451,-74.922297,,,1, +28488,Bridgewater Rd & Winchester Rd,40.10241,-74.925689,,,1, +28489,Bridgewater & Deerfield,40.105738,-74.927678,,,1, +28490,Bridgewater Rd & Ford Rd,40.107412,-74.928802,,,1, +28492,Adams Rd & Ford Rd - FS,40.106406,-74.920679,,,1, +28494,Adams Rd & Byberry Rd,40.110117,-74.926665,,,1, +28495,G St & Luzerne St - MBFS,40.007975,-75.113141,,,1, +28497,Byberry Rd & Hulmeville Rd - FS,40.108801,-74.93716,,,1,0 +28499,Knights Rd & Tucker Rd,40.107532,-74.948139,,,1, +28500,Norris St & Thompson St ,39.97446,-75.123294,,,1, +28501,Butler St & Aramingo Av - FS,39.996175,-75.092231,,,1, +28502,Butler St & Sepviva St ,39.998734,-75.094488,,,1, +28504,Bristol Pk & Penn St,40.070669,-74.967076,,,1, +28505,Bristol Pk & Poquessing Av,40.068892,-74.9693,,,1, +28506,Bristol Pk & Buttonwood Av,40.067666,-74.970952,,,1, +28507,Bristol Pk & Tennis Av,40.066832,-74.972294,,,1, +28517,Bensalem Blvd & Jason Dr,40.108214,-74.91321,,,1, +28520,Bensalem Blvd & Portside Dr,40.113217,-74.909931,,,1, +28531,Rittenhouse Cr & Wharton Rd,40.116907,-74.883237,,,1, +28536,Beaver St & Bristol Pk,40.110603,-74.854667,,,1, +28539,Mill Creek Rd & Bristol-Oxford Valley Rd,40.127759,-74.866676,,,1, +28540,New Falls Rd & Plumbridge Dr,40.139516,-74.877192,,,1, +28541,New Falls Rd & Petunia Rd,40.13846,-74.878739,,,1, +28542,New Falls Rd & Plumtree Rd - MBNS,40.136757,-74.881215,,,1, +28546,Old York Rd & Luzerne St,40.013483,-75.147321,,,1, +28547,Wayne Av & Windrim Av - MBFS,40.021607,-75.160623,,,1, +28548,Wayne Av & Johnson St - MBNS,40.037533,-75.188702,,,1, +28549,Wayne Av & Johnson St - MBFS,40.037426,-75.188797,,,1, +28550,Wayne Av & Clarissa St,40.021312,-75.160376,,,1, +28551,Clarissa St & Wayne Av - MBFS,40.02084,-75.160531,,,1, +28552,Clarissa St & Wayne Av - MBNS,40.021196,-75.160175,,,1, +28553,Richlieu Rd & Greenwood Square,40.121361,-74.960901,,,1, +28555,Richlieu Rd & Country Commons Apts,40.124918,-74.957279,,,1, +28558,Neshaminy Blvd & Neshaminy Valley,40.142348,-74.940422,,,1, +28559,Neshaminy Blvd & 3rd Av,40.142729,-74.939697,,,1, +28561,Neshaminy Blvd & Durham Pl,40.144562,-74.935919,,,1, +28563,Pasqualone Blvd & Declaration Dr,40.144059,-74.932915,,,1, +28567,Pasqualone Blvd & Bensalem Blvd,40.139547,-74.929572,,,1, +28569,Pasqualone Blvd & Springdale Dr,40.134749,-74.926113,,,1, +28571,Pasqualone Blvd & Bristol Rd - FS,40.131831,-74.924038,,,1, +28574,Hulmeville Rd & Florence Rd - FS,40.133954,-74.919216,,,1, +28577,Hulmeville Rd & Bensalem Blvd,40.139138,-74.914372,,,1, +28580,Washington Ln & Fayette St - MBNS,40.068315,-75.157218,,,1, +28581,Walnut Ln & Morton St - MBFS,40.043318,-75.175569,,,1, +28582,Wissahickon Av & Clapier St ,40.018466,-75.1734,,,1, +28583,Wissahickon Av & Abbottsford Av,40.017267,-75.172069,,,1, +28584,Wissahickon Av & Roberts Av - MBFS,40.013665,-75.16947,,,1, +28585,Wissahickon Av & Yelland St ,40.010653,-75.167566,,,1, +28586,Butler St & 15th St ,40.010987,-75.152638,,,1, +28588,Bellevue Av & Neshaminy St,40.143951,-74.912656,,,1, +28592,Bellevue Av & Dehaven Av,40.154828,-74.911772,,,1, +28594,Bellevue Av & Lincoln Hwy,40.158711,-74.911957,,,1, +28596,Bellevue Av & Parkview Av,40.148822,-74.912195,,,1, +28597,Pine St & Watson Av,40.178712,-74.917961,,,1, +28598,Pine St & Winchester Av,40.181536,-74.918735,,,1, +28599,Newtown & Old Mill Dr,40.187988,-74.922835,,,1, +28600,Newtown & Bridgetown Pk,40.190331,-74.926278,,,1, +28601,Newtown Rd & Heaton Mill,40.192552,-74.927922,,,1, +28602,Newtown Rd & Taylor Dr,40.194841,-74.929102,,,1, +28606,Newtown Rd & Tollgate Rd,40.205805,-74.929808,,,1, +28607,Newtown Rd & Summit Trace,40.212638,-74.930803,,,1, +28608,PA 332 & Summit Trace - FS,40.21851,-74.926092,,,1, +28609,Penns Tr & PA 332 Bypass - FS,40.222845,-74.909857,,,1, +28610,Pheasant Run Dr & Penns Tr - FS,40.225526,-74.910668,,,1, +28611,Newtown-Yardley Rd & Terry Dr - FS,40.229829,-74.919516,,,1, +28612,Washington Av & Elm Av,40.228854,-74.925758,,,1, +28613,Lincoln Av & Washington Av - FS,40.228521,-74.931641,,,1, +28614,Lincoln Av & Penn St,40.226442,-74.931928,,,1, +28615,Lincoln Av & Sterling St,40.224122,-74.932205,,,1, +28616,State St & PA 332,40.217239,-74.931802,,,1, +28617,State St & Fountain Farm Ln,40.219135,-74.932761,,,1, +28620,Lincoln Av & Sterling St - FS,40.22438,-74.931954,,,1, +28621,Lincoln Av & Penn St,40.226209,-74.931752,,,1, +28622,Lincoln Av & Washington Av,40.228832,-74.93139,,,1, +28623,Washington Av & Congress St,40.229244,-74.934042,,,1, +28626,S Eagle Rd & Silo Dr,40.234117,-74.940612,,,1, +28627,S Eagle Rd & West Rd,40.235246,-74.941671,,,1, +28628,Swamp Rd & Short Ln,40.235679,-74.954651,,,1, +28629,Swamp Rd & Saw Mill Ln,40.235339,-74.954451,,,1, +28631,S Eagle & Silo Dr,40.234199,-74.941003,,,1, +28632,S Eagle Rd & Swamp Rd,40.230484,-74.940578,,,1, +28634,Washington Av & Congress St - FS,40.229075,-74.93402,,,1, +28635,Washington Av & Elm Av,40.228704,-74.926044,,,1, +28637,Pheasant Run & Penns Trail,40.225282,-74.909899,,,1, +28638,Penns Trail & PA 332,40.22373,-74.910159,,,1, +28639,PA 332 & Summit Trace Rd - FS,40.218664,-74.926648,,,1, +28640,State St & Fountain Farm Ln,40.219261,-74.933068,,,1, +28642,Newtown Langhorne Rd & Summit Trace,40.212835,-74.931027,,,1, +28643,Newtown Langhorne Rd & Green Valley,40.20544,-74.929988,,,1, +28648,Newtown Rd & Heaton Mill,40.192794,-74.928323,,,1, +28650,Newtown Rd & Old Mill Dr,40.189309,-74.924971,,,1, +28651,Pine St & Winchester Av,40.181724,-74.919018,,,1, +28652,Pine St & Watson Av,40.178865,-74.918221,,,1, +28653,Bellevue Av & Durham Rd - FS,40.159676,-74.912211,,,1, +28655,Bellevue Av & Dehaven Av,40.155409,-74.912017,,,1, +28658,Bellevue Av & Parkview Av,40.149055,-74.912383,,,1, +28660,Bellevue Av & Neshaminy St,40.144309,-74.912973,,,1, +28662,Hulmeville Rd & Bensalem Blvd - FS,40.139174,-74.914597,,,1, +28665,Hulmeville Rd & Florence Rd Ln,40.134017,-74.919429,,,1, +28667,Hulmeville Rd & Bristol Rd,40.130744,-74.922293,,,1, +28668,Pasqualone & Bristol Rd,40.131938,-74.92386,,,1, +28670,Pasqualone Blvd & Springdale Dr,40.134641,-74.925794,,,1, +28672,Pasqualone Blvd & Bensalem Blvd - FS,40.140074,-74.92971,,,1, +28676,Pasqualone Blvd & Declaration Dr,40.143619,-74.93235,,,1, +28678,Neshaminy Blvd & Durham Pl,40.144864,-74.935704,,,1, +28680,Neshaminy Blvd & Bristol Rd - 1 MBNS,40.137281,-74.950568,,,1, +28682,Manheim St & McKean Av - MBNS,40.022667,-75.172309,,,1, +28683,Walnut Ln & Baynton St - MBFS,40.043157,-75.175523,,,1, +28685,Richlieu Rd & Country Commons Apts,40.126066,-74.956337,,,1, +28686,Washington Ln & Woolston Av ,40.064404,-75.160675,,,1, +28688,Richlieu Rd & Esssington Way,40.121878,-74.960673,,,1, +28689,Johnson St & Sherman St - FS,40.039479,-75.188896,,,1, +28691,Rising Sun Av & 13th St ,40.003565,-75.150326,,,1, +28692,9th St & Louden St ,40.02496,-75.138966,,,1, +28693,10th St & Wagner Av ,40.034217,-75.139886,,,1, +28694,11th St & Olney Av ,40.037786,-75.139434,,,1, +28695,12th St & Nedro Av ,40.042313,-75.140054,,,1, +28696,Broad St & Rising Sun Av - FS,40.003329,-75.152419,,,1, +28697,Broad St & Courtland St - FS,40.023097,-75.148087,,,1, +28698,Broad St & Albert Einstein Dr,40.036943,-75.145231,,,1, +28699,10th St & Olney Av ,40.037622,-75.138016,,,1, +28700,Rockland St & 9th St ,40.026494,-75.138853,,,1, +28702,North Wales Rd & Bethlehem Pk - FS,40.241309,-75.242615,,,1, +28704,Horsham Rd & Bethlehem Pk - MBNS,40.246798,-75.242565,,,1, +28712,Broad St & Cowpath Rd - FS,40.258568,-75.265435,,,1, +28713,Broad St & Linwood Rd,40.256564,-75.268357,,,1, +28714,Broad St & Medical Campus Dr,40.251929,-75.273632,,,1, +28716,Broad St & 7th St - FS,40.246722,-75.278778,,,1, +28718,Broad St & 5th St - FS,40.244333,-75.281119,,,1, +28720,Broad St & 3rd St,40.242808,-75.282628,,,1, +28721,Broad St & Main St,40.241667,-75.283757,,,1, +28723,Main St & Richardson Av,40.244466,-75.288399,,,1, +28725,Main St & Cannon Av,40.245924,-75.290839,,,1, +28727,Main St & Valley Forge Rd,40.248374,-75.294961,,,1, +28729,Main St & Squirrel Ln,40.250368,-75.298396,,,1, +28730,Welsh Rd & Park Av,40.251951,-75.301073,,,1, +28732,Welsh Rd & Orvilla Rd,40.254043,-75.304532,,,1, +28735,Welsh Rd & Grist Mill Dr - FS,40.261624,-75.316924,,,1, +28740,Forty Foot Rd & Koffel Rd - FS,40.272918,-75.30916,,,1, +28745,Union St & Maple St,40.285116,-75.296789,,,1, +28749,Unionville Pk & N Penn Rd - 1,40.293017,-75.289181,,,1, +28754,County Line Rd & Broad St - MBNS,40.313997,-75.309625,,,1, +28755,Broad St & School Ln - FS,40.31326,-75.313507,,,1, +28757,Broad St & 4th St,40.311657,-75.317343,,,1, +28759,Main St & Chestnut St,40.310224,-75.322247,,,1, +28760,Main St & Green St,40.311815,-75.324868,,,1, +28766,Reliance Rd & 4th St,40.319521,-75.327468,,,1, +28768,Reliance Rd & Main St,40.322696,-75.324318,,,1, +28772,Washington St & Lincoln Av - MBFS,40.326465,-75.326211,,,1, +28780,Washington St & Broad St - FS,40.326947,-75.327267,,,1, +28781,Washington St & Lincoln Av,40.32625,-75.326129,,,1, +28784,Reliance Rd & Main St,40.323106,-75.324186,,,1, +28790,Main St & Summit St - FS,40.313764,-75.328342,,,1, +28791,Main St & Central Av,40.311976,-75.325402,,,1, +28794,Broad St & 4th St,40.311362,-75.317474,,,1, +28795,Broad St & 5th St,40.311763,-75.316607,,,1, +28796,Broad St & School Ln - FS,40.313402,-75.312985,,,1, +28797,County Line Rd & Broad St - MBFS,40.313855,-75.309732,,,1, +28802,Unionville Pk & N Penn Rd,40.293338,-75.289133,,,1, +28806,Unionville Pk & Maple Av,40.285429,-75.296765,,,1, +28816,Welsh Rd & Grist Mill Dr - FS,40.261195,-75.316581,,,1, +28819,Welsh Rd & Orvilla Rd,40.254115,-75.304982,,,1, +28821,Welsh Rd & Park Av,40.25179,-75.301168,,,1, +28822,Main St & Oak Blvd - FS,40.250198,-75.298455,,,1, +28826,Main St & Cannon Av,40.24596,-75.29123,,,1, +28831,Broad St & 3rd St - FS,40.242852,-75.282379,,,1, +28837,Broad St & Medical Center Dr,40.251839,-75.273443,,,1, +28838,Broad St & Lynwood Rd,40.25651,-75.268108,,,1, +28840,Cowpath Rd & Brookside Dr,40.257405,-75.263172,,,1, +28848,North Wales Rd & North Whales Plaza,40.243689,-75.240545,,,1, +28849,North Wales Rd & Bethlehem Pk - FS,40.241078,-75.243374,,,1, +28851,North Gulph Rd & Valley Forge Rd,40.100929,-75.420461,,,1, +28853,Valley Forge Park Dr & Wash Chapel,40.104455,-75.436105,,,1, +28854,Valley Forge Rd & Valley Creek Rd,40.100041,-75.461747,,,1, +28858,Valley Forge Rd & Eastgate Dr,40.106374,-75.477407,,,1, +28862,Valley Forge Rd & Lafayette Rd,40.115377,-75.484822,,,1, +28863,Valley Forge Rd & Pawlings Rd - FS,40.117714,-75.487523,,,1, +28864,Valley Forge Rd & Morehall Dr,40.12044,-75.497894,,,1, +28866,Valley Forge Rd & Whitehorse Rd,40.120089,-75.502936,,,1, +28872,Main St & 5th Av,40.12559,-75.513382,,,1, +28874,Main St & 3rd Av,40.127401,-75.513952,,,1, +28876,Main St & 1st Av,40.129409,-75.514606,,,1, +28877,Main St & Washington Av,40.130426,-75.514915,,,1, +28879,Franklin St & High St,40.137814,-75.518547,,,1, +28880,High St & Fairview St,40.13766,-75.521554,,,1, +28881,High St & Taylor St,40.137355,-75.523945,,,1, +28882,Mowere Rd & Northridge Dr,40.13858,-75.532104,,,1, +28884,Township Line Rd & Szabo Farm Ln,40.137539,-75.53878,,,1, +28885,Schuylkill Rd & Kimberton Rd,40.13233,-75.535197,,,1, +28886,Schuylkill Rd & Otis Ln,40.136928,-75.543361,,,1, +28888,Schuylkill Rd & Mowere Rd - FS,40.140237,-75.546646,,,1, +28889,Schuylkill Rd & Ridge Rd,40.144323,-75.54844,,,1, +28891,Schuylkill Rd & Hares Hill Rd,40.154005,-75.551535,,,1, +28892,Schuylkill Rd & Spring Hollow Rd,40.158636,-75.553154,,,1, +28895,Schuylkill Rd & Park Rd,40.173813,-75.558404,,,1, +28896,New St & Vincent Heights Cr - MBFS,40.175698,-75.556986,,,1, +28898,New St & Penn St,40.178051,-75.551268,,,1, +28899,New St & Church St,40.178946,-75.549137,,,1, +28900,Main St & Yost St - MBFS,40.180973,-75.54824,,,1, +28903,Main St & 1st Av - MBFS,40.182932,-75.543434,,,1, +28905,Main St & 3rd Av,40.183568,-75.541006,,,1, +28906,Main St & 4th Av,40.185015,-75.539196,,,1, +28907,Main St & 5th Av,40.186293,-75.537657,,,1, +28909,Main St & 7th Av,40.188884,-75.534522,,,1, +28910,Main St & Lewis Rd,40.19085,-75.532143,,,1, +28919,Main St & Lewis Rd,40.19118,-75.532037,,,1, +28922,Main St & 5th Av,40.186641,-75.53754,,,1, +28923,Main St & 4th Av,40.185337,-75.539101,,,1, +28924,Main St & 3rd Av,40.184291,-75.540379,,,1, +28925,Main St & 2nd Av,40.183343,-75.542285,,,1, +28928,Main St & Yost St,40.180606,-75.548346,,,1, +28929,New St & Church St,40.179196,-75.548972,,,1, +28930,New St & Penn St,40.178283,-75.551174,,,1, +28932,Main St & Schuykill Rd - MBNS,40.175903,-75.556927,,,1, +28933,Schuylkill Rd Rd & Hill Church Rd,40.174027,-75.558748,,,1, +28936,Schuylkill Rd & Bonnie Brae Rd,40.158591,-75.553367,,,1, +28937,Schuylkill Rd & Hares Hill Rd - MBFS,40.152264,-75.551177,,,1, +28939,Schuylkill Rd & Ridge Rd,40.143573,-75.548522,,,1, +28942,Schuylkill Rd & Shops Valley Forge,40.136143,-75.542922,,,1, +28943,Township Line Rd & Westridge Dr,40.137406,-75.538626,,,1, +28945,Mowere Rd & Westridge Dr,40.138454,-75.533418,,,1, +28946,High St & Taylor St,40.137176,-75.524205,,,1, +28947,High St & Fairview St,40.137464,-75.521849,,,1, +28948,High St & Franklin St,40.137876,-75.518772,,,1, +28951,Main St & Washington Av,40.130569,-75.515187,,,1, +28952,Main St & 1st Av,40.129569,-75.514878,,,1, +28954,Main St & 3rd Av,40.127642,-75.514261,,,1, +28956,Main St & 5th Av - FS,40.125456,-75.51356,,,1, +28957,Main St & Nutt Rd,40.124126,-75.51312,,,1, +28962,Valley Forge Rd & Whitehorse Rd,40.119946,-75.503362,,,1, +28964,Valley Forge Rd & Dorchester Way,40.120261,-75.498178,,,1, +28965,Valley Forge Rd & Pawlings Rd,40.1175,-75.487522,,,1, +28966,Valley Forge Rd & Lafayette Dr,40.115216,-75.484929,,,1, +28970,Valley Forge Rd & Eastgate Dr,40.106463,-75.477774,,,1, +28972,Valley Forge Rd & Valley Creek Rd,40.099872,-75.461428,,,1, +28975,Valley Forge Park Dr & Wash Chapel,40.104169,-75.438661,,,1, +28977,North Gulph Rd & Valley Forge Rd,40.10075,-75.420567,,,1, +28978,Goddard Blvd & Lockheed Martin,40.091937,-75.399389,,,8, +28979,Goddard Blvd & North Gulph Rd,40.088958,-75.408347,,,1, +28980,Goddard Blvd & North Gulph Rd - FS,40.089119,-75.408039,,,8, +28981,Goddard Blvd & Lockheed Martin - 2,40.091169,-75.397319,,,8, +28985,State Rd & Hemlock Av,40.068135,-74.948333,,,1, +28987,State Rd & Imperial Ct,40.069987,-74.942466,,,1, +28988,State Rd & Camer Dr,40.071323,-74.939334,,,1, +28989,State Rd & American Dr,40.073268,-74.934813,,,1, +28994,Dunks Ferry Rd & Marshall Ln,40.082372,-74.928031,,,1, +28995,Dunks Ferry Rd & Clive Av,40.083073,-74.929138,,,1, +28996,Winks Ln & Marshall La - MBFS,40.082778,-74.92009,,,1, +29032,Marshall Ln & Dunks Ferry Rd,40.082461,-74.927782,,,1, +29034,Dunks Ferry Rd & Progress Dr,40.083486,-74.929798,,,1, +29038,State Rd & American Dr,40.07365,-74.934338,,,1, +29039,State Rd & Camer Dr - MBNS,40.071988,-74.938217,,,1, +29040,State Rd & Imperial Ct,40.070236,-74.94231,,,1, +29042,State Rd & Hemlock Av,40.068295,-74.948036,,,1, +29043,State Rd & Station Av,40.068294,-74.95013,,,1, +29045,Station Av & Bristol Pk,40.07608,-74.953284,,,1, +29046,Bristol Pk & Gravel Pk,40.074651,-74.96019,,,1, +29047,Welsh Rd & Computer Av - MBNS,40.154486,-75.138889,,,1, +29048,Electronic Dr & Welsh Rd - MBFS,40.161403,-75.146891,,,1, +29049,Gibraltar Rd & Dresher Rd - MBFS,40.174136,-75.137163,,,1, +29050,Rock Rd & Prudential Rd - MBFS,40.169547,-75.136767,,,1, +29051,Gibralter Rd & Prudential Rd - MBFS,40.171474,-75.132436,,,1, +29052,Blair Mill Rd & Witmer Rd - 2 MBFS,40.162391,-75.137554,,,1, +29053,Welsh Rd & Computer Rd ,40.154701,-75.139457,,,1, +29054,Moreland Rd & Kimball Av ,40.151726,-75.134566,,,1, +29065,Pennsylvania Av & Holiday Inn,40.135285,-75.208286,,,1, +29074,Commerce Dr & Best Western Hotel,40.136046,-75.199582,,,1, +29080,Virginia Dr & #565 Bldg,40.136068,-75.187435,,,1, +29084,Virginia Dr & #1075 Bldg,40.136596,-75.179311,,,1, +29085,Virginia Dr & DeVry University,40.136996,-75.178493,,,1, +29086,Virginia Dr & ADP Bldg,40.138516,-75.175196,,,1, +29112,Virginia Dr & Ally Bank,40.138881,-75.174745,,,1, +29113,Virginia Dr & DeVry University,40.137317,-75.178136,,,1, +29116,Virginia Dr & #550 Bldg,40.136211,-75.18799,,,1, +29117,Virginia Dr & 500 518 Bldg,40.13713,-75.19225,,,1, +29118,Delaware Dr & #420 Bldg,40.136636,-75.195531,,,1, +29120,Commerce Dr & #220 Bldg,40.137943,-75.202382,,,1, +29121,Commerce Dr & #185 Bldg,40.137616,-75.203922,,,1, +29183,Lincoln Hwy & Chester Valley Rehab ,40.042482,-75.50346,,,1, +29184,Lincoln Hwy & Woodview Way,40.043289,-75.511962,,,1, +29186,Morehall Rd & Wyeth Dr - MBFS,40.047217,-75.523531,,,1, +29187,Matthews Rd & Morehall Rd - MBNS,40.050207,-75.523665,,,1, +29189,Swedesford Rd & Valley Stream Pkwy,40.055522,-75.517783,,,1, +29190,Swedesford Rd & Chesterfield Pkwy,40.056559,-75.515691,,,1, +29191,Liberty Blvd & Morehall Rd - FS,40.054721,-75.526852,,,1, +29192,Valley Stream Pkwy & Swedesford Rd -FS,40.056066,-75.517748,,,1, +29197,Morehall Rd & Wyeth Dr,40.046512,-75.523578,,,1, +29199,Lincoln Hwy & Sunrise Asstd Living,40.043057,-75.512116,,,1, +29202,Lancaster Av & Morehall Rd - FS,40.043923,-75.524969,,,1, +29206,Lincoln Hwy & Beechwood Av - FS,40.039019,-75.550501,,,1, +29207,Lincoln Hwy & Church Rd - FS,40.037834,-75.557664,,,1, +29208,Lincoln Hwy & Sproul Rd,40.037501,-75.559733,,,1, +29209,Lincoln Hwy & Apple Ln,40.037025,-75.562569,,,1, +29211,Lincoln Hwy & Planebrook Rd - FS,40.035383,-75.571079,,,1, +29216,Gordon Dr & Pickering Way,40.057613,-75.648065,,,1, +29217,Welsh Pool Dr & Pickering Rd - FS,40.05878,-75.644331,,,1, +29221,Uwchlan Av & Sherree Blvd - MBFS,40.060397,-75.653774,,,1, +29226,Eagleview Blvd & Building No 1,40.05912,-75.672976,,,1, +29227,Eagleview Blvd & Building No 2,40.061285,-75.675408,,,1, +29229,Eagleview Blvd & Pennsylvania Dr - FS,40.065116,-75.678544,,,1, +29231,Eagleview Blvd & Constitution Dr - FS,40.066617,-75.677662,,,1, +29232,Eagleview Blvd & Pennsylvania Dr - FS,40.064847,-75.679075,,,1, +29234,Eagleview Blvd & Building 420,40.061293,-75.675763,,,1, +29236,Eagleview & Sherree Blvds,40.056163,-75.665445,,,1, +29241,Welsh Pool Rd & Gordon Dr,40.061688,-75.650525,,,1, +29242,Welsh Pool Rd & Phillips Dr FS,40.06232,-75.64621,,,1, +29244,Gordon Dr & Pickering Way - FS ,40.057408,-75.648159,,,1, +29247,Pottstown Pk & Worthington Rd,40.054839,-75.641741,,,1, +29250,Lincoln Hwy & Planebrook Rd,40.035294,-75.570877,,,1, +29252,Lincoln Hwy & Apple Ln,40.036784,-75.563042,,,1, +29253,Lincoln Hwy & Sproul Rd - FS,40.03735,-75.559614,,,1, +29254,Lincoln Hwy & Church Rd - FS,40.037835,-75.556659,,,1, +29256,Lincoln Hwy & Beechwood Av - FS,40.039164,-75.548551,,,1, +29263,Swedesford Rd & 52 Building,40.054941,-75.519402,,,1, +29264,Swedesford Rd & Trinity Corp Ctr,40.056094,-75.516175,,,1, +29269,Great Valley Pkwy & 27 43 Bldg,40.063938,-75.540786,,,1, +29271,Great Valley Pkwy & 77 123 Bldg,40.062756,-75.545479,,,1, +29272,Great Valley Pkwy & 155 Bldg,40.060383,-75.544494,,,1, +29273,Great Valley Pkwy & 125 Bldg,40.061684,-75.546246,,,1, +29274,Great Valley Pkwy & 201 Bldg,40.060616,-75.543583,,,1, +29275,Great Valley Pkwy & 257 275 Bldg,40.061449,-75.540214,,,1, +29276,Great Valley Pkwy & Technology Dr,40.062021,-75.538737,,,1, +29277,Great Valley Parkway & Morehall Rd,40.06363,-75.535723,,,1, +29278,Valley Stream Pkwy & 40 Bldg,40.05816,-75.522552,,,1, +29281,Liberty Blvd & 45 Building,40.055892,-75.523921,,,1, +29282,Liberty Blvd & Desmond Hotel,40.055132,-75.526593,,,1, +29300,Cedar Hollow Rd & Jacqueline Dr,40.04834,-75.498062,,,1, +29301,Cedar Hollow Rd & Vanguard Blvd,40.051357,-75.498964,,,1, +29304,Cedar Hollow Rd & Vanguard Blvd - FS,40.05133,-75.499176,,,1, +29305,Cedar Hollow Rd & Industrial Blvd,40.048064,-75.498156,,,1, +29323,High St & Lexington Av,39.942511,-75.591713,,,1, +29347,Fern Hill Rd & Turner Ln - FS,39.97558,-75.590429,,,1, +29350,Five Points Rd & Lawrence Dr,39.981117,-75.587405,,,1, +29353,Ward Av & UPS Facility,39.988677,-75.579683,,,1, +29359,Wilson Dr & Brandywine Pkwy,39.995173,-75.580878,,,1, +29360,QVC Facility,39.993403,-75.583497,,,1, +29361,Wilson Dr & Mars Corporation,39.997506,-75.57735,,,1, +29365,Airport Rd & American Blvd.,39.993749,-75.577826,,,1, +29368,Ward Av & UPS Facility,39.988864,-75.579683,,,1, +29371,Five Points Rd & Lawrence Dr,39.981125,-75.587783,,,1, +29387,Essington Av & 68th St,39.910833,-75.22248,,,1, +29388,Essington Av & 69th St - FS,39.908067,-75.223291,,,1, +29389,61st St & Passyunk Av - FS,39.918745,-75.209556,,,1,0 +29390,Lindbergh Blvd & Eastwick Av - MBFS,39.914989,-75.226304,,,1, +29391,Lindbergh Blvd & 69th St,39.912574,-75.228624,,,1, +29392,Lindbergh Blvd & 71st St,39.910419,-75.231664,,,1, +29393,Lindbergh Blvd & 73rd St,39.908111,-75.233948,,,1, +29394,Lindbergh Blvd & Suffolk Av - FS,39.904575,-75.238772,,,1, +29396,Industrial Hwy & Stewart Av - MBFS,39.86527,-75.318385,,,1, +29397,Industrial Hwy & Sea Knight St,39.864273,-75.322019,,,1, +29398,Industrial Hwy & Saville Av - MBNS,39.857469,-75.340133,,,1, +29399,255 Business Center Dr ,40.167622,-75.149591,,,1, +29400,455 555 Business Center Dr ,40.168473,-75.151021,,,1, +29401,250 Business Center Dr ,40.167371,-75.149284,,,1, +29402,5 Walnut Grove ,40.167008,-75.142475,,,1, +29405,Industrial Hw & Wanamaker Av - MBFS,39.866978,-75.303827,,,1, +29406,Industrial Hw & Wanamaker Av - MBFS,39.867079,-75.306375,,,1, +29407,Industrial Hwy & Sellers Av - FS,39.865999,-75.315435,,,1, +29408,Industrial Hwy & Saville Av - MBFS,39.856721,-75.342056,,,1, +29419,Industrial Hwy & Wanamaker Av - FS,39.86685,-75.301174,,,1, +29432,10th St & Packer Av - FS,39.911225,-75.165473,,,1, +29433,Moyamensing & Packer Av - FS,39.912876,-75.182735,,,1, +29434,Penrose Av & Pattison Av,39.907749,-75.190023,,,1, +29435,Bartram Av & Island Rd - MBFS,39.89384,-75.239037,,,1, +29437,Tinicum Island Rd & Stevens Dr,39.86483,-75.273991,,,1, +29438,Bartram Av & 84th St - MBFS,39.892664,-75.240527,,,1, +29439,Island Av & Penrose Av - MBFS,39.888467,-75.233187,,,1,0 +29440,Island Av & Escort Av - MBFS,39.881973,-75.229819,,,1, +29441,Enterprise Av & Island Av - FS,39.881408,-75.22798,,,1, +29443,UPS Employment Office,39.862591,-75.242257,,,1,0 +29444,Penrose & Pattison Av - MBNS,39.907155,-75.190714,,,1, +29445,Penrose Av & Hartranft St - FS,39.910686,-75.185504,,,1, +29446,Packer Av & 13th St ,39.91137,-75.170513,,,1, +29447,1000 Tinicum Island Rd - MBNS,39.871082,-75.271347,,,1, +29448,Tinicum Island Rd & Stevens Dr ,39.864553,-75.274475,,,1, +29449,Main St & Highland Av - MBFS,40.234744,-75.272461,,,1, +29450,Main St & Lansdale Av ,40.2358,-75.274272,,,1, +29451,Industrial Hwy & Baldwin Creek,39.859001,-75.335319,,,1, +29452,Industrial Hwy & Seaknight Av,39.863943,-75.322067,,,1, +29453,Industrial Hwy & Sellers Av - MBFS,39.866718,-75.311542,,,1, +29454,Industrial Hwy & Sellers Av - MBFS,39.866948,-75.309041,,,1, +29455,Industrial Hwy & Wanamaker Av - MBNS,39.86682,-75.305797,,,1, +29456,Industrial Hwy & Wanamaker Av - MBNS,39.866737,-75.303792,,,1, +29457,Holstein Av & Bartram Av - FS,39.895964,-75.23345,,,1, +29458,Lindbergh Blvd & 74th St - MBFS,39.907772,-75.233842,,,1, +29459,Lindbergh Blvd & 72nd St - MBFS,39.910089,-75.231606,,,1, +29460,Lindbergh Blvd & 70th St - MBFS,39.912164,-75.228685,,,1, +29462,Main St & Oakland Av,40.23232,-75.268056,,,1, +29463,Main St & Highland Av - MBNS,40.234923,-75.272413,,,1, +29464,Morris Rd & Primrose Dr - FS,40.196438,-75.299206,,,1, +29466,Pen Ambler Rd & Stafford Dr ,40.168374,-75.24232,,,1, +29470,Stanbridge St & Beech St,40.126296,-75.348993,,,1, +29471,Swede Rd & Hilltop Av,40.14713,-75.316016,,,1, +29473,Germantown Pk & Pleasant Rd,40.127243,-75.296988,,,1, +29474,Germantown Pk & Arch Rd - MBFS,40.138464,-75.307694,,,1, +29475,Stanbridge St & Beech St,40.126582,-75.348957,,,1, +29476,Ridge Pk & Church Rd,40.154827,-75.400475,,,1, +29477,Main St & Rose Av,40.139132,-75.38586,,,1, +29479,Main St & Rose Av - FS,40.139248,-75.385706,,,1, +29480,Ridge Pk & Mt Kirk Av - FS,40.155604,-75.40128,,,1, +29482,Goshen Rd & Sylvania Ln,39.975758,-75.597446,,,1, +29483,Swedesford Rd & W Valley Rd ,40.072475,-75.429667,,,6, +29484,Swedesford Rd & W Valley Rd - FS,40.073974,-75.428236,,,6, +29485,Lancaster Av & Bear Hill Rd - 2,40.042155,-75.478653,,,1, +29486,King Rd & Alumnae Dr ,40.026512,-75.570482,,,1, +29487,Lincoln Hwy & Rt 202 ,40.033423,-75.583334,,,1, +29488,Lincoln Hwy & Ship Rd - MBFS,40.029834,-75.611096,,,1, +29491,Ridge Pk & Connicelli Honda,40.101949,-75.306585,,,1, +29492,Ridge Pk & Vist Corporation,40.096843,-75.297743,,,1, +29494,Ridge Pk & Butler Pk - MBNS,40.094522,-75.289062,,,1, +29495,Feheley Dr & Church Rd - MBFS,40.091614,-75.338727,,,1, +29496,Butler Pk & 15th Av,40.085719,-75.29451,,,1, +29497,Chelsea Pkwy & Chichester Av - FS,39.851716,-75.452652,,,1, +29500,Feheley Dr & Hertzog Blvd - FS,40.091355,-75.338786,,,1, +29501,2100 Renaisance Blvd - MBFS,40.083561,-75.335933,,,1, +29502,2000 Renaisance Blvd - MBFS,40.082667,-75.334171,,,1, +29508,Elm St & Poplar St - MBFS,40.072623,-75.300511,,,1, +29509,Ridge Pk & Industrial Way,40.102512,-75.307779,,,1, +29511,Swede St & Basin St,40.123532,-75.34,,,1, +29512,DeKalb Pk & Germantown Pk - MBFS,40.143002,-75.311452,,,1, +29513,Walnut St & 2nd St,40.211382,-75.277857,,,1, +29514,Walnut St & Beaver St,40.216334,-75.275524,,,1, +29515,DeKalb Pk & Greycliffe Ln - MBFS,40.190097,-75.266267,,,1, +29516,DeKalb Pk & Skippack Pk -MBFS,40.164476,-75.292904,,,1, +29517,Walnut St & 2nd St - FS,40.211383,-75.278094,,,1, +29523,MacDade Blvd Station,39.910282,-75.280832,,,1, +29526,Main St & Washington Av - FS,40.209316,-75.273951,,,1, +29529,DeKalb Pk & Greycliffe Ln - MBNS,40.189589,-75.266411,,,1, +29532,Walton Rd & Treaty Rd - FS,40.129251,-75.281299,,,1, +29553,52nd St & Rexford Rd,39.996536,-75.232205,,,1, +29554,Essex Av & Montgomery - FS,40.013329,-75.26725,,,1, +29555,Essex Av & Dudley St - FS,40.012489,-75.266543,,,1, +29556,Hagys Ford Rd & Tower Ln - MBNS,40.027511,-75.25347,,,1, +29557,Hagys Ford Rd & Tower Ln,40.026568,-75.255706,,,1, +29558,Hagys Ford Rd & Flat Rock Rd - MBFS,40.029152,-75.253016,,,1, +29559,Conshohocken State Rd & Manayunk Rd,40.01885,-75.245217,,,1, +29560,Conshohocken & Dartmouth - FS,40.016726,-75.238875,,,1, +29561,Conshohocken State Rd & Rockhill Rd,40.017441,-75.239594,,,1, +29562,Conshohocken State Rd & Derwen Rd,40.012383,-75.235353,,,1, +29563,Conshohocken State Rd & Overhill Rd,40.015171,-75.237544,,,1, +29565,Bala Av & Montgomery Av,40.00647,-75.232462,,,1, +29566,Bala Av & Highland Av,40.005104,-75.232206,,,1, +29567,Bala Av & Highland Av,40.004996,-75.232052,,,1, +29568,Conshohocken State Rd & Bala Av,40.007452,-75.232613,,,1, +29569,Hagys Ford Rd & Tower Ln - MBFS,40.027395,-75.253434,,,1, +29570,Hagys Ford Rd & Bobarn Rd - MBFS,40.036274,-75.25943,,,1, +29571,Hagys Ford Rd & Chermar Ln ,40.038023,-75.258539,,,1, +29572,Oakwood Dr & Oakwood Ter - FS,40.038869,-75.257485,,,1, +29573,Oakwood Dr & Oakwood Ter,40.038994,-75.257508,,,1, +29574,Hagys Ford Rd & Chermar Ln - FS,40.03813,-75.258681,,,1, +29575,Hagys Ford Rd & Bobarn Dr - MBNS,40.036257,-75.259596,,,1, +29576,Montgomery Av & Meeting House Ln,40.0096,-75.255003,,,1, +29577,Montgomery Av & Woodbine Av,40.010272,-75.256868,,,1, +29578,Montgomery Av & Brookhurst Av,40.010989,-75.258911,,,1, +29579,Montgomery Av & Old Gulph Rd - FS,40.012351,-75.262678,,,1, +29582,Montgomery Av & Narberth Av,40.012181,-75.262596,,,1, +29583,Montgomery Av & Price Av,40.011285,-75.260092,,,1, +29584,Montgomery Av & Woodbine Av,40.010264,-75.257247,,,1, +29585,Montgomery Av & Meetinghouse Ln,40.009645,-75.255499,,,1, +29588,Oxford Valley Rd & Fairless Plz ,40.17134,-74.852177,,,1, +29589,Lincoln Hwy & Woodbourne Rd - MBFS,40.174303,-74.888248,,,1, +29590,Middletown Blvd & Oxford Sq,40.185197,-74.885109,,,1, +29591,Middletown Blvd & Penn Square,40.186361,-74.883773,,,1, +29592,Olds Blvd & Grundy Gardens ,40.171382,-74.847861,,,1, +29593,Walton Rd & Treaty Rd ,40.129144,-75.281133,,,1, +29594,Pennsylvania Av & Park Av ,40.119323,-75.182899,,,1, +29595,Noth Hills Av & Limeklin Pk ,40.116211,-75.166445,,,1, +29596,Fitzwatertown Rd & Grisdale Av ,40.136021,-75.147986,,,1, +29597,Fitzwatertown Rd & Galloway Av ,40.141052,-75.138506,,,1, +29598,Fitzwatertown Rd & Banner Rd ,40.141195,-75.138813,,,1, +29599,Fitzwatertown Rd & Oklahoma Rd ,40.147539,-75.130451,,,1, +29600,Pennsylvania Av & Layfayette Av,40.119717,-75.183217,,,1, +29601,Hulmeville Rd & Bensalem Blvd ,40.140331,-74.91357,,,1, +29603,Bristol Pk & Appleton Av - MBNS,40.089185,-74.926528,,,1, +29604,State Rd & Central Av - FS,40.091001,-74.890664,,,1, +29605,State Rd & Oak Av,40.092232,-74.886502,,,1, +29606,State Rd & Mack Rd - MBFS,40.094888,-74.879287,,,1, +29607,Mall Blvd & Ballys,40.090873,-75.390657,,,3, +29610,Swedesford Rd & South Warner Rd - FS,40.082084,-75.402221,,,6, +29612,Mast Charter School,40.114101,-75.005073,,,1, +29613,Lincoln Hwy & Linden Av - FS,40.160818,-74.909739,,,1, +29614,Lincoln Hwy & Linden Av - MBFS,40.163324,-74.905031,,,1, +29615,Lincoln Hwy & Highland Park Way,40.171284,-74.891824,,,1, +29616,Lincoln Hwy & Woodbourne Rd - MBNS,40.174444,-74.887773,,,1, +29617,Middletown Blvd & Oxford Sq ,40.184964,-74.884802,,,1, +29618,Middletown Blvd & Penn Square ,40.186146,-74.883566,,,1, +29619,Oxford Valley Rd & Bedford Rd ,40.177549,-74.86517,,,1, +29620,Oxford Valley Rd & Devon Rd ,40.176385,-74.862194,,,1, +29621,Oxford Valley Rd & Olds Blvd - MBNS,40.171225,-74.852332,,,1, +29622,Olds Blvd & Oxford Valley Rd - MBFS,40.170095,-74.849191,,,1, +29626,Egypt Rd & Trooper Rd - FS,40.130844,-75.400757,,,1,0 +29627,Bellevue Av & McCarthy Dr,40.145405,-74.912587,,,1, +29628,Newtown Rd & Tollgate Rd - MBFS,40.206868,-74.929872,,,1, +29629,Newtown Rd & Newtown Bypass,40.216515,-74.931546,,,1, +29630,Washington Av & Norwood Av,40.228982,-74.928662,,,1, +29631,Bristol Pk & Hampton Inn,40.072131,-74.964157,,,1, +29632,Byberry Rd & Knights Rd - MBFS,40.11028,-74.94328,,,1, +29633,Byberry Rd & Bridgewater Rd - MBNS,40.108231,-74.930655,,,1,0 +29634,Ford Rd & Bridgewater Rd - MBNS,40.10717,-74.926484,,,1, +29636,Bristol-Oxford Valley Rd & Brittany Dr,40.130205,-74.868929,,,1, +29638,Durham Rd & Green Meadow Dr,40.139537,-74.890429,,,1, +29639,Durham Rd & Hollybrook Rd,40.148835,-74.893888,,,1, +29641,Durham Rd & Green Meadow Dr ,40.14003,-74.890816,,,1, +29642,New Falls Rd & Petunia Rd - MBFS,40.138619,-74.878217,,,1, +29643,Bristol Oxf Vly Rd & Brittany Springs - FS,40.130287,-74.869272,,,1, +29644,Beaver Dam Rd & Plymouth Av ,40.119244,-74.851094,,,1, +29645,Beaver St & Third St,40.107295,-74.855368,,,1, +29646,Pond St & Grundy Tower Dr ,40.097868,-74.857124,,,1, +29647,Trooper Rd & Egypt Rd - FS,40.130175,-75.40232,,,1,0 +29649,Washington St & Ridge Av ,40.329048,-75.330731,,,1, +29650,Washington St & Madison Av ,40.324954,-75.324041,,,1, +29651,Unionville Pk & Bethlehem Pk - MBFS,40.295068,-75.287421,,,1, +29652,Forty Foot Rd & Elroy Rd - FS,40.272543,-75.309825,,,1, +29654,Mill St & Pond St,40.096218,-74.859279,,,1, +29655,Radcliffe St & Franklin St - FS,40.096951,-74.851771,,,1, +29656,Radcliffe St & Dorrance St,40.09773,-74.850298,,,1, +29657,Pond St & Farragut St,40.104923,-74.844299,,,1, +29658,Radcliffe St & Monroe St - FS,40.104222,-74.841429,,,1, +29659,Radcliffe St & Seabird Dr,40.108265,-74.837596,,,1, +29660,Woodbourne Rd & Wister Rd - MBNS,40.163235,-74.871726,,,1, +29661,Woodbourne Rd & Wister Rd - MBFS,40.162841,-74.871623,,,1, +29662,Radcliffe St & Seabird Dr,40.108622,-74.837523,,,1, +29663,Radcliffe St & Monroe St,40.10433,-74.841593,,,1, +29664,Radcliffe St & Dorrance St,40.098068,-74.850058,,,1, +29665,State Rd & Mack Dr,40.094571,-74.880461,,,1, +29666,State Rd & Central Av,40.091188,-74.890639,,,1, +29667,State Rd & Chruch St ,40.089445,-74.896426,,,1, +29670,Bristol Pk & Wildman Av,40.076076,-74.95468,,,1, +29671,Galloway Rd & Richlieu Rd - MBNS,40.126591,-74.941926,,,1, +29672,Bristol Pk & Clarmont Av,40.074082,-74.960702,,,1, +29673,State Rd & Wicker St,40.068917,-74.944945,,,1, +29676,Dunks Ferry Rd & Street Rd,40.082825,-74.931967,,,1, +29677,Marshall Ln & Winks Ln - MBNS,40.084311,-74.9239,,,1, +29685,Marshall Ln & Winks Ln - MBFS,40.084525,-74.923875,,,1, +29688,State Rd & Wicker Av,40.069219,-74.944683,,,1, +29691,Bucks County Community College - 2,40.239262,-74.965298,,,1, +29693,Washington Av & Norwood Av - FS,40.228821,-74.92858,,,1, +29694,Newtown Langhorne Rd & Pennwood Vil,40.207324,-74.930176,,,1, +29695,New St & Wall St ,40.176933,-75.553896,,,1, +29696,Broad St & Hatfield St - FS,40.249254,-75.276282,,,1, +29697,Main St & Green St -LansTransCtr,40.24291,-75.285817,,,1, +29698,Unionville Pk & N Penn Rd - 2 MBFS,40.294907,-75.287433,,,1, +29699,Washington St & Ridge Av - FS,40.32928,-75.330766,,,1, +29707,Springdale Dr & & I F M Co,40.027213,-75.602495,,,1, +29708,Springdale Dr & Springdale Dr,40.028119,-75.599459,,,1, +29709,Springdale Dr & Lincoln Hwy - MBNS,40.029983,-75.600008,,,1, +29710,Springdale Dr & Old Lincoln Hwy - MBFS,40.029849,-75.600185,,,1, +29711,Springdale Dr & Springdale Dr,40.028485,-75.599389,,,1, +29712,757 Springdale Dr,40.02773,-75.602887,,,1, +29713,Springdale Dr & Belden Blvd - FS,40.02935,-75.606118,,,1, +29715,Earlington Rd & Brentwood Rd ,39.972798,-75.286903,,,1, +29716,Montgomery Av & Bleddyn Rd,40.010386,-75.291615,,,1, +29717,Market St & Worthington St,39.963318,-75.596118,,,1, +29718,West Chester Pk & Falcon Ln - MBFS,39.967081,-75.552778,,,1, +29719,West Chester Pk & Valley Dr - FS,39.966032,-75.548111,,,1, +29720,West Chester Pk & Sagewood Dr,39.965424,-75.486184,,,1, +29721,West Chester & Whispering Brooke Dr - FS,39.967881,-75.478887,,,1, +29722,Rock Ridge Rd & West Chester Pk - FS,39.97619,-75.440902,,,1,0 +29725,Valley Forge Rd & Mancill Mill Rd,40.105256,-75.408697,,,8, +29726,Valley Forge Rd & 5th Av - FS,40.103899,-75.404011,,,8, +29730,PNC Exit to Valley Forge,40.104721,-75.409016,,,8, +29731,Valley Forge Rd & Vandenberg Blvd,40.10372,-75.40207,,,8, +29732,14 Campus Blvd,39.977779,-75.418138,,,1, +29733,10 Campus Blvd - FS,39.976779,-75.416295,,,1, +29734,2 Campus Blvd,39.977493,-75.414074,,,1, +29735,11 Campus Blvd - FS,39.977065,-75.416709,,,1, +29736,15 Campus Blvd - FS,39.978154,-75.418008,,,1, +29738,Crum Creek Rd & West Chester Pk - FS,39.976717,-75.437736,,,1, +29740,Rock Ridge Rd & West Chester - MBNS,39.975976,-75.441055,,,1, +29741,West Chester Pk & Sagewood Rd,39.965763,-75.486066,,,1, +29742,West Chester Pk & Ellis Ln - MBNS,39.967429,-75.552992,,,1, +29744,South Av & New Orleans Apartments,39.910767,-75.308707,,,1, +29746,Oak Ln & Cambridge Rd,39.926164,-75.301681,,,1, +29747,Bishop Av & Sycamore Av,39.937487,-75.307671,,,1, +29750,Shadeland & Plumstead Av,39.941465,-75.28869,,,1, +29751,Long Ln & Fairfield Av,39.960309,-75.262622,,,1, +29752,Marshall Rd & Jackson Av,39.950265,-75.273451,,,1, +29753,Oak Av & Cambridge Circle,39.926656,-75.302341,,,1, +29754,Lancaster Av & Midland Av - MBFS,40.047921,-75.437826,,,1, +29755,Lancaster Av & Devon Blvd ,40.046109,-75.422372,,,1, +29756,Lancaster Av & Farm Rd ,40.04407,-75.395555,,,1, +29757,Lancaster Av & County Line Rd ,40.02612,-75.328005,,,1, +29758,Lancaster Av & Booth La - FS,40.014747,-75.304868,,,1, +29759,Wynnewood Rd & Lancaster Av ,40.001426,-75.276211,,,1, +29760,Lancaster Av & Old Lancaster Av,40.016589,-75.308186,,,1, +29761,Lancaster Av & County Line Rd ,40.02654,-75.328395,,,1, +29762,Lancaster Av & Farm Rd ,40.044231,-75.395543,,,1, +29763,Lancaster Av & Devon Blvd ,40.046377,-75.422171,,,1, +29765,Lancaster Av & Central Av ,40.042039,-75.498387,,,1, +29766,Dennison Av & Abbey Terrace,39.936251,-75.287082,,,1, +29767,Shadeland Av & Bryn Mawr Av ,39.937527,-75.286478,,,1, +29769,Sproul Rd & Thomson Av - MBNS,39.924043,-75.34856,,,1, +29770,Woodland Av & Eaton Av - MBFS,39.911715,-75.331355,,,1, +29774,Pennsylvania Av & Summit Av,40.136708,-75.210661,,,1, +29778,Bridge St & Main St ,40.181651,-75.548135,,,1, +29779,Goddard Blvd & Lockheed Martin - 1,40.092,-75.399779,,,1, +29782,Mall Blvd & Pulaski Dr,40.086778,-75.396575,,,6, +29783,Mall Blvd & Pulaski Rd ,40.086822,-75.396232,,,6, +29784,Henderson Rd & South Gulph Rd Mbns ,40.076548,-75.353521,,,6, +29787,Bethlehem Pk & Montgomery Av,40.09223,-75.214418,,,1, +29788,Great Valley Pkwy & #45 67 Bldg,40.063347,-75.543138,,,1, +29789,Chester Rd & I476 - MBNS,39.888411,-75.355149,,,1, +29790,Argyle Rd & Simpson Rd - FS,40.005912,-75.288515,,,1,0 +29791,Argyle Rd & Sussex Rd ,39.999223,-75.285539,,,1, +29792,Haverford Rd & Drayton - MBFS,39.986414,-75.27655,,,1, +29793,Chester Rd & I476 - FS,39.887956,-75.355185,,,1, +29794,Chester Rd & Yale Av,39.8972,-75.351139,,,1, +29795,Lansdowne Av & Brighton Av - MBNS,39.964396,-75.291904,,,1, +29797,State Rd & Sproul Rd - FS,39.938289,-75.351248,,,1, +29798,Marple Crossroads Shopping Ctr - 2,39.937784,-75.356998,,,1, +29800,Baltimore Pk & Middletown Rd - FS,39.915083,-75.425962,,,1, +29801,Riddle Memorial Hospital - 2,39.913182,-75.431627,,,1, +29802,Middletown Rd & Van Leer Av,39.918224,-75.433587,,,1, +29803,Middletown Rd & Delco Juvenile Det,39.921829,-75.443018,,,1, +29804,State St & Chancellor St ,40.222106,-74.934625,,,1, +29805,Bellevue Av & Holly Av ,40.15033,-74.912018,,,1, +29809,Elwyn Institute Dugan Ctr,39.915269,-75.412754,,,1, +29810,State Rd & Meetinghouse Ln,39.93892,-75.347268,,,1, +29811,Township Line & Bella Vista Rd ,39.947747,-75.324409,,,1, +29812,Township Line Rd & Hollywood Av,39.967249,-75.296989,,,1, +29814,Passyunk Av & Island Av - FS,39.913149,-75.242715,,,1, +29815,65th St & Paschall Av ,39.924558,-75.232982,,,1, +29816,69th St & Sansom St,39.957598,-75.25794,,,1, +29817,Durham Rd & Sandybrook Dr - MBFS,40.150849,-74.895163,,,1, +29818,Beaver Dam Rd & Van Kirk St - FS,40.112441,-74.854617,,,1, +29820,Evergreen & Maris Grove Dr,39.880898,-75.529414,,,1, +29823,Germantown Pk & Corson Ln - MBNS,40.106438,-75.281997,,,1, +29824,Chemical Rd & Germantown Pk - MBNS ,40.104968,-75.284414,,,1, +29826,Marpit Rd & Reed Rd - FS,39.956453,-75.340764,,,1, +29829,810 Parkway Dr,39.960206,-75.335126,,,1, +29830,Parkway Dr & Reed Rd - MBNS,39.959384,-75.347056,,,1, +29831,630 Parkway Dr,39.961734,-75.337321,,,1, +29832,Parkway Dr & Drexel Rd ,39.961423,-75.339932,,,1, +29833,Sussex Blvd & Hastings Blvd - FS,39.971064,-75.342802,,,1, +29835,S Central Blvd & Farnsworth Dr ,39.966305,-75.339335,,,1, +29836,S Central Blvd & Lyndhurst Dr,39.965351,-75.340954,,,1, +29837,S Central Blvd & Lyndhurst Dr - FS,39.965512,-75.341025,,,1, +29850,Media Line Rd & Larchmont Cir ,39.982277,-75.380628,,,1, +29852,Media Line Rd @ Marple Newtown High,39.979788,-75.384209,,,1, +29853,Media Line Rd & Eastburn Av,39.978673,-75.385793,,,1, +29854,Media Line Rd & Old Cedar Grove Rd,39.977674,-75.387187,,,1, +29855,Media Line Rd & Malley St,39.976594,-75.388677,,,1, +29856,Media Line Rd & Heather Rd,39.975256,-75.390567,,,1, +29858,Media Line Rd & Drew Cir,39.970331,-75.394988,,,1, +29859,Media Line Rd & Drew Cir,39.96976,-75.39539,,,1, +29860,Media Line Rd & Dogwood Ln,39.97357,-75.391761,,,1, +29861,Media Line Rd & Heather Rd,39.975104,-75.390461,,,1, +29862,Media Line Rd & Malley St,39.976255,-75.388854,,,1, +29863,Media Line Rd & Old Cedar Grove Rd ,39.977576,-75.38701,,,1, +29864,Media Line & Eastburn Av,39.978316,-75.385982,,,1, +29866,Media Line Rd & Pennview Av - FS,39.980626,-75.382685,,,1, +29867,Media Line Rd & Mark Ter - FS,39.981652,-75.381255,,,1, +29881,Lawrence Rd & Springhouse Rd - FS,39.966019,-75.351619,,,1, +29882,Lawrence Rd & Warren Blvd,39.966518,-75.350945,,,1, +29883,Lawrence Rd & Canterbury Dr - MBNS,39.967766,-75.34916,,,1, +29884,Lawrence Rd & Sussex Blvd,39.971467,-75.343864,,,1, +29887,Lawrence Rd & Hillside La - MBFS,39.967998,-75.349302,,,1, +29889,Lawrence Rd & Warren Blvd - FS,39.966563,-75.351335,,,1, +29890,Lawrence Rd & Parkway Av,39.964672,-75.353994,,,1, +29891,Lawrence Rd & Springhouse Rd ,39.966162,-75.35189,,,1, +29892,Lawrence Rd & Sussex Blvd,39.971574,-75.344207,,,1, +29893,Manoa Rd & Darby Rd - FS,39.975886,-75.303648,,,1, +29894,Manoa Rd & Rockwood Dr ,39.974561,-75.307891,,,1, +29895,Manoa Rd & Shelbourne Rd,39.972975,-75.311437,,,1, +29896,Manoa Rd & Upland Rd,39.973813,-75.309699,,,1, +29897,Manoa Rd & W Chester Pike,39.972165,-75.313187,,,1, +29898,Manoa Rd & Woodland Dr,39.975103,-75.30561,,,1, +29901,69th St & Ruskin Ln,39.950642,-75.254957,,,1, +29904,3rd St & Fulton St,39.843857,-75.365689,,,1, +29905,Ridge Rd & Baker St - MBNS,39.82821,-75.412622,,,1, +29906,Ridge Av & Bradley St ,39.821259,-75.42783,,,1, +29907,Ridge Av & Parkway Av ,39.814851,-75.440807,,,1, +29908,Ridge Av & Parkway Av,39.814816,-75.440571,,,1, +29909,Ridge Av & Bradley St ,39.821117,-75.427735,,,1, +29910,Ridge Av & Veterans Dr ,39.829361,-75.409451,,,1, +29911,Evergreen Dr & Maris Grove Way ,39.881076,-75.529167,,,1, +29912,Brinton Lake Rd & Franklin Dr - FS,39.885846,-75.535839,,,1, +29914,State Farm Dr & Baltimore Pk - FS,39.882743,-75.542783,,,1, +29915,State Farm Dr & Baltimore Pk - MBNS,39.882876,-75.543079,,,1, +29916,Baltimore Pk & Conchester Hwy - FS,39.885558,-75.52738,,,1, +29917,State & Burmont Rd,39.950351,-75.311782,,,1, +29918,Middletown Rd & Old Forge Rd - FS,39.919705,-75.442735,,,1, +29919,Middletown Rd & Lima Estates ,39.922962,-75.443396,,,1, +29920,State Rd & Burmont Rd ,39.950592,-75.311581,,,1, +29921,Penn State University,39.928379,-75.447222,,,1,0 +29922,26th St & Tastykake - 1,39.898474,-75.193228,,,1,0 +29923,3rd St & Pennell St ,39.840996,-75.37332,,,1, +29925,Morton Av & Hyatt St ,39.85787,-75.353022,,,1, +29927,3rd St & Pennell St ,39.841335,-75.373061,,,1, +29928,Ridge Rd & Veterns Dr ,39.829566,-75.409392,,,1, +29929,Commerce Dr & McDonald Blvd - MBFS,39.846826,-75.407759,,,1, +29930,Pennell Rd & Lampost Ln - FS,39.858483,-75.426979,,,1, +29931,Pennell Rd & Weir Rd - FS,39.864391,-75.427758,,,1, +29932,Pennell Rd & Lehr Blvd,39.866176,-75.428017,,,1, +29933,Pennell Rd & Chestnut Av ,39.901231,-75.438094,,,1, +29934,Concord Rd & Pennell Rd,39.868971,-75.428589,,,1, +29935,Pennell Rd & Lehr Blvd - FS,39.865917,-75.428206,,,1, +29937,Dutton Mill Rd & Joanne Dr,39.859446,-75.418523,,,1, +29938,Concord Rd & Incinerator Rd - MBNS,39.851037,-75.401886,,,1,0 +29939,9th St & Sun Village Park,39.857448,-75.347704,,,1, +29940,9th St & Ashland Av,39.858944,-75.343645,,,1, +29941,Chester Pk & Kenny Av - MBNS,39.911,-75.269795,,,1, +29942,Chester Pk & Welcome Av - FS,39.892842,-75.296148,,,1, +29943,Chester Pk & Madison Av,39.880665,-75.309761,,,1, +29944,Chester Pk & Comerford Av,39.878644,-75.315144,,,1, +29945,Chester Pk & Princeton Av - FS,39.877229,-75.31957,,,1, +29946,Crum Lynne Station,39.871723,-75.33056,,,1, +29947,Chester Pk & S Taylor Av,39.86946,-75.335541,,,1, +29948,Saville Av & 13th St,39.863372,-75.345527,,,1, +29949,9th St & Elsinore Pl,39.857501,-75.348046,,,1, +29950,9th St & McDowell St,39.85645,-75.350877,,,1, +29951,9th St & Butler St,39.84801,-75.37249,,,1, +29953,Marpit Dr & Sussex Blvd ,39.957701,-75.339322,,,1, +29956,Henderson Dr & Sharon Hill Ct,39.905314,-75.261842,,,1, +29957,Henderson Dr & Folcroft Industrial ,39.906978,-75.258652,,,1, +29958,Sharon Av & Jackson Av,39.903262,-75.269694,,,1, +29961,Island Av & Woodland Av ,39.917152,-75.246163,,,1,0 +29962,Primos Av & Shallcross Av,39.897945,-75.278568,,,1, +29963,Chester Pk & Ridley Av ,39.909735,-75.271533,,,1, +29964,Broad St & Erie Av,40.009306,-75.151273,,,1, +29965,Jamison Av & Foster St - FS,40.104187,-75.016611,,,1, +29966,Henderson Dr & Henderson Ct ,39.905501,-75.261605,,,1, +29968,Primos Av & Shallcross Av - FS,39.897972,-75.278332,,,1, +29970,Conchester Hwy & Spring Vly Rd - FS,39.880897,-75.518867,,,1, +29971,Brookhaven Rd & Allencrest Ln - FS,39.896945,-75.375825,,,1, +29972,Cheyney Rd & Gov Markham Dr - FS,39.896639,-75.507052,,,1, +29973,Cheyney Rd & Patricia Ln - FS,39.899939,-75.509038,,,1, +29974,University Circle & Hospitality Ln ,39.935802,-75.530234,,,1, +29975,University Dr & Cope Hall,39.932517,-75.530938,,,1, +29976,Cheyney Rd & Patricia Ln,39.899725,-75.509132,,,1, +29977,Evergreen Dr & Baltimore Pk - MBFS,39.882628,-75.530644,,,1, +29978,Chichester Av & Plum St ,39.843186,-75.443747,,,1, +29979,Chichester Av & Mill Rd - MBFS,39.839018,-75.442838,,,1, +29980,Chichester Av & Thornton Rd - MBNS,39.837135,-75.442472,,,1, +29981,Chichester Av & Thornton Rd ,39.836136,-75.44226,,,1, +29982,Post St & Pennell St ,39.824122,-75.408155,,,1, +29983,Market St & Hutchinson St - FS,39.826141,-75.421794,,,1, +29984,Meetinghouse Rd & Johnson Rd - MBNS,39.832638,-75.435834,,,1, +29985,Chichester Av & Thornton Rd - MBFS,39.836912,-75.442213,,,1, +29986,Bethel Av & Chelsea Pkwy ,39.849334,-75.448724,,,1, +29987,Manchester Av & Emerald St - FS,39.912665,-75.385291,,,1, +29988,Providence Rd & Chatham Pl - FS,39.90196,-75.374287,,,1, +29989,Brookhaven Rd & Todmorden Ln,39.887942,-75.379926,,,1, +29990,Chestnut St & Chestnut Ridge Retire,39.87121,-75.364851,,,1, +29993,Brookhaven Rd & Allencrest Ln - FS,39.896793,-75.37566,,,1, +29994,Providence Rd & Chatham Pl ,39.90196,-75.374051,,,1, +29998,Manoa Rd & Shelbourne Rd ,39.972725,-75.311532,,,1, +29999,Manoa Rd & Upland Rd ,39.973545,-75.30983,,,1, +30000,Manoa Rd & Rockwood Dr ,39.974329,-75.308163,,,1, +30002,Manoa Rd & Woodland Dr ,39.974924,-75.305622,,,1, +30003,Redhill Dr & Robinson Dr ,39.960054,-75.347681,,,1, +30004,Central Blvd & S Hampshire Dr - FS,39.96602,-75.340044,,,1, +30005,Central Blvd & S Farnsworth Dr,39.966528,-75.339358,,,1, +30006,Sussex Blvd & Oak Cir ,39.969071,-75.33854,,,1, +30007,Sussex Blvd & Dorset Dr ,39.970761,-75.342448,,,1, +30010,15th & Esrey St,39.859037,-75.363364,,,1, +30011,Bethal Rd & Townsend St - FS,39.84485,-75.394648,,,1, +30012,Concord Rd & Engle St,39.845725,-75.395225,,,1, +30013,Bethel Rd & Townsend St,39.844993,-75.394636,,,1, +30014,15th & Esprey St - FS,39.859197,-75.363423,,,1, +30015,Parkway Dr & Red Hill Dr,39.959457,-75.348142,,,1, +30017,6th St & Vista Ln,39.856512,-75.385455,,,1, +30018,6th St & Vista Ln - FS,39.856717,-75.385479,,,1, +30019,Bridgewater Rd & Brookhaven Rd ,39.862592,-75.394132,,,1, +30020,Edgmont Av & 22nd St - FS,39.863975,-75.368832,,,1, +30021,352 Plaza #2,39.879397,-75.395858,,,1, +30022,Middletown Rd & Coebourn Blvd - MBNS,39.876015,-75.394291,,,1, +30023,Middletown & Bortondale Rd,39.895214,-75.405255,,,1, +30024,Middletown Rd & High Meadow Dr,39.88187,-75.39949,,,1, +30029,Ward Av & Morning Glory Dr,39.987405,-75.583626,,,1, +30030,Wilson Dr & Airport Rd ,39.996157,-75.578765,,,1, +30039,Napfle Av & Dungan Rd,40.062722,-75.073006,,,1, +30040,Dungan Rd & Lorna Dr,40.064307,-75.071744,,,1, +30041,Dungan Rd & Lorna Dr - MBFS,40.066336,-75.069711,,,1, +30042,Dungan Rd & Rhawn St,40.068659,-75.067358,,,1, +30043,Dungan Rd & Lorna Dr - FS,40.064441,-75.071755,,,1, +30044,Dungan Rd & Napfle Av,40.062884,-75.073312,,,1, +30046,Algon Av & Borbeck Av - FS,40.063041,-75.06605,,,1, +30054,Butler St & Sepviva St ,39.99877,-75.094747,,,1, +30055,Butler St & Aramingo Av - MBNS,39.997419,-75.093525,,,1, +30056,Butler St & Aramingo Av,39.996077,-75.09235,,,1, +30065,Rising Sun Av & Westmoreland St - FS,40.003247,-75.151793,,,1, +30079,Market St & 3rd St,39.950183,-75.145539,,,1, +30080,Market St & 8th St - MBNS,39.951119,-75.152963,,,1, +30081,Market St & 10th St - MBNS,39.951482,-75.155961,,,1, +30082,Market St & 12th St - MBFS,39.952019,-75.160388,,,1, +30083,24th St & Passyunk Av - MBFS,39.921615,-75.187166,,,1, +30084,24th St & Oregon Av - MBNS,39.920652,-75.187381,,,1, +30086,Water St & Snyder Av - FS,39.921681,-75.14734,,,1, +30087,Water St & Moore St,39.925053,-75.146583,,,1, +30088,Weccacoe Av & Oregon Av - FS,39.913487,-75.140986,,,1, +30089,Weccacoe Av & Oregon Av - MBFS,39.915385,-75.142022,,,1, +30090,Weccacoe Av & Wolf St - MBNS,39.917307,-75.143108,,,1, +30091,Weccacoe Av & Snyder Av,39.921105,-75.145241,,,1, +30092,Snyder Av & Dilworth St - FS,39.920895,-75.143011,,,1, +30093,Columbus Blvd & Snyder Av - FS,39.920989,-75.141228,,,1, +30094,Columbus Blvd & Dickinson St,39.92852,-75.144445,,,1, +30096,Delaware Av & Dilworth St,39.923126,-75.143097,,,1, +30097,Columbus Blvd & Snyder Av - 1,39.921259,-75.141959,,,1, +30098,Front St & Snyder Av,39.921746,-75.148426,,,1, +30099,Weccacoe St & Oregon Av - MBNS,39.915342,-75.14216,,,1, +30100,24th St & Passyunk Av,39.922192,-75.186894,,,1, +30101,22nd St & Walnut St,39.950884,-75.177267,,,1, +30102,Fairmount Av & 25th St,39.967452,-75.178508,,,1, +30103,29th St & Ridge Av,39.986654,-75.180768,,,1, +30104,Susquehanna Av & 27th St,39.988967,-75.177381,,,1, +30105,Susquehanna Av & 28th St,39.989219,-75.178514,,,1, +30106,21st St & Ben Franklin Pkwy - FS,39.959544,-75.173894,,,1, +30107,Ward Av & Morning Glory Dr ,39.987548,-75.583721,,,1, +30112,35th St & Allegheny Av Loop,40.006059,-75.186728,,,1, +30116,Sandmeyer Ln & 10080,40.112981,-75.033946,,,1, +30117,Red Lion Rd & Sandmeyer Ln,40.107001,-75.036985,,,1, +30118,Sandmeyer Ln & 10071,40.113958,-75.035385,,,1, +30125,Plymouth Meeting Mall,40.11836,-75.279795,,,1,0 +30129,Bala Av & City Av - FS,40.000466,-75.22891,,,1, +30130,Conshohocken State Rd & Derwin Rd,40.012311,-75.235117,,,1, +30131,Hagys Ford Rd & Tower Ln - FS,40.026514,-75.255505,,,1, +30132,Hagys Ford Rd & Flat Rock Rd - MBFS,40.031798,-75.256154,,,1, +30134,Oakwood Dr & Oakwood Ter - MBNS,40.039528,-75.256159,,,1, +30135,Oakwood Ter & Oakwood Dr - MBFS,40.039501,-75.255994,,,1, +30136,Youngs Ford Rd & Righters Mill Rd,40.038024,-75.280247,,,1,0 +30137,Conshohocken State Rd & Mill Creek ,40.031307,-75.269408,,,1, +30138,54th St & City Av - MBFS,39.995986,-75.23457,,,1, +30140,Parx Casino,40.117172,-74.953046,,,5, +30142,Roosevelt Blvd & Old Lincoln Hwy,40.122818,-74.975972,,,1, +30144,Roosevelt Blvd & Old Lincoln Hwy,40.121501,-74.97733,,,1, +30146,New St & Chestnut St - FS,39.959551,-75.609844,,,1, +30147,Passyunk Av & 61st St - FS,39.918165,-75.209841,,,1,0 +30148,Passyunk Av & 63rd St - MBFS,39.916529,-75.218734,,,1, +30149,70th St & Essington Av - FS,39.903154,-75.225559,,,1, +30150,74th St & Brewster Av - MBNS,39.904249,-75.229403,,,1, +30151,Brewster Av & 76th St - MBFS,39.901372,-75.2336,,,1, +30152,78th St & Brewster Av - FS,39.899322,-75.234692,,,1, +30153,61st St & Passyunk Av - MBFS,39.920224,-75.213187,,,1, +30155,Easton Rd & Moreland Rd,40.141678,-75.117049,,,1, +30156,Stevens Dr & Governor Printz - MBNS,39.873804,-75.278241,,,1, +30157,Industrial Hwy & Seaknight Av - MBNS,39.861771,-75.328009,,,1, +30158,Governor Printz Blvd & Stevens - MBNS,39.87235,-75.278528,,,1, +30159,Bartram Av & 84th St - MBNS,39.890732,-75.244012,,,1, +30160,78th St & Brewster Av - MBNS,39.89925,-75.23435,,,1, +30161,Brewster Av & 76th St - MBNS,39.901247,-75.233553,,,1, +30162,74th St & Holstein Av,39.9033,-75.227883,,,1, +30163,70th St & Essington Av,39.902993,-75.225713,,,1, +30164,Essington Av & 68th St - MBNS,39.910458,-75.22247,,,1,0 +30165,Passyunk Av & 63rd St,39.916864,-75.216066,,,1, +30166,Passyunk Av & 63rd St - MBNS,39.916359,-75.218605,,,1, +30167,Lindbergh Blvd & Mario Lanza Blvd - FS,39.903413,-75.242941,,,1, +30168,Linbergh Blvd & Suffolk Av - MBFS,39.904992,-75.237107,,,1, +30182,Easton Rd & Street Rd,40.229222,-75.13868,,,1,0 +30183,Main St & Clemens Rd - FS,40.302618,-75.128709,,,1, +30185,Greeway Av & 49th St,39.941832,-75.21389,,,1, +30187,City Av & Bala Av,39.999922,-75.228958,,,1, +30188,Packer Av & Broad St - FS,39.911533,-75.171791,,,1, +30189,Penrose Av & Hartranft St,39.910713,-75.185705,,,1, +30190,Island Av & Escort Av - MBNS,39.886466,-75.232084,,,1, +30192,8th St & Diamond St,39.983548,-75.147215,,,1, +30193,63rd St & Girard Av,39.970441,-75.245247,,,1, +30194,Chestnut St & 48th St,39.957456,-75.217409,,,1, +30195,Chestnut St & 49th St,39.9577,-75.219381,,,1, +30196,33rd St & Chestnut St - FS,39.953812,-75.189768,,,1, +30201,Haldeman Av & Plaza Shopping Ctr - FS,40.10093,-75.008736,,,1, +30202,Haldeman Av & Plaza Shopping Ctr - 2,40.101684,-75.007478,,,1, +30203,Haldeman Av & Plaza Shopping Ctr - 1,40.101765,-75.007607,,,1, +30204,Haldeman Av & Plaza Shopping Ctr - 2,40.101046,-75.008807,,,1, +30211,Street Rd & High Av - FS,40.089192,-74.939448,,,1, +30212,Street Rd & Brookwood Dr,40.092781,-74.942133,,,1, +30213,Street Rd & Essex Dr - FS,40.089683,-74.939575,,,1, +30214,Street Rd & Pearl Av,40.094635,-74.94367,,,1, +30215,Street Rd & Pearl Av - MBNS,40.095173,-74.944353,,,1, +30216,Street Rd & Olga Av - MBFS,40.092254,-74.941971,,,1, +30218,Rhawn St & Dungan Rd,40.068748,-75.067298,,,1, +30219,Penn St & Pratt St,40.023604,-75.079985,,,1, +30221,Welsh Rd & Old Bustleton Av,40.082449,-75.037652,,,1, +30222,General Warren Blvd & Otis,40.0749,-75.539478,,,1, +30223,Oakhill Apartments Loop,40.040856,-75.254867,,,1, +30226,Champlost St & Front St,40.041471,-75.120016,,,1, +30227,Montgomery Av & Bryn Mawr Av,40.01339,-75.265595,,,1, +30229,Red Lion Rd & Haldeman Av,40.097293,-75.018588,,,1, +30230,Bells Corner Loop,40.066247,-75.051544,,,1, +30233,High St & Beech St - FS,40.244007,-75.615788,,,1, +30234,High St & Cedar St - FS,40.243949,-75.624811,,,1, +30235,High St & Price St - FS,40.244072,-75.625962,,,1, +30236,High St & Edgewood St,40.244282,-75.628678,,,1, +30237,High St & Montgomery St - FS,40.244054,-75.631523,,,1, +30238,High St & Madison St - FS,40.243799,-75.634866,,,1, +30239,High St & Adams St - FS,40.244301,-75.638922,,,1, +30240,High St & Franklin St - FS,40.245006,-75.644391,,,1, +30241,High St & Evans St - FS,40.245182,-75.646051,,,1, +30242,Hanover St & High St - FS,40.24596,-75.650251,,,1, +30243,High St & Manatawny St - FS,40.246201,-75.655197,,,1, +30244,High St & Hanover St - FS,40.245532,-75.650036,,,1, +30245,High St & Penn St - FS,40.245347,-75.648483,,,1, +30246,High St & Charlotte St - FS,40.24518,-75.64713,,,1, +30247,High St & Evans St - FS,40.24496,-75.64547,,,1, +30248,High St & Franklin St - FS,40.244775,-75.643833,,,1, +30249,High St & Washington St - FS,40.244493,-75.641864,,,1, +30250,High St & Adams St - FS,40.24407,-75.638495,,,1, +30251,High St & Madison St - FS,40.243648,-75.634367,,,1, +30252,High St & Montgomery St,40.24393,-75.631036,,,1, +30253,High St & Edgewood St,40.244103,-75.628867,,,1, +30254,High St & Keim St - FS,40.24407,-75.627219,,,1, +30270,29th St & Huntingdon St,39.995473,-75.178914,,,1, +30271,29th St & Cumberland St,39.994005,-75.179245,,,1, +30272,29th St & York St,39.992578,-75.179637,,,1, +30280,Columbus Commons - 1,39.91688,-75.139592,,,1, +30281,Columbus Commons - 2,39.916543,-75.14055,,,1, +30282,Columbus Commons 3,39.916162,-75.141555,,,1, +30283,Grays Ferry Av & 35th St,39.940019,-75.199595,,,1, +30284,Island Av & Penrose Av - MBNS,39.887939,-75.23254,,,1, +30285,Broad St & Erie Av - FS,40.009395,-75.151107,,,1, +30288,Whitaker Av & Cottman Av,40.057279,-75.076758,,,1, +30289,Torresdale Av & Kensington Av - FS,40.005788,-75.095802,,,1, +30290,Girard Av & 19th St,39.972507,-75.167339,,,1, +30291,Girard Av & 34th St - FS,39.975143,-75.196224,,,1, +30292,Girard Av & 34th St,39.974902,-75.196295,,,1, +30293,Roosevelt Blvd & Southampton Rd,40.113827,-74.987806,,,1, +30294,Umbria St & Leverington Av - FS,40.02975,-75.229241,,,1, +30295,Roberts Av & Green St,40.021219,-75.15865,,,1, +30301,Fairmount Av & 2nd St,39.961936,-75.141087,,,1, +30303,Ben Franklin Pkwy & Spring Garden - MBNS,39.962744,-75.176552,,,1, +30304,11th St & Tabor Rd,40.037019,-75.139591,,,1, +30306,Haverford Av & 68th St,39.972757,-75.25475,,,1, +30307,Castor Av & Salmon St,39.989717,-75.090276,,,1, +30310,Old Welsh Rd & Walton Rd,40.120949,-75.068667,,,1, +30311,Street Rd & Mearns Rd,40.203117,-75.093352,,,1, +30313,Civic Center Blvd & Service Dr,39.947242,-75.195275,,,1, +30314,4th St & Monroe St,39.940009,-75.149618,,,1, +30319,Main St & Rochelle Av,40.016099,-75.21051,,,1, +30321,Tabor Rd & 12th St,40.03752,-75.141088,,,1, +30322,Tabor Rd & 13th St,40.037811,-75.142472,,,1, +30323,Tabor Rd & 13th St,40.037803,-75.142851,,,1, +30327,19th St & Morvian St - FS,39.950678,-75.172225,,,1, +30328,McDonald Blvd & Commerce Dr - 1,39.851198,-75.404527,,,1, +30329,Ridge Av & Allegheny Av - FS,40.00582,-75.187804,,,1, +30332,Gulph Mills Station,40.071025,-75.342219,,,1, +30333,Gulph Mills Station,40.071141,-75.341982,,31031,8, +30334,Trenton Rd & Tyburn Rd,40.1895,-74.824495,,,1, +30335,West Chester Pk & Winding Way,39.986515,-75.406168,,,1, +30336,Creek Rd & Cheyney Rd - MBFS,39.931003,-75.526438,,,1, +30338,Main St & Green St,40.242767,-75.285924,,,1, +30339,Trooper Rd & Shannondell - MBFS,40.129095,-75.403007,,,1, +30340,Brookline Blvd & Darby Rd - MBFS,39.979188,-75.302933,,,1,0 +30341,Calcon Hook Rd & Elmwood Av,39.906085,-75.264849,,,1, +30342,Sharon Av & Laurel Rd,39.900073,-75.267306,,,1, +30343,Delmar Dr & Henderson - MBNS,39.89222,-75.282545,,,1, +30344,Lansdowne Av & Greenwood Av,39.943518,-75.273761,,,1, +30345,Darby Rd & Brookline Blvd,39.978609,-75.304068,,,1, +30347,City Av & Haverford Av,39.98006,-75.269334,,,1, +30349,Haverford Av & Overbrook Av,39.978996,-75.268403,,,1, +30351,Church Ln & Radbourne Rd,39.948553,-75.254809,,,1, +30352,Church Ln & Emerson Av,39.945993,-75.255642,,,1, +30354,Bridgewater Rd & Trimble Blvd,39.858896,-75.390183,,,1,0 +30355,9th St & Sproul St,39.851745,-75.363182,,,1, +30356,Concord Rd & Incinerator Rd - FS,39.848877,-75.40086,,,1, +30357,3rd St & Fulton St,39.843607,-75.365866,,,1, +30358,MacDade Blvd & Collingdale Av,39.910985,-75.278895,,,1, +30359,6th St & Welsh St Chester Tran Ctr,39.849611,-75.360283,,31036,1, +30360,UPS Customer Center & Deliveries,39.859775,-75.24552,,,1, +30361,UPS Employee lot #1 inside,39.859,-75.258919,,,1, +30362,5 11 Hog Island Rd,39.864499,-75.235293,,,1, +30363,Elmwood Av & Henderson Dr - FS,39.908034,-75.26095,,,1, +30364,Elmwood Av & Bonsall Av - MBNS,39.907557,-75.257423,,,1, +30366,Grays Ferry Av & Peltz St,39.940205,-75.188049,,,1, +30367,29th St & Oakford St,39.938472,-75.191868,,,1, +30368,29th St & Reed St,39.936188,-75.19236,,,1, +30369,29th St & Wharton St,39.937392,-75.19212,,,1, +30370,Reed St & 30th St,39.936324,-75.193741,,,1, +30374,Clifton Aldan Station,39.92575,-75.289984,,,1, +30375,Penn St Station,39.928653,-75.29202,,,1, +30376,Baltimore Av Station - FS,39.931313,-75.292841,,,1, +30380,Market St & Ridge Rd,39.824686,-75.420898,,,1, +30381,3rd St & Flower St,39.837224,-75.380445,,,1, +30382,3rd St & Crosby St,39.847967,-75.35683,,,1, +30383,Av of the States & 4th St,39.847576,-75.359672,,,1, +30385,MacDade Blvd & South Av,39.900845,-75.301809,,,1, +30386,Garrett Rd & Lansdowne Av,39.951355,-75.282163,,,1,0 +30387,Langdon St & Sanger St school,40.035299,-75.093926,,,1,0 +30388,Frankford Av & Bridge St - FS,40.023585,-75.076262,,,1, +30389,Cheltenham Av & Bustleton Av,40.027081,-75.075429,,,1, +30391,Roosevelt Blvd & Comly - FS,40.104697,-75.001057,,,1, +30392,Townsend Rd & Natl Archives -opp entrance,40.112876,-74.969017,,,1, +30393,Av of the States & 8th St,39.852261,-75.360599,,,1, +30394,Manayunk Av & Ridge Av - FS,40.019884,-75.210711,,,1, +30395,Swedesford Rd & Howellville Rd,40.059688,-75.46957,,,1, +30397,Broad St & Front St - NJ,40.218848,-74.764044,,,1, +30400,Montgomery St & State St & - NJ,40.22021,-74.761673,,,1, +30401,State St & Stockton St - FS NJ,40.220547,-74.759453,,,1, +30402,State St & Clinton Av - NJ,40.221008,-74.755561,,,1, +30403,Clinton Av & State St - NJ,40.221006,-74.7553,,,1, +30404,State St & Canal St - NJ,40.220938,-74.757505,,,1, +30405,State St & Stockton St - NJ,40.220681,-74.759582,,,1, +30406,State St & Montgomery St - NJ,40.220407,-74.761671,,,1, +30407,Warren St & Front St - NJ,40.219537,-74.7661,,,1, +30408,Warren St & Lafayette St - NJ,40.218555,-74.766074,,,1, +30409,Warren St & Assunpink St - FS NJ,40.216892,-74.765449,,,1, +30410,West Rd & Eagle Rd - MBFS,40.235321,-74.942643,,,1, +30411,West Rd & Eagle Rd - MBNS,40.23518,-74.943083,,,1, +30412,Great Valley Pkwy & Morehall Rd - MBFS,40.063495,-75.537142,,,1, +30413,Riddle Memorial Hospital - 1,39.913369,-75.432312,,,1, +30414,Chester Rd & Baltimore Pk,39.91375,-75.344524,,,1, +30415,Swarthmore Av & Chester Rd,39.910692,-75.349272,,,1, +30416,Springfield Mall,39.914094,-75.350743,,,1,0 +30417,Exton Mall & County Library,40.031068,-75.621207,,,1, +30418,Exton Square Mall & North Entrance,40.033033,-75.62613,,,1, +30419,Swedesford Rd & Pottstown Pk - MBNS,40.033718,-75.627716,,,1, +30420,Oxford Valley Rd & S Bucks Town Dr,40.183161,-74.870659,,,1, +30421,Uptown Worthington Shopping Ctr,40.04755,-75.520895,,,1, +30427,Caroline Rd & Comly Rd,40.101519,-74.998118,,,1, +30428,Moreland Rd & Easton Rd - FS,40.141643,-75.117274,,,1, +30429,Easton Rd & Moreland Rd - FS,40.141776,-75.116788,,,1, +30430,Easton Rd & Old York Rd - MBNS,40.14248,-75.116299,,,1, +30431,Easton Rd & Old York Rd - MBFS,40.142578,-75.116417,,,1, +30432,Main St & Clearfield Av - FS,40.143757,-75.391919,,,1, +30433,Main St & Egypt Rd - MBFS,40.132336,-75.377991,,,1, +30434,Main St & Stanbridge St,40.119633,-75.355842,,,1, +30435,Ridge Pk & Park Av - FS,40.14707,-75.395351,,,1, +30436,Ridge Pk & Wilson Blvd - MBNS,40.162265,-75.412825,,,1, +30437,Ridge Pike & Township Line Rd - 2 FS,40.21532,-75.500271,,,1, +30438,Ridge Pk & Airport Rd - MBFS,40.24268,-75.555302,,,1, +30439,Ridge Pk & Township Line Rd - 2 FS,40.214615,-75.499476,,,1, +30440,Ridge Pk & Kline Rd - MBNS,40.212751,-75.49644,,,1, +30441,Ridge Pk & Level Rd,40.175895,-75.436217,,,1, +30442,Main St & Park Av - FS,40.146561,-75.395115,,,1, +30443,Hickory Rd & Fountain Rd - MBFS,40.11823,-75.283085,,,5, +30446,Markley St & Harding Blvd,40.123016,-75.342628,,,1, +30447,Circle Dr & Tower Farm Rd - MBFS,40.135124,-75.348971,,,1, +30448,Germantown Pk & Plymouth Valley Dr ,40.125285,-75.294198,,,1, +30449,Germantown Pk & Plymouth Valley Dr,40.125303,-75.293867,,,1, +30450,Norristown Rd & Office Ct - FS,40.131395,-75.275233,,,1, +30451,Bethlehem Pk & Washington Ln - FS,40.138916,-75.212513,,,1, +30452,Pennsylvania Av & Camp Hill Rd,40.125601,-75.193886,,,1, +30455,Sumneytown Pk & Dekalb Pk - MBNS,40.202335,-75.25614,,,1, +30456,Dekalb Pk & Grasshopper Ln - FS,40.185881,-75.271004,,,1, +30457,Main St & Broad St,40.241542,-75.283899,,,1, +30459,Butler Pk & Ridge Av - MBFS,40.093521,-75.287384,,,1, +30460,Front St & Duncannon Av,40.029151,-75.122694,,,1, +30461,Church Rd & Park Av - FS,40.082817,-75.251015,,,1, +30462,Ridge Pk & Chemical Rd,40.096118,-75.295839,,,1, +30464,Cornwells Heights Station,40.069307,-74.958569,,,78,0 +30465,Margaret St & Frankford Av,40.016778,-75.083576,,,1, +30467,4th St & Depot St,40.105308,-75.341987,,,1, +30468,1st Av & Moore Rd - MBNS,40.095152,-75.40851,,,1, +30469,Oaks Mills Shopping Ctr & BJ's ,40.126918,-75.454467,,,1, +30470,SEI Complex & Building 100,40.142003,-75.447451,,,1, +30471,Starr St & Prospect St,40.133704,-75.512077,,,1, +30473,Egypt Rd & Mill Grove Dr ,40.130553,-75.436959,,,1, +30474,4th St & Mill St,40.105657,-75.344377,,,1, +30475,4th St & DeKalb St,40.105819,-75.34614,,,1, +30476,4th & Dekalb St - FS,40.105694,-75.346567,,,1, +30477,4th St & Mill St - MBNS,40.10556,-75.345088,,,1, +30478,West Chester Pk & Boot Rd - MBNS,39.985811,-75.415278,,,1, +30479,West Chester Pk & Valley Dr,39.966256,-75.547934,,,1, +30480,West Chester Pk & Westwood Park - 2 FS,39.970515,-75.305795,,,1, +30481,FrankllinTowne Charter School,40.008951,-75.064941,,,1, +30484,Lancaster Av & Penn St.,40.018002,-75.311103,,,1, +30485,Lancaster Av & Leopard Rd,40.044912,-75.447345,,,1, +30488,Enterprise Av & Fort Mifflin Rd,39.884362,-75.222215,,,1,0 +30489,Broad St & Hunting Park Av,40.017005,-75.1496,,,1, +30490,BNY Mellon,40.102844,-75.411195,,,8, +30492,Baltimore Pk & School Lane,39.91659,-75.41541,,,1, +30493,Elwyn Institute & Hadley Way,39.912252,-75.410784,,,1, +30494,Lansdowne Av Station,39.951614,-75.282328,,,1, +30495,Fillmore St & Black Rock Rd,40.144994,-75.513701,,,1, +30496,Redhill Dr & S Central Blvd,39.962525,-75.345706,,,1, +30497,Redhill Dr & Robinson Dr,39.959795,-75.347717,,,1, +30499,Manoa Rd & West Chester Pk - FS,39.972146,-75.312726,,,1, +30502,Main St & Nutt Rd - FS,40.123867,-75.512824,,,1, +30509,Tri State Mall #3,39.814975,-75.448727,,,1, +30514,South Av & Academy Av,39.903561,-75.304424,,,1, +30515,69th St Blvd & Sansom St,39.95784,-75.258223,,,1, +30516,69th St Blvd & Marshall Rd - FS,39.953574,-75.258363,,,1, +30517,Main St & Concord Rd - FS,39.925196,-75.267485,,,1, +30519,Ardmore Junction Station - NHSL,39.996262,-75.303695,,,2, +30520,Norristown Transportation Center - NHSL,40.113468,-75.345161,,31038,2,1 +30521,Providence Rd & Jackson St,39.926641,-75.385967,,,1, +30527,Radnor St & Jefferson St,39.914557,-75.384558,,,1, +30528,Radnor St & Baltimore Pk,39.915993,-75.384214,,,1, +30529,Radnor St & Jefferson St,39.914825,-75.384711,,,1, +30533,Gov Printz Blvd & Stevens Dr - FS,39.873088,-75.277004,,,1, +30535,Haverford Av & Overbrook Av,39.97888,-75.268131,,,1, +30537,2200 Horizon Dr,40.085143,-75.339184,,,1, +30538,Elmwood Av & 76th St,39.910006,-75.247574,,,1, +30540,Alan Wood Rd & Ridge Pk - MBNS,40.10056,-75.301783,,,1, +30544,Springfield Rd Station,39.927288,-75.292519,,,1, +30545,Montgomery Av & Penn Rd,40.011946,-75.274522,,,1, +30548,Martins Mill & Hellerman St,40.049653,-75.091518,,,1, +30549,Ridge Pk & Pine Ridge Rd,40.084081,-75.255128,,,1, +30550,Girard Av & Merion Av,39.972814,-75.216277,,,1, +30551,West Trenton Av & Woolston Dr - MBFS,40.196626,-74.814126,,,1, +30552,Arleans Av & Lincoln Hwy - FS,40.19057,-74.83169,,,1, +30554,Bustleton Av & Deveraux Av - FS,40.032598,-75.072458,,,1, +30558,Broad St & Zinkoff Blvd - MBNS,39.902818,-75.173955,,,1, +30559,MacDade Blvd & Glenfield Av,39.900311,-75.303226,,,1, +30560,Dayton & Emmett St,40.14111,-75.514466,,,1, +30561,Emmett St & Marshall St,40.140404,-75.516963,,,1, +30562,Emmett St & Franklin St,40.139724,-75.519366,,,1, +30563,Franklin St & High St,40.138064,-75.518831,,,1, +30565,Main St & Virginia Av,40.121081,-75.515093,,,1, +30566,Main St & City Line Av,40.119277,-75.516914,,,1, +30567,State St & Mobile Ln,40.11499,-75.52117,,,1, +30569,Main St & Mobile Ln,40.114731,-75.521134,,,1, +30570,Main St & City Line Av,40.118875,-75.51702,,,1, +30571,Main St & Virginia Av,40.120813,-75.515081,,,1, +30573,Franklin Av & Emmet St,40.139563,-75.51933,,,1, +30574,Emmett St & Marshall St,40.140154,-75.517176,,,1, +30575,Emmett St & Dayton St,40.140932,-75.514454,,,1, +30576,Schuylkill Av & JFK Blvd,39.955211,-75.180794,,,7, +30577,Market St & Schuylkill Av - FS,39.954641,-75.181375,,,1, +30579,Bridge St & Main St - MBFS,40.181813,-75.547128,,,1, +30580,10th Av & Church St,40.19402,-75.530418,,,1, +30581,10th Av & Royersford Rd,40.19534,-75.53164,,,1, +30582,Royersford Rd & 10th Av,40.19517,-75.531723,,,1, +30583,10th & Main St,40.193235,-75.529563,,,1, +30584,Valley Forge Rd & Kleyona Av,40.12147,-75.507565,,,1, +30585,Bustleton Av & Magee Av - FS,40.038172,-75.067796,,,1, +30586,Global Rd & Red Lion Rd - FS,40.108274,-75.041476,,,1, +30587,Global Rd & Geiger Rd,40.106316,-75.043344,,,1, +30588,Geiger Rd & Global Rd - MBFS,40.106974,-75.045447,,,1, +30589,Geiger Rd & Gantry Rd - MBNS,40.109055,-75.048951,,,1, +30590,Gantry Rd & Geiger Rd - FS,40.110165,-75.050093,,,1, +30591,Gantry Rd & Red Lion Rd,40.112104,-75.047882,,,1, +30592,Old Lancaster Rd & City Line Av,39.99721,-75.235548,,,1, +30593,Commerce Dr & McDonald Blvd - MBNS,39.848128,-75.405047,,,1, +30595,Grays Av & 51st St,39.937188,-75.212227,,,1, +30596,Ridge Av & Lincoln Dr,40.014879,-75.206779,,31032,1,0 +30597,Darby Transportation Center New,39.918997,-75.263427,,31035,1,0 +30599,Columbus Blvd & Noble St - FS,39.958742,-75.137923,,,1, +30600,Columbus Av & Callowhill St - MBFS,39.956157,-75.139174,,,1, +30602,Delaware Av & Penn St,39.961666,-75.136482,,,1, +30603,Delaware Av & Ellen St - FS,39.963877,-75.135257,,,1, +30605,Girard Av & Merion Av,39.972725,-75.216431,,,1, +30607,Scenic Rd Station,39.940752,-75.32612,,,1, +30615,Philadelphia International Airport,39.876441,-75.241973,1,,1, +30617,Morehall Rd & Liberty Blvd - FS,40.054756,-75.528189,,,1, +30618,Morehall Rd & Valley Stream Pkwy - FS,40.057317,-75.528996,,,1, +30619,Morehall Rd & Great Valley - FS,40.064603,-75.535488,,,1, +30620,Bridge St & Main St,40.133862,-75.516482,,,1, +30621,Wyeth Dr & Morehall Rd - MBFS,40.046219,-75.522135,,,1, +30622,Matthews Rd & Vanguard Blvd - FS,40.05334,-75.510011,,,1, +30623,Industrial Blvd & Paoli Hospital,40.044261,-75.499335,,,1, +30624,Matthews Rd & Vanguard Blvd,40.053617,-75.509609,,,1, +30625,Industrial Blvd & Paoli Hospital,40.044225,-75.499548,,,1, +30626,Morehall Rd & Great Valley Pkwy - FS,40.06355,-75.535498,,,1, +30627,Morehall Rd & Valley Stream Pkwy - FS,40.056611,-75.529031,,,1, +30628,Morehall Rd & Liberty Blvd - FS,40.054229,-75.528436,,,1, +30631,Penn's Landing - 2,39.949779,-75.140487,,,1, +30632,Market St & Chatham Rd,39.962041,-75.256619,,,1, +30633,Chestnut St & Farragut St,39.957085,-75.21441,,,1, +30634,Chestnut St & 33rd St,39.954042,-75.189821,,,1, +30638,Lombard St & 23rd St,39.946471,-75.179372,,,1, +30639,Lombard St & 24th St,39.946598,-75.180399,,,1, +30640,Lombard St & 25th St,39.946743,-75.181509,,,1, +30641,Lombard St & 26th St,39.946897,-75.182736,,,1, +30642,27th St & South St,39.946088,-75.184298,,,1, +30643,Spruce St & 34th St - FS,39.950585,-75.193245,,,1, +30644,South St & 26th St,39.945773,-75.183224,,,1, +30645,South St & 25th St,39.945619,-75.181961,,,1, +30646,South St & 24th St,39.945483,-75.180852,,,1, +30647,South St & 23rd St,39.945356,-75.179825,,,1, +30648,South St & Convention Av,39.948883,-75.189814,,,1, +30649,South St & 27th St - FS,39.945936,-75.184334,,,1, +30650,Bustleton Av & Stoltz Av,40.149413,-75.003182,,,1, +30652,South St & Convention Av,39.948865,-75.189543,,,1, +30653,Market St & JFK Blvd,39.955348,-75.186935,,,1, +30654,Pottstown Pk & Worthington Rd.,40.054688,-75.64109,,,1, +30655,Rt 100 & Marchwood Blvd,40.049726,-75.635423,,,1, +30656,Welsh Pool Rd & Phillips Rd,40.062445,-75.646033,,,1, +30657,Welsh Pool & Gordon Rd,40.061722,-75.650987,,,1, +30658,Uwchlan Av & Marsh Creek Dr - MBNS,40.058635,-75.655471,,,1, +30659,Uwchlan Av & Pottstown Pk - MBFS,40.055184,-75.658712,,,1, +30660,Eagleview Blvd & Dowlin Forge Rd,40.053551,-75.66378,,,1, +30661,Eagleview Blvd & Sherree Blvd,40.055896,-75.664711,,,1, +30662,Pine St & Fornance St,40.125851,-75.33712,,,1, +30663,Creek Parkway & Conchester Hwy,39.852821,-75.460978,,,1, +30664,Eagleview Blvd & Wharton Blvd - FS,40.05903,-75.673425,,,1, +30665,Eagleview Blvd & Sheree Blvd - MBNS,40.057154,-75.670001,,,1, +30666,Uwchlan Av & Holmes Dr,40.054952,-75.658712,,,1, +30667,Uwchlan Av & Gordon Dr - MBNS,40.061747,-75.652311,,,1, +30668,Welsh Pool Rd & Pickering Way,40.05861,-75.644484,,,1, +30669,Old Lincoln Hwy & Carter Av,40.155229,-74.931511,,,1, +30670,West Trenton Av & Valerie Rd,40.199301,-74.811555,,,1, +30671,W Trenton Av & Sweet Briar Dr - MBFS,40.202909,-74.808324,,,1, +30672,Arleans Av & Avenrowe Ct ,40.187971,-74.831487,,,1, +30673,Lancaster Av & Morehall Rd - FS,40.0438,-75.522581,,,1, +30674,West Chester Pk & Alice Grim Blvd,39.977806,-75.43281,,,1, +30675,Baltimore Pk & Valley Rd - FS,39.90562,-75.453849,,,1, +30676,Baltimore Pk & Valley Rd,39.905968,-75.453837,,,1, +30677,Knights & Mechanicsville Rd - MBNS,40.092523,-74.963457,,,1, +30678,Knights Rd & Street Rd,40.1057,-74.949986,,,1, +30679,68th St & Lebanon Av,39.975364,-75.255311,,,1, +30680,68th St & Malvern Av,39.977953,-75.255801,,,1, +30681,Malvern Av & 66th St,39.979369,-75.253505,,,1, +30682,Lankenau & Lancaster - MBFS,39.989898,-75.25843,,,1, +30683,Lancaster Av & Church Rd,40.005248,-75.285515,,,1, +30684,Montgomery Av & Bleddyn Rd,40.010369,-75.29191,,,1, +30685,Lancaster Av & Booth Ln,40.014898,-75.304761,,,1, +30686,Lancaster Av & Arlington Rd,40.044458,-75.427799,,,1, +30688,Lancaster Av & Lakeside Av,40.04685,-75.434953,,,1, +30689,Lancaster Av & Fairfield Rd,40.044298,-75.427787,,,1, +30690,Lancaster Av & Doyle Rd,40.044097,-75.397671,,,1, +30691,Lancaster & Indian Creek Rd,39.992986,-75.264992,,,1, +30692,Malvern Av & 68th St,39.978248,-75.255835,,,1, +30693,68th & Lebanon Av,39.975659,-75.255582,,,1, +30696,Township Line Rd & Grove Pl,39.974229,-75.281691,,,1, +30697,Woodbine Av & 75th St,39.97553,-75.265623,,,1, +30698,City Av & Overbrook Pkwy,39.977666,-75.275198,,,1, +30699,Township Line Rd & Grove Pl,39.974443,-75.281655,,,1, +30700,City Av & Overbrook Pkwy,39.977416,-75.275305,,,1, +30701,Woodside & Montgomery - FS,40.011622,-75.295004,,,1, +30702,Haverford Rd & Argyle Rd,39.992689,-75.2845,,,1, +30703,Haverford & Manoa Rd - FS,39.984555,-75.274416,,,1, +30704,Plum Av & Knights Rd - MBFS,40.098495,-74.958921,,,1, +30705,Hulmeville Rd & Bensalem Blvd - MBFS,40.140214,-74.913405,,,1, +30706,Bucks County Community College 3,40.237805,-74.959841,,,1, +30707,Market St & Wood St,40.096245,-74.857339,,,1,0 +30708,Veterans Hwy & Winder Dr - MBFS,40.10859,-74.877667,,,1, +30709,Byberry Rd & Knights Rd - MBNS,40.110521,-74.94316,,,1, +30710,Bristol Pk & Colonial Av,40.065791,-74.975541,,,1, +30711,Ford Rd & Bridgewater Rd,40.107615,-74.928398,,,1, +30712,Rittenhouse Circle 200 ,40.114465,-74.886333,,,1, +30713,Durham Rd & Woodland Av,40.15849,-74.908181,,,1, +30714,Sproul Rd & I 476 - FS,39.947445,-75.34936,,,1, +30715,Sproul Rd & I 476,39.948105,-75.349926,,,1, +30716,Butler Pk & Ridge Pk - MBNS,40.093413,-75.287218,,,1, +30717,Germantown Pk & Rodgers Dr,40.084952,-75.228578,,,1, +30718,Germantown Pk & Rodgers Dr,40.084747,-75.22859,,,1, +30720,Old York Rd & Wyncote Rd,40.090121,-75.126704,,,1, +30722,Germantown Pk & Butler Pk,40.10265,-75.278751,,,1, +30723,Pheasant Run & Terry - MBNS,40.225635,-74.91337,,,1, +30726,Henry Av & Wises Mill Rd,40.053771,-75.230936,,,1, +30727,Henry Av & Palairet Rd - FS,40.054736,-75.232057,,,1, +30728,Ridge Av & Grakyn Ln - MBFS,40.066387,-75.23989,,,1, +30729,Ridge Av & Ayrdale Rd,40.072246,-75.242205,,,1, +30730,Ridge Pk & Manor Rd - MBNS,40.076287,-75.247115,,,1, +30731,Ridge Pk & Barren Hill Rd - MBNS,40.077682,-75.248969,,,1, +30732,Cresent Av & Wagner Rd,40.084275,-75.253129,,,1, +30733,Crescent Av & Germantown Pk,40.085781,-75.251315,,,1, +30734,Ridge Pk & Birch Dr - MBFS,40.090655,-75.272316,,,1, +30735,Ridge Pk & Spring Mill Rd - MBNS,40.092376,-75.277968,,,1, +30736,Ridge Pk & Butler Pk - MBNS,40.093982,-75.285182,,,1, +30737,Ridge Pk & Spring Mill Rd - FS,40.092914,-75.280262,,,1, +30738,Ridge Pk & Birch Dr,40.089822,-75.270022,,,1, +30739,Ridge Pk & S Gilinger Rd,40.086864,-75.259807,,,1, +30740,Ridge Pk & Holly Ln - FS,40.086434,-75.258992,,,1, +30741,Ridge Pk & Harts Ln - MBFS,40.080123,-75.251826,,,1, +30742,Ridge Av & Northwestern Av - FS,40.073336,-75.243207,,,1, +30743,Henry Av & Gates St,40.04015,-75.21422,,,1, +30744,Manayunk Av & Burnside St,40.024755,-75.21455,,,1, +30746,Manayunk Av & Hermit St - FS,40.021492,-75.2119,,,1, +30748,Henry Av & Leverington Av,40.038512,-75.211375,,,1, +30749,Henry Av & Hermitage St,40.039487,-75.212827,,,1, +30750,Marshall St & Swede St,40.117402,-75.343061,,,1, +30751,Swede St & Marshall St - FS,40.117251,-75.343133,,,1, +30752,Somerton Rd & Trevose Rd - MBNS,40.132842,-74.988884,,,1, +30754,Byberry Rd & Townsend Rd - MBNS,40.105106,-74.985114,,,1, +30755,Academy Rd & Outlook Av,40.059875,-75.009403,,,1, +30757,Holme Av & Arthur St - FS,40.056644,-75.02579,,,1, +30758,Mechanicsville Rd & Mechanicsville Pl,40.094443,-74.963799,,,1, +30759,Neshaminy Blvd & Rockhill Rd - MBFS,40.135702,-74.955385,,,1, +30760,Maple Av & Wheeler Way,40.177268,-74.901102,,,1, +30763,Forrest Av & Fox Chase Rd- FS,40.089444,-75.105753,,,1, +30766,50th St & Jefferson St - MBNS,39.977659,-75.220787,,,1, +30767,Jefferson St & 49th St,39.976316,-75.218582,,,1, +30770,49th St & Jefferson St,39.97645,-75.218499,,,1, +30771,50th & Parkside Loop,39.978201,-75.219687,,,1, +30776,Old York Rd & Sunset Ln,40.160909,-75.111825,,,1, +30777,Street Rd & Walmart Dr,40.195386,-75.080046,,,1, +30778,Jacksonville Rd & Van Horn Dr - MBFS,40.19239,-75.087537,,,1, +30779,Jacksonville Rd & Van Horn Dr,40.191019,-75.088835,,,1, +30780,Old York Rd & Sunset Ln - FS,40.160926,-75.111528,,,1, +30781,Old York Rd & Easton Rd - FS,40.144478,-75.115947,,,1, +30783,West Chester Pk & Miller Rd,39.972741,-75.462329,,,1, +30784,West Chester & Whispering Brooke Dr,39.968122,-75.479076,,,1, +30786,Ridge Rd & Market St,39.824561,-75.420521,,,1, +30787,MacDade Blvd & Wayne Av,39.910246,-75.280489,,,1, +30789,Walnut Ln & Greene St - MBNS,40.036085,-75.183091,,,1, +30790,66th St & Lebanon Av - MBNS,39.97835,-75.252693,,,1, +30791,Girard Av & 24th St,39.972453,-75.175844,,,1, +30792,Alleghney Av & Lippincott St - FS,40.00238,-75.159572,,,1, +30793,Allegheny Av & 7th St,40.000155,-75.142269,,,1, +30794,Allegheny Av & 6th St,39.999946,-75.140698,,,1, +30795,Allegheny Av & Mascher St,39.998738,-75.131356,,,1, +30796,Allegheny Av & Amber St,39.99216,-75.109678,,,1, +30797,Allegheny Av & Thompson St,39.984762,-75.103142,,,1, +30799,Allegheny Av & Thompson St,39.984708,-75.102882,,,1, +30800,Allegheny Av & Tulip St,39.989637,-75.107232,,,1, +30801,Allegheny Av & Mascher St,39.998835,-75.131131,,,1, +30802,Lehigh Av & 7th St,39.992537,-75.143953,,,1, +30803,Lehigh Av & American St,39.991529,-75.136289,,,1, +30804,Cambria St & Memphis St,39.985343,-75.113973,,,1, +30805,Lehigh Av & Gurney St,39.990236,-75.125732,,,1, +30806,Lehigh Av & American St,39.991653,-75.136017,,,1, +30807,Lehigh Av & 7th St,39.99267,-75.143717,,,1, +30808,22nd St & Venango St,40.00921,-75.164534,,,1, +30809,22nd St & Somerset St,39.997283,-75.167308,,,1, +30810,Champlost Av & 16th St,40.04488,-75.146642,,,1, +30811,Ogontz Av & 69th Av,40.05982,-75.150024,,,1, +30812,Ogontz Av & 72nd Av,40.064299,-75.153437,,,1, +30813,Morris Rd & Cathcart Rd,40.173929,-75.270213,,,1, +30814,Woodland Av & 39th St,39.949655,-75.201597,,,1, +30815,Civic Center Blvd & Health Sciences,39.946362,-75.197286,,,1, +30818,Philmont Av & Overhill Av - FS,40.131765,-75.013137,,,1, +30819,Philmont Av & Overhill Av,40.131613,-75.013126,,,1, +30820,42nd St & Pine St,39.951075,-75.207072,,,1, +30821,42nd St & Walnut St,39.954501,-75.206376,,,1, +30822,42nd St & Chestnut St,39.956035,-75.206064,,,1, +30823,41st St & Baring St,39.96005,-75.20526,,,1, +30824,Roosevelt Blvd & Adams Av,40.029171,-75.102089,,,1, +30825,Haverford Av & 46th St - MBNS,39.962712,-75.211795,,,1, +30826,Haverford Av & 54th St,39.966175,-75.227706,,,1, +30827,Farragut St & Chestnut St - FS,39.957299,-75.214221,,,1, +30828,15th St & Ranstead St,39.951641,-75.165538,,,1, +30829,Market St & 37th St,39.956472,-75.19593,,,1, +30830,Farragut St & Walnut St,39.955684,-75.214698,,,1, +30831,Lansdowne Av & 63rd St - FS,39.975335,-75.245797,,,1, +30832,Conshohocken Av & E Country Club Rd,40.004494,-75.202272,,,1, +30833,Parkside Av & Belmont Av - FS,39.977502,-75.212849,,,1, +30834,Art Museum Dr & Spring Garden St 3,39.964791,-75.18232,,,1, +30835,Mantua Av & 32nd St - FS,39.966017,-75.188989,,,1, +30836,Belmont Av & Conshohocken Av - MBNS,39.998808,-75.219189,,,1, +30837,Parkside Av & 50th St - MBNS,39.979555,-75.218052,,,1, +30838, Delaware Av & Lewis St - FS,39.986457,-75.076256,,,1, +30839,Delaware Av & Wheatsheaf Ln,39.98477,-75.079442,,,1, +30840,Delaware Av & Tioga St,39.980503,-75.088902,,,1, +30841,Delaware Av & Ontario St,39.979206,-75.094378,,,1, +30842,Delaware Av & Allegheny Av,39.978794,-75.097487,,,1, +30843,Allegheny Av & Bath St,39.980933,-75.099568,,,1, +30844,50th St & Parkside Av,39.979825,-75.219328,,,1, +30845,Belmont Av & Thompson st,39.974834,-75.212762,,,1, +30846,Belmont Av & Mantua Av,39.972602,-75.212155,,,1, +30849,Spring Garden St & 36th St,39.962529,-75.194363,,,1, +30850,Spring Garden St & 35th St,39.962705,-75.19291,,,1, +30851,Delaware Av & Sugarhouse Dr,39.96545,-75.132463,,,1, +30853,Montgomery Av & Mc Clenaghan Mill R,40.013552,-75.267096,,,1, +30854,58th St & Ellsworth St,39.946068,-75.239949,,,1, +30855,Employee Platform - Employees Only,39.964477,-75.26266,,,2, +30856,Employee Platform - Employees Only,39.964549,-75.263309,,,2, +30857,Lancaster Av & Malvern Av,39.984329,-75.246015,,,1, +30858,11th St & Oregon Av - FS,39.916331,-75.165986,,,1, +30859,Germantown Av & Mermaid Ln,40.067708,-75.197211,,,1, +30860,Germantown Av & Mermaid Ln,40.067708,-75.197448,,,1, +30861,Levittown Pkwy & Bristol Pk,40.140778,-74.818052,,,1, +30862,Bristol Pk & Haines Rd - FS,40.132714,-74.830362,,,1, +30863,Engle St & 12th St,39.842395,-75.391147,,,1, +30864,7th St & Oregon Av - FS,39.915559,-75.159722,,,1, +30865,Chester Av & Yeadon Av,39.926213,-75.247368,,,1, +30866,10th St & Main St,39.920121,-75.263141,,,1, +30867,Tinicum Island Rd & Scott Way - MBNS,39.874429,-75.264816,,,1, +30868,Rising Sun Av & Olney Av - FS,40.034158,-75.115272,,,1, +30869,Oregon Av & Weccacoe Av,39.912858,-75.140824,,,1, +30870,20th St & Penrose Av - MBFS,39.911635,-75.182444,,,1, +30871,11th St & I95,39.899552,-75.169753,,,1, +30872,20th St & Oregon Av - FS,39.917763,-75.181031,,,1, +30874,9th St & Christian St,39.938911,-75.15778,,,1, +30875,77th St & Sherwood Rd,39.975787,-75.271647,,,1, +30876,77th St & Brookhaven Rd,39.974706,-75.270751,,,1, +30877,Ridge Av & Clearfield St,40.00482,-75.187346,,,1, +30878,Westminster Av & Lancaster Av,39.969568,-75.212542,,,1, +30879,Westminster Av & 48th St,39.969058,-75.216902,,,1, +30880,48th St & Walnut St - FS,39.955823,-75.217756,,,1, +30881,Front St & Wharton St,39.931416,-75.146239,,,1, +30882,Reed St & Columbus Blvd,39.929814,-75.144569,,,1, +30883,Reed St & Water St ,39.929978,-75.145773,,,1, +30884,Cecil B Moore Av & 33rd St - FS,39.98255,-75.188187,,,1, +30885,Cambria St & Kensington Av - FS,39.992517,-75.120322,,,1, +30886,Red Lion Rd & Academy Rd - FS,40.080273,-74.997394,,,1, +30888,Grant Rd & Academy Rd - FS,40.069562,-75.007631,,,1, +30889,Westminster Av & Belmont Av,39.96954,-75.21181,,,1, +30890,Snyder Av & Water St,39.921468,-75.147553,,,1, +30891,Snyder Av & Weccacoe Av,39.921213,-75.145441,,,1, +30892,Columbus Blvd & Dock St,39.945025,-75.141769,,,1, +30893,Columbus Blvd & Chestnut St,39.947612,-75.141216,,,1, +30894,Norris St & Frankford Av - FS,39.978449,-75.130353,,,1, +30895,Orthodox St & Melrose St,40.006793,-75.078129,,,1, +30896,Castor Av & Thompson St,39.990871,-75.091122,,,1, +30897,Castor Av & Gaul St,39.993215,-75.093202,,,1, +30898,Columbus Blvd & Race St - MBFS,39.952964,-75.14025,,,1, +30899,Columbus Blvd & Walnut St,39.946605,-75.141834,,,1, +30900,Columbus Blvd & Dock St,39.945222,-75.142099,,,1, +30901,Columbus Blvd & South St - FS,39.940796,-75.142448,,,1, +30902,Columbus Blvd & Washington Av - MBFS,39.932535,-75.143921,,,1, +30903,Columbus Blvd & Pier 70 Blvd,39.924333,-75.143975,,,1, +30904,Glenside Av & Glenview Av,40.094088,-75.13975,,,1, +30905,Ridge Av & Poplar St,39.970851,-75.165089,,,1, +30906,Ridge Av & Hunting Park Av - FS,40.000909,-75.186591,,,1, +30907,Main St & Hermit St,40.020106,-75.21545,,,1, +30908,Leverington St & Main St - FS,40.02911,-75.230614,,,1, +30909,Flat Rock Rd & Leverington St - MBF,40.029345,-75.232458,,,1,0 +30910,Umbria St & Lemonte St,40.033836,-75.233876,,,1, +30912,Leverington St & Main St,40.029001,-75.230356,,,1, +30913,Main St & Levering St,40.025861,-75.224772,,,1, +30914,Main St & Dawson St,40.018184,-75.213695,,,1, +30915,Main St & Kalos St,40.016691,-75.212364,,,1, +30916,Ridge Av & Ferry RD- FS,40.007629,-75.190646,,,1, +30918,Leverington Av & Main St,40.029216,-75.230283,,,1, +30919,Domino La & Ridge Av,40.045115,-75.232391,,,1, +30920,Ridge Av & Port Royal Av,40.059798,-75.23824,,,1, +30921,23rd St & Walnut St - FS,39.950923,-75.178589,,,1, +30923,Pond St & Old U S 13,40.096939,-74.858966,,,1, +30924,Pond St & Mulberry St - FS,40.097858,-74.856817,,,1, +30925,Jefferson Av & Radcliffe St - FS,40.099732,-74.846992,,,1, +30926,Easton Rd & 309 Hwy - MBFS,40.085422,-75.168475,,,1, +30927,Erie Av & D St - MBFS,40.006371,-75.11758,,,1, +30928,Erie Av & G St - MBNS,40.005704,-75.111331,,,1, +30935,Conshohocken Av & Cranston Rd - MBNS,40.002284,-75.210789,,,1, +30949,C St & Ashland St,40.028729,-75.117837,,,1, +30950,Washington St & Reliance Rd,40.324489,-75.322926,,,1, +30951,Reliance Rd & 3rd St,40.319976,-75.327313,,,1, +30952,Main St & Summit St,40.313951,-75.328307,,,1, +30953,Main St & Chestnut St,40.310233,-75.322532,,,1, +30954,Unionville Pk & Richmond Rd,40.28904,-75.293235,,,1, +30955,Unionville Pk & Richmond Rd,40.28871,-75.293271,,,1, +30956,Broad St & Market St,40.281591,-75.297128,,,1, +30957,Broad St & Main St,40.279487,-75.299588,,,1, +30958,Broad St & Cowpath Rd,40.25847,-75.265316,,,1, +30959,North Wales Rd & Harbor La - FS,40.240276,-75.244348,,,1, +30960,North Wales Rd & Horsham Rd,40.243671,-75.240273,,,1, +30961,Cowpath Rd & Bethlehem Pk - MBFS,40.248767,-75.245951,,,1, +30962,Cowpath Rd & Taylor Rd,40.252937,-75.253459,,,1, +30963,Cowpath Rd & Brookside Dr,40.257467,-75.262769,,,1, +30965,Forty Foot Rd & Towamencin Av,40.275244,-75.305835,,,1, +30966,Forty Foot Rd & Towamencin Av,40.27544,-75.305787,,,1, +30968,Broad St & Wayne Av,40.277855,-75.301453,,,1, +30969,Broad St & Wayne Av,40.278239,-75.301239,,,1, +30970,Bethlehem Pk & Township Line Rd,40.307819,-75.299607,,,1, +30971,County Line Rd & Cherry Ln,40.312576,-75.307325,,,1, +30972,County Line Rd & Cherry Ln,40.312558,-75.307645,,,1, +30973,Bethlehem Pk & Township Line Rd,40.307703,-75.299785,,,1, +30976,Reliance Rd & 2nd St,40.317817,-75.329168,,,1, +30977,Reliance Rd & 2nd St,40.318005,-75.329238,,,1, +30978,Washington St & Broad St,40.32726,-75.327433,,,1, +30979,Main St & Valley Forge Rd,40.248401,-75.295352,,,1, +30980,Main St & Richardson Av,40.244395,-75.288624,,,1, +30981,Broad St & Main St,40.241675,-75.283472,,,1, +30982,Broad St & 5th St,40.244261,-75.280906,,,1, +30983,Broad St & 7th St,40.246561,-75.278648,,,1, +30984,Broad St & Hatfield St,40.249093,-75.276164,,,1, +30985,State Rd & Ashburner St - MBNS,40.034637,-75.015557,,,1, +30986,Cottman Av & Brous Av,40.043284,-75.052126,,,1, +30987,Market St & Schuylkill Av - FS,39.954489,-75.180998,,,7, +30988,Cowpath Rd & Bethlehem Pk - MBNS,40.248786,-75.246603,,,1, +30989,Horsham Rd & Bethlehem Pk,40.246898,-75.243276,,,1, +30990,Cowpath Rd & Lansdale Av,40.252831,-75.253637,,,1, +30991,Broad St & Main St,40.279879,-75.299433,,,1, +30992,8th St & Walnut St - FS,39.947864,-75.154381,,,1, +30993,Baltimore Pk & State Farm Dr - FS,39.882308,-75.540435,,,1, +30995,Glendale Av & Cottman Av,40.054604,-75.071142,,,1, +30996,Olney Av & Rising Sun Av,40.034434,-75.115058,,,1, +30997,Bustleton Av & Knorr St,40.040504,-75.065596,,,1, +30998,Olney Square 2 DollarTree,40.03809,-75.117323,,,1, +30999,Olney Square 3 ShopRite,40.038148,-75.11912,,,1, +31000,Chelten Av & Germantown Av,40.035944,-75.174721,,,1, +31001,Westbrook Dr & Springfield Rd,39.930722,-75.308615,,,1, +31002,Westbrook Dr & Westpark Ln,39.931302,-75.308354,,,1, +31003,Cardinal O'Hara High School,39.947729,-75.346939,,,1, +31005,Pennell Rd & Glen Riddle Rd - FS,39.895011,-75.435285,,,1, +31006,Pennell Rd & Laurel Ln,39.897501,-75.4365,,,1, +31007,Trooper Rd & Shannondell Blvd - FS,40.127114,-75.405447,,,1, +31008,Trooper Rd & Blvd of the Generals - FS,40.127614,-75.404582,,,1, +31009,Trooper Rd & Van Buren Av ,40.12085,-75.411639,,,1, +31010,Dutton Mill Rd & Turner Way - FS,39.857474,-75.423147,,,1, +31011,Concord Rd & Incinerator Rd - MBFS,39.850091,-75.401461,,,1,0 +31012,Leverington Av & Silverwood St,40.031663,-75.225264,,,1, +31013,Leverington Av & Wilde St,40.030906,-75.226696,,,1, +31014,Leverington Av & Umbria St,40.029723,-75.229135,,,1, +31015,Lancaster Av & Summit Grove Av,40.022338,-75.31989,,,1, +31018,Lancaster Av & Central Av,40.045653,-75.445997,,,1, +31020,Old York Rd & Canterbury Rd,40.110758,-75.123338,,,1, +31021,Easton Rd & Street Rd ,40.229999,-75.138665,,,1, +31022,Easton Rd & Ruth Av,40.176356,-75.128293,,,1, +31023,Old York Rd & Green Briar Rd,40.080678,-75.126791,,,1, +31030,Easton Rd & Jenkintown Rd,40.109479,-75.145013,,,1, +31031,Gulph Mills Station,40.070731,-75.342408,1,,1, +31032,Wissahickon Transportation Center,40.014718,-75.206909,1,,1, +31033,Frankford Transportation Center,40.023543,-75.077019,1,,1, +31034,69th Street Transportation Center,39.962267,-75.258756,1,,1, +31035,Darby Transportation Center,39.919015,-75.263344,1,,1, +31036,Chester Transportation Center,39.849521,-75.360012,1,,1, +31037,Olney Transportation Center,40.038985,-75.144773,1,,1, +31038,Norristown Transportation Center,40.113709,-75.34509,1,,1, +31039,Parkwest Town Center,39.97876,-75.222638,,,1, +31041,Market St & 2nd St - 2,39.950009,-75.143592,,,1, +31042,Market St & 63rd St - FS,39.962562,-75.246519,,,1, +31043,Market St & 62nd St,39.962355,-75.244854,,,1, +31044,Market St & 61st St - FS,39.962057,-75.242564,,,1, +31045,Market St & 59th St - FS,39.961587,-75.238609,,,1, +31046,Market St & 58th St - FS,39.961334,-75.236625,,,1, +31047,Market St & 57th St - FS,39.96109,-75.234701,,,1, +31048,Whitman Plaza 4,39.913407,-75.154856,,,1, +31049,3rd St & Harwick St,39.830598,-75.393134,,,1, +31050,3rd St & Hayes St,39.832248,-75.38995,,,1, +31051,3rd St & Ward St,39.833416,-75.387851,,,1, +31052,3rd St & Highland Av,39.831731,-75.391047,,,1, +31055,Lancaster Av & Fairway Rd - MBFS,40.042283,-75.470258,,,1, +31056,Lancaster Av & Remington Rd - MBNS,39.994121,-75.266088,,,1, +31057,Lancaster Av & Fairway Rd,40.042435,-75.470389,,,1, +31058,Lancaster Av & Valley Forge Rd,40.047626,-75.419167,,,1, +31059,Main St & Ridge Av - FS,40.016206,-75.21051,,,1, +31060,Glendale Rd & Green Briar Ln,39.971843,-75.322944,,,1, +31061,Glendale Rd & Colonial Dr,39.969569,-75.324885,,,1, +31062,Glendale Rd & Nancy Dr,39.968178,-75.32654,,,1, +31063,Glendale Rd & Anthony Av,39.96702,-75.328645,,,1, +31064,Glendale Rd & Raymond Dr,39.965362,-75.331174,,,1, +31065,Glendale Rd & Anthony Dr,39.966877,-75.328527,,,1, +31066,Glendale Rd & Raymond Dr,39.965183,-75.331116,,,1, +31067,Glendale Rd & Nancy Dr,39.967893,-75.326576,,,1, +31068,Glendale Rd & Oak Wy,39.969907,-75.323691,,,1, +31069,Glendale Rd & Claremont Blvd,39.971566,-75.322815,,,1, +31070,Cedar Av & Coventry Ln,40.093329,-74.907259,,,1, +31071,Cedar Av & Coventry Ln,40.09322,-74.906964,,,1, +31072,Lindley Av & 7th St,40.029281,-75.135709,,,1, +31073,Lindley Av & 8th St,40.029453,-75.136973,,,1, +31074,Parkway Dr & Sussex Blvd,39.960247,-75.341693,,,1, +31075,S Central Blvd & Polk Wy,39.963077,-75.343201,,,1, +31076,Sussex Blvd & Oak Cir,39.96924,-75.338386,,,1, +31077,Lawrence Rd & Parkway Dr,39.964369,-75.353936,,,1, +31079,Sussex Blvd & S Central Blvd,39.967732,-75.337679,,,1, +31080,S Central Blvd & Polk Wy,39.963353,-75.343248,,,1, +31081,S Central Blvd & Red Hill Dr,39.962748,-75.345445,,,1, +31083,Parkway Dr & Reed Rd,39.95925,-75.346477,,,1, +31084,Parkway Dr & Sussex Blvd,39.95997,-75.341799,,,1, +31085,Parkway Dr & Opp 630,39.961528,-75.336081,,,1, +31086,Abbott Dr & Opp 982,39.960287,-75.335847,,,1, +31087,Sussex Blvd & Marpit Dr,39.957585,-75.339617,,,1, +31088,Marpit Dr & Reed Rd,39.956444,-75.341071,,,1, +31089,Parkway Dr & Drexel Rd,39.961138,-75.340156,,,1, +31090,Margaret St & Ditman St,40.012842,-75.077355,,,1, +31091,County Line Rd & Somers Dr - MBNS,40.159968,-75.05215,,,1, +31092,Southhampton Rd & Roosevelt Blvd,40.115663,-74.989546,,,1, +31093,Byberry Rd & Blakeslee Dr - MBFS,40.127438,-75.022028,,,1, +31096,Rhawn St & Torresdale Av,40.035239,-75.025036,,,1, +31097,Abbott Dr & Sussex Blvd,39.959103,-75.340501,,,1, +31098,Townsend Rd & McNulty Rd - 2,40.107356,-74.977656,,,1, +31099,Weccacoe Av & Wolf St - FS,39.917844,-75.143519,,,1, +31100,24th St & Oregon Av - MBFS,39.920658,-75.187253,,,1, +31101,Susquehanna Av & 28th St,39.98914,-75.178763,,,1, +31102,23rd St & Bainbridge St - FS,39.944456,-75.180513,,,1, +31103,23rd St & Oakford St,39.937212,-75.182085,,,1, +31104,Rising Sun Av & Princeton Av - FS,40.058138,-75.087137,,,1, +31105,Cheltenham Av & Penn St,40.027424,-75.07674,,,1, +31106,Grant Av & Welsh Rd - FS,40.087056,-75.040928,,,1, +31107,Grant Av & Frankford Av - FS,40.060587,-74.990535,,,1, +31108,Cheltenham Av & Penn St ,40.027371,-75.076905,,,1, +31109,Phoenixville Pk & Cedarwood Av,40.014968,-75.588436,,,1, +31110,Phoenixville Pk & Wyntrebrook Dr NS,40.012272,-75.589541,,,1, +31111,Phoenixville Pk & Boot Rd,40.009039,-75.590929,,,1, +31112,Fernhill Rd & Old Fernhill Rd,39.977351,-75.586983,,,1, +31113,Fernhill Rd & Turner Ln,39.975713,-75.590594,,,1, +31115,Pennsylvania Av & Fairmount Av,39.967382,-75.179441,,,1, +31116,Chalmers Av & Lehigh Av,39.997282,-75.180105,,,1, +31117,Poplar St & 30th St,39.973356,-75.185468,,,1, +31118,Industrial Hwy & Sellers Av,39.865909,-75.314822,,,1, +31119,74th St & Brewster Av,39.904455,-75.230028,,,1, +31120,Industrial Hwy & Simpson St - MBNS,39.858182,-75.338209,,,1, +31121,Industrial Hwy & Simpson St,39.857852,-75.339094,,,1, +31122,Venango St & Kensington Av,40.001374,-75.103976,,,1, +31123,Broad St & Vine St,39.958181,-75.162502,,,1,0 +31125,Malvern Av & 63rd St - FS,39.98367,-75.24682,,,1, +31127,Phoenixville Pk & Boot Rd,40.008762,-75.590846,,,1, +31128,Phoenixville Pk & Wyntrebrook Dr NS,40.011424,-75.589622,,,1, +31129,Phoenixville Pk & Nicholas Dr NOSGN,40.014736,-75.588306,,,1, +31130,9th Av & Main St,40.192824,-75.462357,,,1, +31132,Fernhill Rd & Old Fernhill Rd NOSGN,39.977235,-75.586818,,,1, +31133,Township Line Rd & Rittenhouse Rd,40.201977,-75.51244,,,1, +31134,Township Line Rd & Linfield Rd,40.206961,-75.507563,,,1, +31135,Township Line Rd & Ridge Pk - MBNS,40.213659,-75.500957,,,1, +31136,Ridge Pike & Township Line Rd - 3 MBFS,40.216122,-75.501564,,,1, +31138,Township Line Rd & Linfield Rd,40.2073,-75.507492,,,1, +31139,Township Line & Rittenhouse,40.201914,-75.512784,,,1, +31140,15th St Trolley Station,39.952502,-75.165369,,,1, +31141,Market St & 55th St - FS,39.96061,-75.230616,,,1, +31142,Market St & 53rd St - FS,39.960122,-75.226696,,,1, +31143,Market St & 51st St - FS,39.959616,-75.222753,,,1, +31144,Market St & 50th St - FS,39.959372,-75.220746,,,1, +31145,Market St & 49th St - FS,39.959136,-75.218904,,,1, +31146,Market St & 48th St - FS,39.958874,-75.216814,,,1, +31147,Broad St & I95 - no stop,39.900144,-75.175475,,,1, +31148,Walnut St & Farragut St,39.95563,-75.214533,,,1, +31149,Highland Av & 3rd St,39.831847,-75.391177,,,1, +31150,Garrett Rd & Lansdowne Av - FS,39.951489,-75.282305,,,1, +31151,3rd St & Ulrich St,39.842503,-75.369912,,,1, +31152,3rd St & Ulrich St,39.842744,-75.369676,,,1, +31153,Melrose Av & 21st St,39.867583,-75.357978,,,1, +31154,Upland Av & 22nd St - FS,39.857639,-75.371609,,,1, +31155,Street Rd & Middletown Rd,39.95056,-75.510428,,,1, +31156,Street Rd & Middletown Rd,39.950283,-75.51051,,,1, +31157,King Rd & Madeline Dr ,40.028724,-75.54533,,,1, +31158,King Rd & Madeline Dr NO SIGN,40.028965,-75.5452,,,1, +31165,Boot Rd & Delmar Dr,40.008095,-75.588823,,,1, +31166,Boot Rd & Longford Blvd ,40.008194,-75.588469,,,1, +31169,Wilson Dr & Boot Rd NO SIGN,40.000009,-75.574708,,,1, +31170,Fern Hill Rd & Goshen Rd - FS,39.978612,-75.59242,,,1, +31171,Wilson Dr & Boot Rd,39.999365,-75.575274,,,1, +31172,Ward Av & Airport Rd,39.989458,-75.576092,,,1, +31173,Old Eagle School Rd & Swedesford Rd,40.079694,-75.412372,,,1, +31174,Market St & 10th St,39.820018,-75.417422,,,1, +31176,High St & Miner St,39.958881,-75.603678,,,1, +31178,Market St & 9th St - MBNS,39.951292,-75.154451,,,1, +31180,Media Line Rd & Highland Av,39.979315,-75.384564,,,1, +31181,7th St & Kerlin St,39.846912,-75.370391,,,1, +31182,Market St & Ridge Rd,39.824418,-75.420438,,,1, +31183,Market St & Chesnut St,39.83503,-75.424269,,,1, +31184,Chichester Av & Sommers Ln,39.853492,-75.454492,,,1, +31185,Furey Rd & Creek Pkwy,39.855257,-75.461109,,,1, +31186,Creek Rd & Cheyney Rd - MBNS,39.930985,-75.526166,,,1, +31187,Conchester Hwy & Spring Valley Rd,39.88079,-75.519044,,,1, +31188,Creek Rd & Furey Rd,39.855124,-75.460861,,,1, +31189,Meetinghouse Rd & Friends Way,39.835235,-75.431956,,,1, +31190,Meetinghouse Rd & Market St,39.843053,-75.425435,,,1, +31191,Market St & Washington Av,39.838198,-75.424893,,,1, +31192,Market St & Hutchinson St,39.826078,-75.421994,,,1, +31193,Valley Forge Rd & Valley Park Rd,40.099681,-75.472492,,,1, +31194,Valley Forge Rd & Valley Park Rd,40.099253,-75.471296,,,1, +31195,Margaret St & Tacony St,40.0076,-75.076128,,,1, +31196,Cottman Av & State Rd - FS,40.025906,-75.031661,,,1, +31198,Winks Ln & State Rd - MBFS,40.082634,-74.919783,,,1, +31199,Montgomery Av & Bethlehem Pk,40.09197,-75.21378,,,1, +31206,3rd St & Irving St,39.828591,-75.397403,,,1, +31207,23rd St & Cherry St - FS,39.956936,-75.177305,,,1, +31208,23rd St & Arch St,39.95624,-75.177437,,,1, +31209,Montgomery Av & Owen Rd,40.00946,-75.277742,,,1, +31210,Hollow Rd & Conshohocken State Rd,40.031183,-75.263001,,,1, +31211,Main St & McDade Blvd,39.921274,-75.264189,,,1, +31218,65th St & Belmar St,39.929104,-75.240879,,,1, +31224,New St & Cedar St,40.177639,-75.552642,,,1, +31225,New St & Wall St,40.17721,-75.553672,,,1, +31242,Wissahickon Av & Kroc Center Dr,40.011976,-75.168542,,,1, +31244,Wissahickon Av & Kroc Center Dr,40.012074,-75.168423,,,1, +31245,Levittown Pkwy & Mill Creek Pkwy,40.155495,-74.828845,,,1, +31246,Levittown Pkwy & Mill Creek Pkwy,40.155376,-74.828337,,,1, +31251,Croydon Station,40.09363,-74.906784,,,1, +31268,Nutt Rd & Starr St,40.121933,-75.508797,,,1, +31270,52nd St & Jefferson St,39.979594,-75.225341,,,1, +31271,Nutt Rd & Valley Rd,40.121737,-75.507779,,,1, +31272,High St & Gay St - FS,40.138019,-75.518902,,,1, +31276,Germantown Pk & Red Rowen Ln,40.121351,-75.288086,,,1, +31277,Germantown Pk & Hilltop Rd,40.136113,-75.304028,,,1, +31278,Gallagher Rd & Chemical Rd - FS,40.102241,-75.295875,,,1, +31280,49th St & Woodland Av - FS,39.940999,-75.212676,,,1,0 +31281,Ridge Av & Shurs Ln,40.026986,-75.209519,,,1, +31282,Ridge Av & Terrace St,40.018715,-75.211211,,,1, +31283,City Av & Maple Av,39.998153,-75.233158,,,1, +31284,City Av & Raynham Rd,39.992308,-75.245628,,,1, +31287,Galloway Rd & Mechanicsville Rd,40.117312,-74.940617,,,1, +31288,Galloway Rd & Mechanicsville Rd,40.117061,-74.940358,,,1, +31289,Frankford Av & Delaware Av - FS,39.965205,-75.134342,,,1, +31291,63rd St & Chestnut St,39.961117,-75.247066,,,1, +31294,Malvern Av & 63rd St Loop - 2 onsite,39.98383,-75.245945,,,1, +31295,Bartram Av & 90th St,39.8838,-75.251557,,,1, +31298,Knights Rd & Franklin Mills Circle,40.095204,-74.959664,,,1, +31300,Neshaminy Blvd & Neshaminy Vly Dr,40.142544,-74.940432,,,1, +31302,Township Line & Penllyn Blue Bell - 2,40.134376,-75.282875,,,1, +31303,High St & Chestnut St,39.961413,-75.605845,,,1, +31304,King Rd & Alumnae Dr,40.026253,-75.570848,,,1, +31307,Broad St & Oregon Av - 2,39.916565,-75.17125,,,1, +31308,Oregon Av & Broad St,39.916762,-75.171603,,,1,0 +31309,Broad St & Hartranft St,39.908136,-75.173664,,,1, +31310,Marshall Rd & Eldon Av,39.944159,-75.287657,,,1, +31311,Street Rd & Castle Dr - MBNS,40.108101,-74.952242,,,1, +31312,Arleans Av & Lincoln Hwy - 2,40.190587,-74.8315,,,1, +31313,Tyburn Rd & New Falls Rd,40.183756,-74.81984,,,1, +31314,Hood Blvd & New Falls Rd,40.171962,-74.834286,,,1, +31315,Pennsylvania Av & Bridge St - MBNS,40.207838,-74.775299,,,1, +31316,Pennsylvania Av & Maple Av,40.21524,-74.782461,,,1, +31317,Lincoln Hwy & Oak Ln,40.190868,-74.828702,,,1, +31318,Arleans Av & Lincoln Hwy - MBFS,40.189078,-74.831549,,,1, +31319,West Trenton Av & Doloro Dr,40.210999,-74.794648,,,1, +31322,Penrose Av & Island Av,39.889038,-75.233138,,,1,0 +31323,Penrose Av & 20th St - NS,39.912777,-75.182287,,,1, +31324,Columbus Blvd & Oregon Av - MBNS,39.913726,-75.138047,,,1, +31325,Cardinal Av & City Av - FS,39.993765,-75.241453,,,1, +31326,Red Lion Rd & Roosevelt Blvd - MBNS,40.095663,-75.016494,,,1, +31328,West Trenton Av & Lafayette Av,40.214754,-74.786922,,,1, +31329,Lincoln Hwy & Oak Ln,40.191119,-74.828901,,,1, +31330,W Trenton Av & Valarie Av,40.201993,-74.809174,,,1, +31332,Tyburn Rd & New Falls Rd - FS,40.183633,-74.820197,,,1, +31333,Bristol Pk & Levittown Pkwy,40.140929,-74.817837,,,1, +31334,State Rd & Street Rd - FS,40.075948,-74.928419,,,1, +31335,State Rd & Dunks Ferry Rd - MBNS,40.077903,-74.924052,,,1, +31336,49th St & Parkside Av - FS,39.978911,-75.217003,,,1, +31337,Industrial Hwy & Osprey Dr - FS,39.864718,-75.320521,,,1, +31338,Washington Av & 3rd St - 2,39.93385,-75.149358,,,1, +31339,Washington Av & Moyamensing Av,39.933741,-75.148379,,,1, +31340,Montgomery Av & Levering Mill Rd - ,40.005272,-75.242865,,,1, +31341,Bethlehem Pk & Highland Av,40.150645,-75.212928,,,1, +31343,Old York Rd & Broad St,40.055292,-75.140841,,,1, +31344,Pulaski Av & Chelten Av - MBNS,40.030995,-75.181359,,,1, +31345,N Bucks Town Dr & Oxford Valley Rd,40.18588,-74.869832,,,1, +31347,Delaware Av & Frankford Av Loop,39.964936,-75.134178,,,1,0 +31348,19th St & JFK Blvd,39.954559,-75.17142,,,1, +31349,Godfrey Av & 2nd St,40.04496,-75.123655,,,1, +31351,20th St & Chelten Av,40.051719,-75.15164,,,1, +31352,Wayne Av & Chelten Av,40.03174,-75.179039,,,1, +31353,Manayunk Av & Burnside St,40.02471,-75.214361,,,1, +31354,Pennypack St & Rose La - FS,40.052115,-75.016414,,,1, +31355,Crispin St & Pennypack St - MBFS,40.051044,-75.013677,,,1, +31356,Holy Redeemer Hospital,40.109496,-75.080939,,,1, +31357,Banes St & Welsh Rd - FS,40.085356,-75.039612,,,1, +31358,Columbus Blvd & Snyder Av - 2 MBNS,39.921205,-75.141806,,,1, +31359,Neshaminy Blvd & Bristol Rd - FS,40.138778,-74.947598,,,1, +31360,Neshaminy Blvd & Bristol Rd - 2,40.138619,-74.947966,,,1, +31361,Verree Rd & Dogwood Ln,40.092866,-75.052634,,,1, +31362,Verree Rd & Marchman Rd - 2 MBFS,40.091754,-75.053894,,,1, +31363,Northeast Av & Gorman St,40.103723,-75.025039,,,1, +31364,Red Lion Rd & Sandmeyer Ln,40.106953,-75.038607,,,1, +31366,Decatur Rd & Comly Rd - MBNS Route 1,40.093163,-74.990146,,,1, +31367,Berks St & Front St - FS,39.978742,-75.133754,,,1, +31371,Reed Rd & Marpit Rd - MBFS at #388 ,39.957874,-75.343373,,,1, +31375,Galloway Rd & Richlieu Rd - MBFS,40.126618,-74.942139,,,1, +31379,Cottman Av & Frankford Av - FS,40.036913,-75.040964,,,1, +31380,Packer Av & Broad St,39.911676,-75.171905,,,1, +31382,5th St & Market St,39.950396,-75.148892,,,1, +31383,Broad St & Cayuga St - FS,40.020189,-75.148749,,,1, +31384,Einstein Medical Ctr - south entrance,40.152767,-75.344522,,,1, +31388,Curie Blvd & University Av - MBFS,39.94845,-75.196665,,,1, +31391,Curie Blvd & University Av - MBNS,39.94853,-75.196724,,,1, +31393,34th St & Convention Av,39.948702,-75.193027,,,1, +31394,N Crum Creek Rd & Crum Creek Rd,39.977663,-75.439248,,,1, +31395,Crum Creek Rd & West Chester Pk,39.976503,-75.43783,,,1, +31401,Ashland Av & MacDade Blvd - FS,39.905163,-75.292207,,,1, +31402,MacDade Blvd & Knowles Av,39.903409,-75.296081,,,1, +31403,Old Oxford Vly Rd & Bristol Oxford Vly Rd - MBNS,40.179345,-74.869433,,,1, +31405,Bristol Pk & Belmont Av,40.093892,-74.907575,,,1, +31406,Main St & Greenwood Av,40.206177,-75.487546,,,1, +31407,Main St & 7th Av,40.200878,-75.48106,,,1, +31408,Main St & Schuylkill Av,40.130755,-75.375246,,,1, +31409,Ridge Pike & Township Line Rd - 1 MBNS,40.213411,-75.497235,,,1, +31410,Main St & Williams Way,40.197301,-75.472822,,,1, +31411,Main St & 4th Av,40.188006,-75.453481,,,1, +31412,Ridge Pk & Germantown Pk,40.183901,-75.44611,,,1, +31413,Ridge Pk & Crosskeys Rd,40.179198,-75.44002,,,1, +31414,Main St & Hamilton St,40.121724,-75.359569,,,1, +31415,Main St & Sheridan Ln,40.124681,-75.364656,,,1, +31416,High St & Rosedale Dr,40.243136,-75.619533,,,1, +31417,High St & Heritage Dr,40.244251,-75.600944,,,1, +31418,High St & Shelly Ln,40.244527,-75.587901,,,1, +31419,High St & Roland St,40.243647,-75.623696,,,1, +31420,Light Cap Rd & Evergreen Rd - MBFS,40.236793,-75.576147,,,1, +31421,Light Cap Rd & Evergreen Rd - MBNS,40.23699,-75.57591,,,1, +31423,Main St & Whitehall Rd,40.129094,-75.37192,,,1, +31424,Main St & Schuylkill Av,40.130684,-75.374737,,,1, +31425,Main St & Egypt Rd,40.132506,-75.377955,,,1, +31426,DeKalb Pk & Bradbury Dr - FS,40.130669,-75.323595,,,1, +31427,Main St & Line St,40.238948,-75.27953,,,1, +31428,Main St & Woodland Dr - FS,40.2374,-75.276604,,,1, +31429,Swede St & Spruce St,40.122925,-75.340356,,,1, +31430,Swede St & Spruce St,40.122711,-75.34019,,,1, +31431,Huntingdon Pk & Barn Swallow La - FS,40.156258,-75.050133,,,1, +31432,Huntingdon Pk & St Joseph Manor,40.107993,-75.082946,,,1, +31433,5th St & Medary Av,40.046248,-75.128261,,,1, +31436,Stenton Av & Wyncote Av,40.054084,-75.155711,,,1, +31438,Hatfield Pointe Shopping Center,40.263582,-75.32004,,,1, +31442,2nd St & Market St - MBNS,39.950241,-75.143744,,,1, +31443,Girard Av & 62nd St,39.970063,-75.243216,,,1, +31446,Newportville Rd & Ford Rd ,40.114819,-74.90225,,,1, +31447,Newportville Rd & Ford Rd,40.114505,-74.902063,,,1, +31448,Midvale Av & River Rd - FS,40.00859,-75.194153,,,1, +31449,Conshohocken State Rd & Mary Waters Ford Rd,40.020618,-75.245732,,,1, +31450,Conshohocken State Rd & Mary Waters Ford Rd,40.020627,-75.245922,,,1, +31451,Johnson St & Wayne Av - FS,40.038339,-75.189858,,,1, +31452,Penrose & Pattison Av - FS,39.907971,-75.189349,,,1, +31453,Industrial Hwy & Clarion Hotel,39.867171,-75.30904,,,1, +31454,Germantown Pk & 1st Av,40.092274,-75.260752,,,1, +31455,Germantown Pk & Launfall Rd - MBNS,40.114368,-75.28539,,,1, +31456,Moyamensing Av & 20th St ,39.913659,-75.181682,,,1, +31458,Delaware Av & Columbia Av,39.967575,-75.12897,,,1, +31460,Germantown Av & Berkley St,40.023907,-75.159444,,,1, +31461,10th St & Packer Av,39.91086,-75.165723,,,1, +31462,Dauphin St & American St - FS,39.985381,-75.137153,,,1, +31463,Delaware Av & Montgomery Av,39.969558,-75.126056,,,1, +31464,Germantown Pk & Swede Rd - FS,40.145508,-75.318943,,,1, +31465,Germantown Pk & Penn Square Rd,40.145947,-75.321346,,,1, +31466,Germantown Pk & Stony Creek Rd - FS,40.147604,-75.327773,,,1, +31467,Germantown Pk & Scenic Rd,40.148607,-75.331999,,,1, +31468,Germantown Pk & North Wales Rd,40.149073,-75.334639,,,1, +31469,Germantown Pk & Stanbridge St,40.147453,-75.328152,,,1, +31470,Germantown Pk & Barley Sheaf Dr,40.148993,-75.334923,,,1, +31471,Germantown Pk & Scenic Rd - FS,40.148464,-75.331928,,,1, +31472,Germantown Pk & Hillcrest Av - FS,40.145814,-75.321311,,,1, +31473,Einstein Medical Ctr - north entrance,40.154524,-75.343146,,,1, +31474,Yarnall St 7th St - FS ,39.839966,-75.385713,,,1, +31475,Island Av & Escort Av,39.883965,-75.230864,,,1, +31478,Levittown Pkwy & Bristol Pike,40.140463,-74.817498,,,1, +31479,Stenton Av & Ogontz Av - FS,40.051716,-75.150304,,,1, +31480,Paschall Av & 49th St,39.939953,-75.211333,,,1, +31481,Aspen St & 45th St - FS,39.965622,-75.211999,,,1, +31482,Bethlehem Pk & W Valley Green Rd,40.113347,-75.214414,,,1, +31483,Bethlehem Pk & Camp Hill Rd,40.122081,-75.217086,,,1, +31487,Broad St & Pattison Av - 3 FS,39.90561,-75.173319,,,1,0 +31488,Lancaster Av & Powelton Av,39.959631,-75.195542,,,1, +31489,Glenwood Av & Frankford Av,40.000714,-75.097504,,,1, +31490,Castor Av & Wingohocking St - FS,40.013914,-75.097241,,,1, +31491,Castor Av & Wyoming Av Circle,40.017885,-75.096951,,,1, +31492,Greenwood Av & Washington Ln - MBNS,40.093618,-75.12237,,,1, +31493,Welsh Rd & Blair Mill Rd - MBNS 1,40.155928,-75.141169,,,1, +31499,Delaware Av & Castor Av,39.982524,-75.083765,,,1, +31500,Delaware Av & Venango St,39.981263,-75.086229,,,1, +31501,Baltimore Pk & Leamy Av,39.91855,-75.329315,,,1, +31505,Radcliffe St & Mulberry St,40.095935,-74.854063,,,1, +31506,Radcliffe St & Mulberry St,40.095668,-74.854172,,,1, +31509,Bristol Pk & Hillcrest Av,40.093927,-74.909432,,,1, +31511,Harbison Av & Frankford Av,40.026973,-75.062391,,,1, +31514,Willow Grove Av & Douglas Rd,40.085831,-75.185475,,,1, +31519,Stenton Av & 21st St,40.053931,-75.155097,,,1, +31520,Stenton Av & Chelten Av,40.051708,-75.150517,,,1, +31521,Warrington Plaza,40.231329,-75.138778,,,1, +31522,Northeast Av & Red Lion Rd,40.101991,-75.027439,,,1, +31523,Red Lion Rd & Bustleton Av - MBFS,40.103902,-75.030754,,,1, +31524,Red Lion Rd & Bustleton Av - MBNS,40.103016,-75.029765,,,1, +31525,Pennell Rd & Baltimore Pk - FS,39.912681,-75.439606,,,1, +31526,State Rd & Clarendon Rd,39.948242,-75.318776,,,1, +31527,Pennell Rd & Baltimore Pk,39.912673,-75.439818,,,1, +31528,Ridge Rd & Blue Ball Av,39.819814,-75.430718,,,1, +31529,Ridge Rd & Baker St - FS,39.8273,-75.414308,,,1, +31530,Ridge Rd & Baker St - 2 MBFS,39.828121,-75.41241,,,1, +31531,3rd St & Broomall St,39.839962,-75.375255,,,1, +31532,Morton Av & 7th St,39.853417,-75.35364,,,1, +31533,MacDade Blvd & Monta Vista Av - FS,39.887964,-75.328331,,,1, +31534,3rd St & Broomal St,39.840212,-75.37516,,,1, +31535,Ridge Rd & Blueball Av,39.820064,-75.430576,,,1, +31536,Ridge Rd & Naamans Rd,39.812254,-75.44413,,,1, +31537,9th St & Ashland Av,39.859176,-75.343515,,,1, +31538,9th St & Edgemont Av - MBNS,39.853029,-75.360032,,,1, +31540,Frankford Av & Girard Av - FS,39.96865,-75.134493,,,1, +31541,2nd St & Erie Av - FS,40.00653,-75.131737,,,1, +31543,Mall Blvd & Lincoln Hwy,40.178765,-74.877718,,,1, +31544,Woodbourne Rd & Terrace Rd,40.17389,-74.883477,,,1, +31545,Woodbourne Rd & Lincoln Hwy - FS,40.175832,-74.884694,,,1, +31548,Woodbourne Rd & Lincoln Hwy,40.176511,-74.884689,,,1, +31549,Rhawn St & Cresco Av,40.048148,-75.031691,,,1, +31551,Ridge Av & Natrona ST,39.991518,-75.185584,,,1, +31553,Dauphin St & Ridge Av,39.991661,-75.18576,,,1, +31554,State Rd & Ashburner St - MBNS,40.038708,-75.007825,,,1, +31555,Ardmore Junction Station,39.99619,-75.302998,,,1, +31556,Ardmore Junction Station,39.9961,-75.302809,,,1, +31557,Butler Av & Maple St - MBFS,40.153334,-75.22475,,,1, +31558,Pennsylvania Av & Commerce Dr - MBFS,40.135598,-75.208534,,,1, +31559,Highland Av & 12th St,39.83798,-75.397705,,,1, +31560,Street Rd & Fox Run Ln,39.962511,-75.493445,,,1, +31561,Street Rd & Smedley Dr,39.9579,-75.50374,,,1, +31562,Tanguy Rd & Portsmouth,39.942935,-75.514528,,,1, +31563,Pennsylvania Av & Camp Hill Rd,40.125846,-75.195767,,,1, +31566,Broad St & Snyder Av - MBNS,39.9248,-75.169697,,,1, +31567,Moreland Rd & Park Av,40.142837,-75.119755,,,1, +31568,Market St & Schuylkill Av - MBNS,39.95466,-75.182143,,,1, +31569,Marshall St & Buttonwood St,40.123846,-75.355542,,,1, +31570,Verree Rd & Bustleton Av - FS,40.107961,-75.027193,,,1, +31571,Henderson Rd & Shoemaker Rd - FS,40.081495,-75.356651,,,6,0 +31572,DeKalb Pk & Town Center Rd - FS,40.09322,-75.368033,,,6, +31574,Blvd of Generals & Gen Armstead Av,40.122382,-75.399814,,,1, +31575,Gen Arnold Av & Gen Armstead Av - FS,40.121284,-75.397482,,,1, +31576,Blvd of Generals & Gen Washington,40.124775,-75.400334,,,1, +31577,Blvd of Generals & Lafayette Av,40.123221,-75.397766,,,1, +31578,Blvd of Generals & Trooper Rd - MBNS,40.12698,-75.404014,,,1, +31579,Marshall Rd & Schuylkill Av,40.133396,-75.372379,,,1, +31580,40th St & Pennsgrove St,39.971748,-75.203972,,,1, +31581,40th St & Westminster Av,39.970391,-75.203716,,,1, +31582,40th St & Ogden St,39.969373,-75.203377,,,1, +31583,40th St & Westminster Av,39.970266,-75.203551,,,1, +31584,40th St & Pennsgrove St,39.971614,-75.203795,,,1, +31585,Cranston Rd & Lankenau Av - MBFS,40.001177,-75.210579,,,1, +31586,Parkside Av & 41st St,39.975278,-75.206512,,,1, +31590,26th St & Tastykake - 2,39.895812,-75.191844,,,1, +31591,26th St & Tastykake - 3,39.898536,-75.193098,,,1, +31592,17th St & North St,39.966434,-75.165613,,,1, +31593,11th St & Constitution Av,39.891689,-75.169817,,,1,0 +31594,Blair Mill Rd & Witmer Rd,40.164768,-75.135046,,,1, +31595,Manor Dr & Witmer Rd - MBNS,40.170256,-75.146134,,,1, +31596,Village Dr & Dresher Rd - MBFS,40.165327,-75.149055,,,1, +31597,Eagle Stream Dr & Ridge Pk - MBFS,40.156578,-75.40514,,,1,0 +31598,South Gulph Rd & Bill Smith Blvd - FS,40.08374,-75.385444,,,8, +31599,South Gulph Rd & Bill Smith Dlvd,40.083936,-75.38542,,,8, +31600,South Gulph Rd & Hayley Jackson Way,40.083275,-75.383078,,,8, +31601,South Gulph Rd & Dekalb Pk - MBNS,40.084713,-75.387904,,,8, +31602,Constitution Av & 12th St,39.891711,-75.171776,,,1,0 +31603,Constitution Av & 13th St,39.89159,-75.173711,,,1,0 +31604,Constitution Av & Broad St,39.891416,-75.175918,,,1,0 +31605,Broad St & Intrepid Av,39.893987,-75.176263,,,1,0 +31606,Bristol Pk & Haines Rd,40.132544,-74.830115,,,1,0 +31607,Rittenhouse Circle 200 ,40.11459,-74.886261,,,1,0 +31608,Rittenhouse Circle 180,40.116785,-74.886197,,,1,0 +31609,Durham Rd & Trenton Rd,40.153926,-74.89668,,,1,0 +31610,Cardinal Av & City Av,39.994024,-75.241441,,,1,0 +31611,Broad St & Langley Av,39.896093,-75.175808,,,1,0 +31612,Germantown Av & Evergreen Av,40.076643,-75.20758,,,1,0 +31613,Germantown Av & Erie Av,40.009341,-75.15093,,,1,0 +31614,Belmont Av & Av of the Republic,39.980164,-75.213999,,,1,0 +31617,Allegheny Av & Ridge Av - FS,40.005999,-75.187638,,,1,0 +31620,Woodland Av & 49th St - FS,39.94051,-75.21322,,,1,0 +31621,Essington Av & 70th St - MBFS,39.905284,-75.223913,,,1,0 +31624,Decatur Rd & Drummond Rd,40.089026,-74.996478,,,1,0 +31630,54th St & Woodbine Av - FS,39.992343,-75.233647,,,1,0 +31631,Lycoming St & 12th St,40.014721,-75.146052,,,1,0 +31632,Stoddard Av & Fayette St,40.072023,-75.308139,,,1,0 +31633,Limekiln Pk & Greenwood Av,40.082337,-75.161554,,,1,0 +31634,Crane St & 84th St,39.894324,-75.246835,,,1,0 +31635,Devon Park Dr & Old Eagle School Dr - MBFS,40.073483,-75.415709,,,1,0 +31645,Darby Rd & Brookline Blvd,39.978529,-75.304529,,,1,0 +31654,Darby Rd & Manoa Rd,39.976082,-75.30321,,,1,0 +31655,Weccacoe St & Oregon Av,39.91309,-75.140941,,,1,0 +31656,Resevoir Dr & SmithDay Nursery Dr,39.982547,-75.194286,,,1,0 +31658,Wissahickon Av & Fernhill Walk,40.016283,-75.170855,,,1,0 +31659,Wissahickon Av & Fernhill Walk,40.016291,-75.170666,,,1,0 +31660,Huntingdon Pk & Moreland Rd,40.113988,-75.072135,,,1,0 +31664,Germantown Av & Mill St,40.143568,-75.315571,,,1,0 +31669,Chelten Av & Morris St,40.02937,-75.181423,,,1,0 +31670,Harbison Av & Higbee St,40.023753,-75.063116,,,1,0 +31671,Seven Stars Ln & Gallagher Rd,40.101107,-75.295179,,,1,0 +31672,Gallagher Rd & Seven Stars Ln,40.10133,-75.295451,,,1,0 +31673,Harry St & Elm St,40.072495,-75.306364,,,1,0 +31674,3rd St & Pusey St,39.842111,-75.371268,,,1,0 +31675,Church Ln & Guilford Rd,39.949838,-75.254688,,,1,0 +31676,Church Ln & Cleveland Av,39.945092,-75.255798,,,1,0 +31677,Melrose Av & 17th St,39.864271,-75.355716,,,1,0 +31680,7th St & Jeffrey St,39.838967,-75.386563,,,1,0 +31683,Egypt Rd & Surrey Ln - MBFS,40.129232,-75.434781,,,1,0 +31684,Resevoir Dr & SmithDay Nursery Dr - 1,39.98346,-75.195275,,,1,0 +31685,Woodbourne Rd & Quincy Dr,40.156559,-74.861949,,,1,0 +31687,Spring Garden St & Front St,39.960253,-75.139027,,,1,0 +31688,Spring Garden St & 10th St,39.961538,-75.154624,,,1,0 +31690,Eagle Rd & Darby Rd,39.988299,-75.310845,,,1,0 +31691,Eagle Rd & Grasslyn Av,39.986249,-75.313636,,,1,0 +31692,Eagle Rd & Hillcrest Av - MBFS,39.983378,-75.317091,,,1,0 +31693,Eagle Rd & Warren Av,39.98146,-75.318311,,,1,0 +31695,Eagle Rd & Maryland Av,39.976704,-75.318897,,,1,0 +31696,Eagle Rd & Lincoln Av,39.975107,-75.319266,,,1,0 +31697,Eagle Rd & Lincoln Av,39.974865,-75.319112,,,1,0 +31698,Eagle Rd & Maryland Av,39.976507,-75.318791,,,1,0 +31699,Eagle Rd & Virginia Av,39.979711,-75.318349,,,1,0 +31700,Eagle Rd & Achille Rd - Warren Rd,39.981326,-75.318157,,,1,0 +31701,Eagle Rd & Hillcrest Av,39.983815,-75.316381,,,1,0 +31702,Eagle Rd & Grasslyn Av,39.985892,-75.313779,,,1,0 +31703,Eagle Rd & Darby Rd,39.987978,-75.311058,,,1,0 +31704,Upland Rd & Edgmont Av - FS,39.868612,-75.382357,,,1,0 +31705,Upland Rd & Arlington Av,39.865944,-75.382277,,,1,0 +31706,Upland Rd & Victor Av,39.862865,-75.382161,,,1,0 +31707,Main St & 11th St,39.861008,-75.382079,,,1,0 +31708,Main St & 6th St,39.855681,-75.382449,,,1,0 +31709,Main St & 11th St,39.860339,-75.381844,,,1,0 +31710,Upland Rd & Victor Av - FS,39.862749,-75.381937,,,1,0 +31711,Upland Rd & Arlington Av,39.865747,-75.382053,,,1,0 +31712,Upland Rd & Edgmont Av,39.868648,-75.382145,,,1,0 +31714,Henry Av & Domino La - MBNS,40.050401,-75.22223,,,1,0 +31719,Red Lion Rd & Global Rd,40.108434,-75.041487,,,1,0 +31720,Bakers Centre & Fox St - onsite 1,40.009499,-75.175039,,,1,0 +31722,46th St & Market St - FS,39.958887,-75.213885,,,1,0 +31723,Market St & 63rd St,39.962857,-75.246577,,,1,0 +31724,Clarissa St & Dennie St,40.018937,-75.159923,,,1,0 +31725,Easton Rd & County Line Rd - MBNS,40.205999,-75.139711,,,1,0 +31726,Easton Rd & Sauerman Rd - MBFS,40.293233,-75.127586,,,1,0 +31727,Fox St & Queen Ln - detour,40.01861,-75.18321,,,1,0 +31728,Front St & Lehigh Av - FS,39.991159,-75.130749,,,1,0 +31729,West Chester Pk & Evergreen Av,39.983792,-75.376646,,,1,0 +31730,Eagle Rd & Virginia Av,39.979916,-75.318502,,,0,0 +31731,Bullens Ln & MacDade Blvd - FS,39.870945,-75.353563,,,0,0 +31732,Bullens Ln & Toth Dr,39.868828,-75.350769,,,0,0 +31733,Morton Av & Ridley Av - FS,39.862447,-75.349668,,,0,0 +31734,Morton Av & Melrose Av,39.859093,-75.35229,,,0,0 +31735,Morton Av & McDowell Av,39.858602,-75.352479,,,0,0 +31736,Morton Av & Ridley Av,39.862188,-75.349704,,,0,0 +31737,Bullens Ln & Toth Dr,39.868712,-75.350522,,,0,0 +31738,Bullens Ln & MacDade Blvd,39.871088,-75.353515,,,0,0 +31741,Latches Ln & West Chester Pk,39.983085,-75.372358,,,0,0 +31743,University Av & Curie Blvd,39.947677,-75.19884,,,0,0 +31744,Civic Ctr Blvd & Health Sciences Dr - FS,39.947672,-75.191448,,,0,0 +31745,Bakers Center & Roberts Av,40.010701,-75.178049,,,0,0 +31746,Bridge St & Ramsay Rd - FS south of I95,40.006775,-75.068427,,,0,0 +31747,Bridge St & Tacony St,40.00857,-75.068772,,,0,0 +31748,Old Washington Ln & Stenton Av - FS,40.05895,-75.164846,,,0,0 +31749,Morton Av & Johnson St,39.859895,-75.351522,,,0,0 +31750,Dupotail Rd & Liberty Ridge Dr,40.068517,-75.463188,,,0,0 +31752,Stenton Av & Northwestern Av,40.092887,-75.223468,,,0,0 +31753,Delaware Av & Penn St,39.961872,-75.136718,,,0,0 +31755,Mascher St & Ashdale St - MBNS,40.028452,-75.125002,,,0,0 +31756,South Gulph Rd & Henderson Rd - FS,40.075941,-75.353344,,,0,0 +31758,Nedro Av & Broad St,40.042875,-75.144048,,,0,0 +31759,66th St & Elmwood Av,39.921432,-75.231763,,,0,0 +31760,Valley Forge Rd & 5th Av,40.104157,-75.404236,,,0,0 +31761,59th St & Baltimore Av - FS school trip,39.945098,-75.241723,,,0,0 +31762,Main St & Barbadoes St,40.115692,-75.347573,,,0,0 +31763,Frost Rd & Ford Rd,40.117971,-74.894095,,,0,0 +31764,Frost Rd & Ford Rd - FS,40.117873,-74.894202,,,0,0 +31765,Frost Rd & Sinclair Rd,40.116359,-74.894912,,,0,0 +31766,Frost Rd & Sinclair Rd,40.116528,-74.894839,,,0,0 +31768,Dekalb Pk & Freedley St,40.124187,-75.332175,,,0,0 +31769,16th St & Green St,39.964102,-75.164323,,,0,0 +31771,Willits Rd & Crispin Dr - FS,40.054835,-75.010202,,,0,0 +31775,Island Av & Buist Av - 2 bus,39.911293,-75.242578,,,0,0 +31776,Venango St & 23rd St,40.009588,-75.166057,,,0,0 +31777,Harding Blvd & Wood St - FS,40.127363,-75.342741,,,0,0 +31778,Harding Blvd & Fornance St,40.128844,-75.341544,,,0,0 +31779,Harding Blvd & Freedley St,40.130217,-75.340193,,,0,0 +31780,Harding Blvd & Cooledge Blvd,40.131208,-75.339339,,,0,0 +31781,Logan St & Markley St,40.132899,-75.333714,,,0,0 +31782,Dekalb Pk & Skippack Pk - MBNS,40.16436,-75.292798,,,0,0 +31783,Pennsylvania Av & Fort Washington Av,40.137433,-75.211606,,,0,0 +31786,Godfrey Av & 21st St - school,40.048979,-75.155482,,,0,0 +31787,48th St & Osage Av,39.951871,-75.218607,,,0,0 +31788,Northwestern Av & Stenton Av,40.092781,-75.223657,,,0,0 +31789,Stevens Dr & Airport Business Ctr,39.874405,-75.280965,,,0,0 +31790,69th St Transportation Center - NHSL,39.96257,-75.258566,,,0,0 +31791,SEI Complex & Building 100,40.142048,-75.447605,,,0,0 +31792,Penrose Av & Pattison Av - MBFS,39.907127,-75.191453,,,0,0 +31793,Ridge Av & Lehigh Av ,39.998261,-75.187699,,,0,0 +31794,Ridge Pk & Township Line Rd - 1 MBNS,40.215756,-75.50122,,,0,0 +31795,Belgrade St & Somerset St - detour,39.981487,-75.113671,,,0,0 +31796,Thompson St & Cumberland St - detour,39.975986,-75.11959,,,0,0 +31798,Uwchlan Av & Sheree Blvd,40.060138,-75.65382,,,0,0 +31799,Lincoln Hwy & Valley Creek Blvd,40.032252,-75.591667,,,0,0 +31800,Lincoln Hwy & Tabas Ln,40.029,-75.619984,,,0,0 +31814,Elwyn Industries Side Entrance,39.860006,-75.400573,,,0,0 +31815,Warren St & Market St - FS,40.214534,-74.763468,,,0,0 +31817,Ogontz Av & Limekiln Pk - FS,40.078111,-75.15976,,,0,0 +31819,Elwyn Industries Front Entrance,39.860381,-75.401375,,,0,0 +31820,Valley Stream Pkwy & Swedesford Rd,40.057039,-75.518778,,,0,0 +31821,Harding St & Chain St,40.133053,-75.336199,,,0,0 +31826,Bakers Centre - onsite 2,40.008745,-75.177276,,,0,0 \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/.gitignore b/ubilabs-geocomplete-7d8228f/.gitignore deleted file mode 100644 index 38c51a3..0000000 --- a/ubilabs-geocomplete-7d8228f/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.DS_Store -_temp -node_modules \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt b/ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt deleted file mode 100644 index 7c338b1..0000000 --- a/ubilabs-geocomplete-7d8228f/MIT-LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2012 Ubilabs, http://ubilabs.net/ - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/README.md b/ubilabs-geocomplete-7d8228f/README.md deleted file mode 100644 index e10d5ac..0000000 --- a/ubilabs-geocomplete-7d8228f/README.md +++ /dev/null @@ -1,200 +0,0 @@ -# $.geocomplete() - Version 1.5 -## jQuery Geocoding and Places Autocomplete Plugin - -An advanced jQuery plugin that wraps the Google Maps API's [Geocoding](https://code.google.com/apis/maps/documentation/javascript/geocoding.html) and [Places Autocomplete](https://code.google.com/apis/maps/documentation/javascript/places.html#places_autocomplete) services. You simply provide an input that lets you search for locations with a nice autocomplete dropdown. Optionally add a container to show an interactive map and a form that will be populated with the address details. - -View the [annotated source](http://ubilabs.github.com/geocomplete/docs/). - -## Basic Usage - -To convert an input into an autocomplete field, simply call the Geocomplete plugin: - -```javascript -$("input").geocomplete(); // Option 1: Call on element. -$.fn.geocomplete("input"); // Option 2: Pass element as argument. -``` - -## Examples - -Here is a list of basic uses: - -* [Simple](http://ubilabs.github.com/geocomplete/examples/simple.html) - Single input with an event logger. -* [Map](http://ubilabs.github.com/geocomplete/examples/map.html) - Adding a map. -* [Location](http://ubilabs.github.com/geocomplete/examples/location.html) - Adding a default location. -* [Form](http://ubilabs.github.com/geocomplete/examples/form.html) - Populate form fields. -* [Attribute](http://ubilabs.github.com/geocomplete/examples/custom_attribute.html) - Using custom attributes to populate data. -* [Multiple results](http://ubilabs.github.com/geocomplete/examples/multiple_results.html) - Handling multiple results from the geocoder. -* [Draggable](http://ubilabs.github.com/geocomplete/examples/draggable.html) - A draggable marker to redefine the position. - -## Requirements - -Make sure you include the Google Maps API with the Places Library before loading this plugin as described [here](https://developers.google.com/maps/documentation/javascript/places#loading_the_library). - -````html - - -``` - -If you use the plugin without showing a map you must display the "[powered by Google](https://developers.google.com/maps/documentation/javascript/places#autocomplete_no_map)" logo under the text field. - -## Trigger Request - -To trigger a geocoding request from outside (eg. when hitting the "find" button), simply trigger the "geocode" event on the element. - -````javascript -$("input").geocomplete(); - -// Trigger geocoding request. -$("button.find").click(function(){ - $("input").trigger("geocode"); -}); -``` - -## Adding a Map Preview - -To link the geocode results with an interactive map, you can pass `map` as an option to the plugin. - -```javascript -$("#my_input").geocomplete({ - map: "#my_map" -}); -``` - -The `map` option might be a selector, a jQuery object or a DOM element. - -## Populate Form Data - -You can pass `details` as an option to specify a container that will be populated when a geocoding request was successful. - -By default the plugin analyses the `name` attribute of the containers child nodes and replaces the content. You can override the `detailsAttribute` to use another attribute such as `data-geo`. - -If the element is an input, the value will be replaced otherwise the plugin overrides the current text. - -**Note**: Some address components such as "country" return an additional `short_name`. You can access them by simply adding `_short` at the end of the type. - -Simple Example: - -```html -
    - Latitude: - Longitude: - Address: -
    -``` - -```javascript -$("input").geocomplete({ details: "form" }); -``` - -Advanced Example: - -```html -
    - Latitude: - Longitude: - Address: - Country Code: -
    -``` - -```javascript -$("input").geocomplete({ - details: ".details", - detailsAttribute: "data-geo" -}); -``` - -## List of Options - -The following options might be passed to the plugin call. If you omit them, they fall back to the default. - -Example: - -```javascript -$("#my_input").geocomplete({ - map: "#my_map", - mapOptions: { - zoom: 10 - }, - markerOptions: { - draggable: true - }, - details: "#my_form" -}); -``` - -* `map` - Might be a selector, a jQuery object or a DOM element. Default is `false` which shows no map. -* `details` - The container that should be populated with data. Defaults to `false` which ignores the setting. -* `location` - Location to initialize the map on. Might be an address `string` or an `array` with [latitude, longitude] or a `google.maps.LatLng`object. Default is `false` which shows a blank map. -* `bounds` - Whether to snap geocode search to map bounds. Default: `true` if false search globally. Alternatively pass a custom LatLngBounds object -* `detailsAttribute` - The attribute's name to use as an indicator. Default: `"name"` -* `mapOptions` - Options to pass to the `google.maps.Map` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MapOptions). -* `mapOptions.zoom` - The inital zoom level. Default: `14` -* `mapOptions.scrollwheel` - Whether to enable the scrollwheel to zoom the map. Default: `false` -* `mapOptions.mapTypeId` - The map type. Default: `"roadmap"` -* `markerOptions` - The options to pass to the `google.maps.Marker` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions). -* `markerOptions.draggable` - If the marker is draggable. Default: `false`. Set to true to enable dragging. -* `markerOptions.disabled` - Do not show marker. Default: `false`. Set to true to disable marker. -* `maxZoom` - The maximum zoom level to zoom in after a geocoding response. Default: `16` -* `componentRestrictions` - Option for Google Places Autocomplete to restrict results by country. See the [docs](https://developers.google.com/maps/documentation/javascript/places#places_autocomplete) -* `types` - An array containing one or more of the supported types for the places request. Default: `['geocode']` See the full list [here](http://code.google.com/apis/maps/documentation/javascript/places.html#place_search_requests). -* `blur` - Defaults to `false`. When enabled it will trigger the geocoding request whenever the geofield is blured. (See jQuery `.blur()`) - -## Events - -You can subscribe to events of the geocode plugin by using the default jQuery syntax: - -````javascript -$("input") - .geocomplete() - .bind("geocode:result", function(event, result){ - console.log(result); - }); -``` - -The following events are supported: - -* `"geocode:result"` - Geocode was successful. Passes the original result as described [here](http://code.google.com/apis/maps/documentation/javascript/geocoding.html#GeocodingResults). -* `"geocode:error"` - Fired when the geocode returns an error. Passes the current status as listed [here](http://code.google.com/apis/maps/documentation/javascript/geocoding.html#GeocodingStatusCodes). -* `"geocode:multiple"` - Fired immediately after the "result" event if multiple results were found. Passes an array of all results. -* `"geocode:dragged"` - Fired when the marker's position was modified manually. Passes the updated location. -* `"geocode:click"` - Fired when 'click' event occurs on the map. Passes the location where the click had place. - -## Methods and Properties - -You can access all properties and methods of the plugin from outside. Simply add a string as the first argument to the `.geocomplete` method after you initialized the plugin. - -Example: - -````javascript -// Initialize the plugin. -$("input").geocomplete({ map: ".map_canvas" }); - -// Call the find method with the parameter "NYC". -$("input").geocomplete("find", "NYC"); - -// Get the map and set a new zoom level. -var map = $("input").geocomplete("map"); -map.setZoom(3); -``` - -## Address and Places Specific Component Types - -The following types are supported by the geocoder and will be passed to the provided form or container: - -`street_address`, `route`, `intersection`, `political`, `country`, `administrative_area_level_1`, `administrative_area_level_2`, `administrative_area_level_3`, `colloquial_area`, `locality`, `sublocality`, `neighborhood`, `premise`, `subpremise`, `postal_code`, `natural_feature`, `airport`, `park`, `point_of_interest`, `post_box`, `street_number`, `floor`, `room`, `lat`, `lng`, `viewport`, `location`, `formatted_address`, `location_type`, `bounds` - -For more information about address components visit http://code.google.com/apis/maps/documentation/geocoding/#Types - - -Additionally the following details are passed when the Places API was requested: - -`id`, `url`, `website`, `vicinity`, `reference`, `rating`, `international_phone_number`, `icon`, `formatted_phone_number` - -More information can be found here: https://developers.google.com/maps/documentation/javascript/places#place_details_responses - - -## About - -Developed by [Martin Kleppe](http://twitter.com/aemkei) at [Ubilabs](http://ubilabs.net). - diff --git a/ubilabs-geocomplete-7d8228f/build.sh b/ubilabs-geocomplete-7d8228f/build.sh deleted file mode 100755 index 3657ae0..0000000 --- a/ubilabs-geocomplete-7d8228f/build.sh +++ /dev/null @@ -1,18 +0,0 @@ -# sh build.sh - -# minify script -uglifyjs --comments license jquery.geocomplete.js > jquery.geocomplete.min.js - -## create documentation -docco jquery.geocomplete.js -mv docs/jquery.geocomplete.html docs/index.html - -rm -Rf _temp - -mkdir _temp -mkdir _temp/examples - -mv docs _temp -cp jquery.geocomplete.js _temp/ -cp jquery.geocomplete.min.js _temp/ -cp examples/* _temp/examples \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/changelog.txt b/ubilabs-geocomplete-7d8228f/changelog.txt deleted file mode 100644 index 8e8499d..0000000 --- a/ubilabs-geocomplete-7d8228f/changelog.txt +++ /dev/null @@ -1,15 +0,0 @@ -# Changelog - $.geocomplete() - -Version 1.2 - -* Add "bounds" option to search within -* Add "location" options to set default location. - -Version 1.1 - -* Add API to access methods and properties from outside -* Add events for draggable marker - -Version 1.0 - -* Initial version \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/examples/api.html b/ubilabs-geocomplete-7d8228f/examples/api.html deleted file mode 100644 index 8987fab..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/api.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - $.geocomplete() - - - - - -
    - - -
    - -
    - - Call: - - - - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/bounds.html b/ubilabs-geocomplete-7d8228f/examples/bounds.html deleted file mode 100644 index b0b7ba6..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/bounds.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - $.geocomplete() - - - - - -
    - - -
    - -
    - -

    Try searching for "Google". Results should be biased within Sydney.
    For further details on result biasing: http://code.google.com/apis/maps/documentation/javascript/places.html#adding_autocomplete

    - - - - - - - - - - - \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/examples/country_limit.html b/ubilabs-geocomplete-7d8228f/examples/country_limit.html deleted file mode 100644 index 1ced31a..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/country_limit.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - $.geocomplete() - - - - - -
    - - -
    - -
    - -

    Try searching for somewhere. All results should be within Germany.
    - For further details on result limiting via country: http://code.google.com/apis/maps/documentation/javascript/places.html#adding_autocomplete and read about 'componentRestrictions'.
    - The Geocoder can also be limited by region: https://developers.google.com/maps/documentation/javascript/reference#GeocoderRequest -

    - - - - - - - - - - - \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/examples/custom_attribute.html b/ubilabs-geocomplete-7d8228f/examples/custom_attribute.html deleted file mode 100644 index c4d5e8a..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/custom_attribute.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - $.geocomplete() - - - - - - -
    - -
    - - - -
      -
    • Location:
    • -
    • Route:
    • -
    • Street Number:
    • -
    • Postal Code:
    • -
    • Locality:
    • -
    • Country Code:
    • -
    • State:
    • -
    - -
    - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/draggable.html b/ubilabs-geocomplete-7d8228f/examples/draggable.html deleted file mode 100644 index cac7e82..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/draggable.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - $.geocomplete() - - - - - - -
    - -
    - - - -
    - - - - - - - - -
    - - -
    - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/form.html b/ubilabs-geocomplete-7d8228f/examples/form.html deleted file mode 100644 index 4abe92d..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/form.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - $.geocomplete() - - - - - - -
    - -
    - - - -
    -

    Address-Details

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/location.html b/ubilabs-geocomplete-7d8228f/examples/location.html deleted file mode 100644 index 9d777f0..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/location.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - GeoComplete - - - - - -
    - -
    - -
    - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/logger.js b/ubilabs-geocomplete-7d8228f/examples/logger.js deleted file mode 100644 index 61295b7..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/logger.js +++ /dev/null @@ -1,4 +0,0 @@ -$.log = function(message){ - var $logger = $("#logger"); - $logger.html($logger.html() + "\n * " + message ); -} diff --git a/ubilabs-geocomplete-7d8228f/examples/map.html b/ubilabs-geocomplete-7d8228f/examples/map.html deleted file mode 100644 index ded9d1a..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/map.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - GeoComplete - - - - - -
    - - -
    - - - -
    - -
    Log:
    - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/multiple_results.html b/ubilabs-geocomplete-7d8228f/examples/multiple_results.html deleted file mode 100644 index 0360643..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/multiple_results.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - $.geocomplete() - - - - - -
    - -
    - - -
    - -
      - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/simple.html b/ubilabs-geocomplete-7d8228f/examples/simple.html deleted file mode 100644 index 88de4af..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/simple.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - $.geocomplete() - - - - - -
      - - -
      - -
      - Examples: - Hamburg, Germany - 3rr0r - Hauptstraße -
      - -
      Log:
      - - - - - - - - - - - diff --git a/ubilabs-geocomplete-7d8228f/examples/styles.css b/ubilabs-geocomplete-7d8228f/examples/styles.css deleted file mode 100644 index c30b5c7..0000000 --- a/ubilabs-geocomplete-7d8228f/examples/styles.css +++ /dev/null @@ -1,31 +0,0 @@ -body { - color: #333; -} - -body, input, button { - line-height: 1.4; - font: 13px Helvetica,arial,freesans,clean,sans-serif; -} - - -a { - color: #4183C4; - text-decoration: none; -} - -#examples a { - text-decoration: underline; -} - -#geocomplete { width: 200px} - -.map_canvas { - width: 600px; - height: 400px; - margin: 10px 20px 10px 0; -} - -#multiple li { - cursor: pointer; - text-decoration: underline; -} \ No newline at end of file diff --git a/ubilabs-geocomplete-7d8228f/jquery.geocomplete.js b/ubilabs-geocomplete-7d8228f/jquery.geocomplete.js deleted file mode 100644 index f97e9c3..0000000 --- a/ubilabs-geocomplete-7d8228f/jquery.geocomplete.js +++ /dev/null @@ -1,500 +0,0 @@ -/** - * jQuery Geocoding and Places Autocomplete Plugin - V 1.5.0 - * - * @author Martin Kleppe , 2012 - * @author Ubilabs http://ubilabs.net, 2012 - * @license MIT License - */ - -// # $.geocomplete() -// ## jQuery Geocoding and Places Autocomplete Plugin - V 1.5.0 -// -// * https://github.com/ubilabs/geocomplete/ -// * by Martin Kleppe - -(function($, window, document, undefined){ - - // ## Options - // The default options for this plugin. - // - // * `map` - Might be a selector, an jQuery object or a DOM element. Default is `false` which shows no map. - // * `details` - The container that should be populated with data. Defaults to `false` which ignores the setting. - // * `location` - Location to initialize the map on. Might be an address `string` or an `array` with [latitude, longitude] or a `google.maps.LatLng`object. Default is `false` which shows a blank map. - // * `bounds` - Whether to snap geocode search to map bounds. Default: `true` if false search globally. Alternatively pass a custom `LatLngBounds object. - // * `autoselect` - Automatically selects the highlighted item or the first item from the suggestions list on Enter. - // * `detailsAttribute` - The attribute's name to use as an indicator. Default: `"name"` - // * `mapOptions` - Options to pass to the `google.maps.Map` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MapOptions). - // * `mapOptions.zoom` - The inital zoom level. Default: `14` - // * `mapOptions.scrollwheel` - Whether to enable the scrollwheel to zoom the map. Default: `false` - // * `mapOptions.mapTypeId` - The map type. Default: `"roadmap"` - // * `markerOptions` - The options to pass to the `google.maps.Marker` constructor. See the full list [here](http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions). - // * `markerOptions.draggable` - If the marker is draggable. Default: `false`. Set to true to enable dragging. - // * `markerOptions.disabled` - Do not show marker. Default: `false`. Set to true to disable marker. - // * `maxZoom` - The maximum zoom level too zoom in after a geocoding response. Default: `16` - // * `types` - An array containing one or more of the supported types for the places request. Default: `['geocode']` See the full list [here](http://code.google.com/apis/maps/documentation/javascript/places.html#place_search_requests). - - var defaults = { - bounds: true, - country: null, - map: false, - details: false, - detailsAttribute: "name", - autoselect: true, - location: false, - - mapOptions: { - zoom: 14, - scrollwheel: false, - mapTypeId: "roadmap" - }, - - markerOptions: { - draggable: false - }, - - maxZoom: 16, - types: ['geocode'], - blur: false - }; - - // See: [Geocoding Types](https://developers.google.com/maps/documentation/geocoding/#Types) - // on Google Developers. - var componentTypes = ("street_address route intersection political " + - "country administrative_area_level_1 administrative_area_level_2 " + - "administrative_area_level_3 colloquial_area locality sublocality " + - "neighborhood premise subpremise postal_code natural_feature airport " + - "park point_of_interest post_box street_number floor room " + - "lat lng viewport location " + - "formatted_address location_type bounds").split(" "); - - // See: [Places Details Responses](https://developers.google.com/maps/documentation/javascript/places#place_details_responses) - // on Google Developers. - var placesDetails = ("id url website vicinity reference name rating " + - "international_phone_number icon formatted_phone_number").split(" "); - - // The actual plugin constructor. - function GeoComplete(input, options) { - - this.options = $.extend(true, {}, defaults, options); - - this.input = input; - this.$input = $(input); - - this._defaults = defaults; - this._name = 'geocomplete'; - - this.init(); - } - - // Initialize all parts of the plugin. - $.extend(GeoComplete.prototype, { - init: function(){ - this.initMap(); - this.initMarker(); - this.initGeocoder(); - this.initDetails(); - this.initLocation(); - }, - - // Initialize the map but only if the option `map` was set. - // This will create a `map` within the given container - // using the provided `mapOptions` or link to the existing map instance. - initMap: function(){ - if (!this.options.map){ return; } - - if (typeof this.options.map.setCenter == "function"){ - this.map = this.options.map; - return; - } - - this.map = new google.maps.Map( - $(this.options.map)[0], - this.options.mapOptions - ); - - // add click event listener on the map - google.maps.event.addListener( - this.map, - 'click', - $.proxy(this.mapClicked, this) - ); - - google.maps.event.addListener( - this.map, - 'zoom_changed', - $.proxy(this.mapZoomed, this) - ); - }, - - // Add a marker with the provided `markerOptions` but only - // if the option was set. Additionally it listens for the `dragend` event - // to notify the plugin about changes. - initMarker: function(){ - if (!this.map){ return; } - var options = $.extend(this.options.markerOptions, { map: this.map }); - - if (options.disabled){ return; } - - this.marker = new google.maps.Marker(options); - - google.maps.event.addListener( - this.marker, - 'dragend', - $.proxy(this.markerDragged, this) - ); - }, - - // Associate the input with the autocompleter and create a geocoder - // to fall back when the autocompleter does not return a value. - initGeocoder: function(){ - - var options = { - types: this.options.types, - bounds: this.options.bounds === true ? null : this.options.bounds, - componentRestrictions: this.options.componentRestrictions - }; - - if (this.options.country){ - options.componentRestrictions = {country: this.options.country}; - } - - this.autocomplete = new google.maps.places.Autocomplete( - this.input, options - ); - - this.geocoder = new google.maps.Geocoder(); - - // Bind autocomplete to map bounds but only if there is a map - // and `options.bindToMap` is set to true. - if (this.map && this.options.bounds === true){ - this.autocomplete.bindTo('bounds', this.map); - } - - // Watch `place_changed` events on the autocomplete input field. - google.maps.event.addListener( - this.autocomplete, - 'place_changed', - $.proxy(this.placeChanged, this) - ); - - // Prevent parent form from being submitted if user hit enter. - this.$input.keypress(function(event){ - if (event.keyCode === 13){ return false; } - }); - - // Listen for "geocode" events and trigger find action. - this.$input.bind("geocode", $.proxy(function(){ - this.find(); - }, this)); - - // Trigger find action when input element is blured out. - // (Usefull for typing partial location and tabing to the next field - // or clicking somewhere else.) - if (this.options.blur === true){ - this.$input.blur($.proxy(function(){ - this.find(); - }, this)); - } - }, - - // Prepare a given DOM structure to be populated when we got some data. - // This will cycle through the list of component types and map the - // corresponding elements. - initDetails: function(){ - if (!this.options.details){ return; } - - var $details = $(this.options.details), - attribute = this.options.detailsAttribute, - details = {}; - - function setDetail(value){ - details[value] = $details.find("[" + attribute + "=" + value + "]"); - } - - $.each(componentTypes, function(index, key){ - setDetail(key); - setDetail(key + "_short"); - }); - - $.each(placesDetails, function(index, key){ - setDetail(key); - }); - - this.$details = $details; - this.details = details; - }, - - // Set the initial location of the plugin if the `location` options was set. - // This method will care about converting the value into the right format. - initLocation: function() { - - var location = this.options.location, latLng; - - if (!location) { return; } - - if (typeof location == 'string') { - this.find(location); - return; - } - - if (location instanceof Array) { - latLng = new google.maps.LatLng(location[0], location[1]); - } - - if (location instanceof google.maps.LatLng){ - latLng = location; - } - - if (latLng){ - if (this.map){ this.map.setCenter(latLng); } - if (this.marker){ this.marker.setPosition(latLng); } - } - }, - - // Look up a given address. If no `address` was specified it uses - // the current value of the input. - find: function(address){ - this.geocode({ - address: address || this.$input.val() - }); - }, - - // Requests details about a given location. - // Additionally it will bias the requests to the provided bounds. - geocode: function(request){ - if (this.options.bounds && !request.bounds){ - if (this.options.bounds === true){ - request.bounds = this.map && this.map.getBounds(); - } else { - request.bounds = this.options.bounds; - } - } - - if (this.options.country){ - request.region = this.options.country; - } - - this.geocoder.geocode(request, $.proxy(this.handleGeocode, this)); - }, - - // Get the selected result. If no result is selected on the list, then get - // the first result from the list. - selectFirstResult: function() { - //$(".pac-container").hide(); - - var selected = ''; - // Check if any result is selected. - if ($(".pac-item-selected")['0']) { - selected = '-selected'; - } - - // Get the first suggestion's text. - var $span1 = $(".pac-container .pac-item" + selected + ":first span:nth-child(2)").text(); - var $span2 = $(".pac-container .pac-item" + selected + ":first span:nth-child(3)").text(); - - // Adds the additional information, if available. - var firstResult = $span1; - if ($span2) { - firstResult += " - " + $span2; - } - - this.$input.val(firstResult); - - return firstResult; - }, - - // Handles the geocode response. If more than one results was found - // it triggers the "geocode:multiple" events. If there was an error - // the "geocode:error" event is fired. - handleGeocode: function(results, status){ - if (status === google.maps.GeocoderStatus.OK) { - var result = results[0]; - this.$input.val(result.formatted_address); - this.update(result); - - if (results.length > 1){ - this.trigger("geocode:multiple", results); - } - - } else { - this.trigger("geocode:error", status); - } - }, - - // Triggers a given `event` with optional `arguments` on the input. - trigger: function(event, argument){ - this.$input.trigger(event, [argument]); - }, - - // Set the map to a new center by passing a `geometry`. - // If the geometry has a viewport, the map zooms out to fit the bounds. - // Additionally it updates the marker position. - center: function(geometry){ - - if (geometry.viewport){ - this.map.fitBounds(geometry.viewport); - if (this.map.getZoom() > this.options.maxZoom){ - this.map.setZoom(this.options.maxZoom); - } - } else { - this.map.setZoom(this.options.maxZoom); - this.map.setCenter(geometry.location); - } - - if (this.marker){ - this.marker.setPosition(geometry.location); - this.marker.setAnimation(this.options.markerOptions.animation); - } - }, - - // Update the elements based on a single places or geoocoding response - // and trigger the "geocode:result" event on the input. - update: function(result){ - - if (this.map){ - this.center(result.geometry); - } - - if (this.$details){ - this.fillDetails(result); - } - - this.trigger("geocode:result", result); - }, - - // Populate the provided elements with new `result` data. - // This will lookup all elements that has an attribute with the given - // component type. - fillDetails: function(result){ - - var data = {}, - geometry = result.geometry, - viewport = geometry.viewport, - bounds = geometry.bounds; - - // Create a simplified version of the address components. - $.each(result.address_components, function(index, object){ - var name = object.types[0]; - data[name] = object.long_name; - data[name + "_short"] = object.short_name; - }); - - // Add properties of the places details. - $.each(placesDetails, function(index, key){ - data[key] = result[key]; - }); - - // Add infos about the address and geometry. - $.extend(data, { - formatted_address: result.formatted_address, - location_type: geometry.location_type || "PLACES", - viewport: viewport, - bounds: bounds, - location: geometry.location, - lat: geometry.location.lat(), - lng: geometry.location.lng() - }); - - // Set the values for all details. - $.each(this.details, $.proxy(function(key, $detail){ - var value = data[key]; - this.setDetail($detail, value); - }, this)); - - this.data = data; - }, - - // Assign a given `value` to a single `$element`. - // If the element is an input, the value is set, otherwise it updates - // the text content. - setDetail: function($element, value){ - - if (value === undefined){ - value = ""; - } else if (typeof value.toUrlValue == "function"){ - value = value.toUrlValue(); - } - - if ($element.is(":input")){ - $element.val(value); - } else { - $element.text(value); - } - }, - - // Fire the "geocode:dragged" event and pass the new position. - markerDragged: function(event){ - this.trigger("geocode:dragged", event.latLng); - }, - - mapClicked: function(event) { - this.trigger("geocode:click", event.latLng); - }, - - mapZoomed: function(event) { - this.trigger("geocode:zoom", this.map.getZoom()); - }, - - // Restore the old position of the marker to the last now location. - resetMarker: function(){ - this.marker.setPosition(this.data.location); - this.setDetail(this.details.lat, this.data.location.lat()); - this.setDetail(this.details.lng, this.data.location.lng()); - }, - - // Update the plugin after the user has selected an autocomplete entry. - // If the place has no geometry it passes it to the geocoder. - placeChanged: function(){ - var place = this.autocomplete.getPlace(); - - if (!place || !place.geometry){ - if (this.options.autoselect) { - // Automatically selects the highlighted item or the first item from the - // suggestions list. - var autoSelection = this.selectFirstResult(); - this.find(autoSelection); - } - } else { - // Use the input text if it already gives geometry. - this.update(place); - } - } - }); - - // A plugin wrapper around the constructor. - // Pass `options` with all settings that are different from the default. - // The attribute is used to prevent multiple instantiations of the plugin. - $.fn.geocomplete = function(options) { - - var attribute = 'plugin_geocomplete'; - - // If you call `.geocomplete()` with a string as the first parameter - // it returns the corresponding property or calls the method with the - // following arguments. - if (typeof options == "string"){ - - var instance = $(this).data(attribute) || $(this).geocomplete().data(attribute), - prop = instance[options]; - - if (typeof prop == "function"){ - prop.apply(instance, Array.prototype.slice.call(arguments, 1)); - return $(this); - } else { - if (arguments.length == 2){ - prop = arguments[1]; - } - return prop; - } - } else { - return this.each(function() { - // Prevent against multiple instantiations. - var instance = $.data(this, attribute); - if (!instance) { - instance = new GeoComplete( this, options ); - $.data(this, attribute, instance); - } - }); - } - }; - -})( jQuery, window, document ); diff --git a/ubilabs-geocomplete-v1.5.1-8-g7d8228f.tar.gz b/ubilabs-geocomplete-v1.5.1-8-g7d8228f.tar.gz deleted file mode 100644 index 01330a303a565ed7126f87cb61aaaa95ec741f23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13318 zcmV+hH2KRPiwFP!000001MFRWSKG$Y@89|q`-nal$T9K@7!n7##{rZ0T;8tjv`-#R zkG;0mwh~!#^#XBw`rYr$?5-@y#*lH=~t0<)6DF*Y9(;I~Lp) z!4D6Al;GIi-KD>9OMao4|l|U$L0NSYb1QIgQ+Vbv84>5_)s!%J?!mOZ(slLJGcI;d*Cms57mKH$KQPY zubO{rT&csm?kesv;BGWj85nw+H3_PMU#J_@uHI4hO6OIdp?I7!Z9Kpp9FAju< zR4|UBAFxokE^=_7-!#^F@2Cw(F{Y@{NU4bA-i-Z8b|j#pVH|iMQrI+HA5=yXKZ-$w zT(J4jcU}Jmh6W-%+rbfqHN)t@E#CL91&u{cw&zFCRoMlcfa!cz)va*Mq3?ZRNQHr1 zP%lpnCqVJAc)Z8~-B101gSyg?Bayg&p)t#HP4R=M&ti3Ta9*`U9?#9?DDkPI4-c}`O)e7sApY1mzc_E6pR_YeyX}x(?V8`{d`r8IkT>zIB!)B^?Kfi0x zC6HH#e~voMi*o~Xa&&RtX~Ag$M%n5lq(3*?jRLE;nr&3bN$UdGqdI}&f|vl^c|&qR zRkO^DKodNF-)_wNa@?q&0HC|5l@ZeAcig_BYB{9seuky-Gg* z!=>u(bNqjVV~zc2rRIKPlWnn|AQWLFC|gxyZH;~WcPxS#dyB0wa8lH`bol_HKs}BU zTDTUE9M3T75Gd?x?hPPlDB>yIg2=!lb`$VvNI~MQ?~h!;&hWf`*<26VRU+k=4TK*d z;14(#)`*%~AgjoyPFS1(O)&!xiXZtk4+nuWjfx}9#TrKwcawU2wWQ16BxFkbNWz-@ z-Q_9Xn-KkjYX_UK4}Q!-2d;xA0{_~vG4w(}odWzIod7||X4p#bU@(SI9x&G*a2Zn( zsW8qw3fXCm+kro|{Tt6>7gKBs@p%Ti2MmP}0Kt|B5HEyd|3*rTM8E+F0T_V6Nw|f= zCTeONiun-Dr?E>2j6~yH0aw6LAs{Va>xK~5e{#eP-MZo)fCg$F`f)H&YE41M5paq7 zq}Y_Pp=!h8Ca?l4d&5I#z}|;^Bmgq_*#B!0L~}hs-w{k^6)<#!3$Rn^c7XVV3~Me# znI7PvUavQwJ>$m>llYpOS^Iy@Sh1+o$;vf$ggoJ=a0Oa{W&CIjy$p%w^EyRXsj*AI zv6>1nEdxLtOAgQx8gk<^M;4)Byb}`SaR8%Xgczz%>Hq|a2<`>DYU2p+tyrNr7fCTf zt%5Dqh9v|a zg)!QiGLa3~JGltf5`2>GDiAQe;JZlp)DImw!?qsIpd!oQ;A{mpzl7a3+ zc(JBLb)hp|SM~y3AUK5{s>Rrs%~==>4oszCWUK^XV44eqv*O3_pOO!xWd~BoKSD@D z{or88-B6f^`$fs~Fw6YouNa%tzRda(A7@JcuIGfuQU8T_D;t(T_pq?%8NbAUqPEBe{;H{d6Gz1wTi2 zB*KV7O{A`Imf!|3LAo#301Pz5n7tuJ7G&qbV`C?Zq`koSz*KFM!Qzd4Z!-x-nkzL? zE67yNR+So(m_oCEpWtK|5M%Th7J6$Tq3nl6o!Ybpt~2GOgf{fL)DI3;1Quhk&&YDN9M2Q27HO4#(n*7({+hfZqzH`m&zl zqb(d?oTVlRbdkgc3^VK)JhNeZ$P7whqs4)RQ!#Lcvn(vT1#qExEwjWMU>e2)u>5cs zyU?XKvm^?p7A6M}I17aY*gcO=L~kBkbaf`_MaTwY$F&)j{X>F-fso59X@}!ydYnFB zvcOS3R*yG{jXhO014ceH2vUNf=VMe$4~wMOKKSq08(hLKsTkcOEOGgRpcgOB{YbocQDbd?GRLxLLcWKgB;=m)s zY0F|7cUceoT@ZCit#hq#niUj0K_90a0GDg0*CiU91vy$!vYLiyHpK#&#C94EN~9`7 z0iuvYFz-|Fff0nZ8e?orWqU<-VzOD* z!}eH@2LYe;WVfzdwJHk$(bT&8Me3)gkRPF3SiGmeLhA2Mb#c~rIUo_Ovpy^EpqP6Vs#gAjmHt!U^NHhKG#W{ z?E4$ysVpEhk*P2#XEce9>mj+=BzmeiXge?qevs~+iS5juGDBt0$WQ&G@$iUnc_9Kd7C!q{2T%S|iWYYW$?Rs|Xvgjc-8 zTucelgD&sn25f;W@KFGjgqxdd;ZZJ0#yxL@cZj#L;52t>RXG9hvjefMY3mN6u~4{9 zPeuT#9Qq(dopLdn%)i&PAmJ0tOscnKCP-xKJcCs-d*fHjP#_@EaN08-LGB@m!d>NGT^v8#3Ec-MdFeGj8vD8hH8 z$L^}WD9i4i{eOQ-Kkk})8G=}2xOx>`rLA;n&^Man=rHlk)@ZcC3S>qch)PJCNd zS1to|;E^Lz>t9t5P%G2qHnpB8O63id7f6>RAy_2E224ZT0`IS|4jrZ+rK`xW7rCm(1$eP(CLDSrt?#mnw@lO|20GwpTkF1XLLp-ct>h2}w z`za3q0b^gy^AAVnts-Pmwjf(6&TmDOq%f#n$bRsts<=txPUD&f)Z&2M#u_0Xuta+R z7Kkx6wzD-;%7#*p$=g)_a|Y~4BL{}?av|TAQ8nW#(dnn3!4TV|Y?w{Q<)dX=KD>g^ zoTQ96XJ8vbM7l`PE3jVRV=@9is8$;a^7wc@^<9`wNbB)L!4mulXcw#l7*YDug?{ob zX{}pceY>*y_O_G*TKF{vE23L?30D~OgkT)0^PAF8%)EW2- z$Sk_3JE8;s7r^;Y;19aQod8u$jls)EB2Y=!A9hJI5b!mpZr}e*GNdxSc+v;x4i|>5 z?*~$;06DSmoQPb=W#JFj&9#su(MGa-@hIJ(i{^kAR90&kCmN4Ao}@(g!~6IkW=T!+ z+5uO|zA%U+k)yb#Ow_0+^-ovY;@n_WYD*@oj4^T98v5eXH=ck)3jRHZCM^!g!fr$# zIx3`|2Izliij#bWPB<1S5@Yqa>`-?)hQX%h!5QQgn`vPfXL}foH8-_B%DnwBwwjbx(m-> zJrUv4#Cz}mS+)PGA3LsXh2wACV|3U1Kh@px!v3$F%JcrO$2is?&t`g}!8jTE=;4g1 z&>oLmIQtl~tu6JMAYxS7yp)t8;v`=Ws zUBtHXCIox&na&LZV&7J4$mIJh#^jUj1nMO9JK2?BXaTCtV0z2IB-t(ZRSq{?A7_*4UArWypkbdqE9jz7@2B zDLWtmW=b?-rXO$1A~}L|$J5O;iZRngP=wrzTenhT%32J<2Hfx`lcPy0he{<$ncW$R zP}Li-G?m|5lonJ%K`L!w*YfgHPsS4*tJZ(w!@g0*UGcxP`2O$SZfWQF{ohA8?lu3A zD^P6xN*QW~*x+f-5ouS2!rBWZ_)ubLu}LP)j@uIAy2 z^45M)wm)1T2BZ$zW1g4_SXjF{qT3re2J`=X&0f^>*3*B019_d_oSNQYdYcgbk$=t$ z!D~ferc;4p+1j(pIxmn2Jk5KNxn(WOB0jF}k=hu)*eatUJ?B5>_FC$z=33e|7dN%& zW3e!r-28){vZM@4b5<6ze6#2Mx{xoI-YHWV)@qrVQtB${WRQgvC1X+mkYasyaf8T4 zxl~}KRPR##BQ2)PTe8Zu&DU-h$E$y(=Ny&^`5elVLXGWnrR;~~ZhT_V5)vUBtR6Bb+lB%-1UEWNH@DZ^7{VixL-3@wLTVq%20%8b#5CkoH{g-qb z89HlO1!dqyW+Eh7x))rU6W)P#(paZl{t|%m)WPZb`0mHO@SlEJfxeXUsR%$>Gv%+WSSgv!2sgM}IQ{H(1f0JU8@F)1)rBK_d_&pwH>* zYj=qxdt27DSoK1()YF5rMI9*%ea6m@i=7d`?pAkS0dy`|JJoWvvinqEG+FQKwpf2U z5W4$}LH{(z{qWziPng_a#$EVtd-409JEgt7XZ-gF$DbYlp(Dm?3+?IE1Rxj$LU^Wj z)3o#XcK}FsG_JAjQfd16H5n!{{~pL${=F`-mvjx@s>?{CDu!t{>Fc z+N)QubSvMXO0gKq!lb~Or}mC7`|^J*c;a#eH*Y&RI?wu^T(@TT8H{o z<;7R*lMP51+Tj-bf%X~VmQOFo=P7Ap{0g!*?fz!xw5NEHJhM4`1)EFSntsa%0#f_d zSFku$TjH0G9`CFm{*o^gtWpMFro$EQ3M^%|U&NVRl12SDqty92`x>PBIM0`}W!&^v zIKU4rySx0W61vf?PmEW5km&YdEc-suqNHUolBE9yAJ{(daWDLr{czhC%eVvo?UZ-& z|Nn;y0Kn(xzmIYJ?eL$1cX*P;ch9)+F>qnITxM_ZyBRlpR$%AihJEmZPw?x*Ljgps z&@@Wnec>MJ&q4v}p!50tdw)?Y6Vxumo1=_?zhWzZjqI3T6Ic|G6l{k6y6816{HI-0wt+ z{`?=H60BC4=`6)1T5?S7%P&4H)>BN*4cV0Z54KI-y;YJ@WOw=+f-dU!W>o1soXtqn zu_&9;|FNv7xEuy{t|qR5)01b10f9DgER@0MXm2Tz-dVicZ zw{zV5)J~f$rpp=RouU=MyIKa`)x@Z>JKb=*xBGvY&qnrta1GbZ%UEOo_kO#d;J^0v zdr$7||2ueYVE_NMsy}v+>-QS_Z;x@<#H{w|etipOlIdNXm*9RN99fT#DvQk*)saJm z(TN6r3EOB7!!G1fdg^F@KMn}kQ2xu1-mZ)_^8ZQiS$zJ}Uhiq|{`|MQc((8qcbHmk z7QP0NI5@9pGUDvp;=z|QJopb*3grta1?}LEonp6W{r9+dShV1mP{a`2=I1{ler3-_ z^ItD_y=56|=Kucwv)uV#_xS(2c<%MTAOGwxq@r`lIbQVg=L0Qq;J`M|KN-9}UQEwB z8sX`nHDR)UTa1Q_8M@8>?|-Xe@3-sH?@y;src1tkGFVLJLdqa{BK3AtHF$z&Y@ezw z*n0k1eSYx!$ME)ESN?hE%I`oSHuP_Gi;OFc?vZKnQ8x#qF>tzWvKbQ~Vwx2-;A>gZ z3h+fM`3n5`tFONJip!T|o0jITPFdFCB_-;e-nP-R?x-4{&o5Ae@)vRA#!)M(&)vi9 zqmopl6@wd>hY+o;HeR+3WrL7z@2sxF4e(Fzhgo)K&u02x?(X=_%UGlT?fvdaa{kBD z-jjR#?=GI7JO1bA1at9vqUe8CX==T@b3+y*%Iubv=Nud7gxtO6v_f;brQ)<@%Fdlv zYMqN)?!q%p=msjgQW`Q=h1lRetaqw$RD+WXxvg(zaz*L5Gvut8vcMJkFiHR|#<0)U zPV^osNzR|8%3GR#Fqu^2({Jjw>(NZ2RhmVvlS8;Q-vQThx@VHP*$Eri{Cw1`yHI5| zTL0-n`&$P8{mXj)Pj4^v|Jv|sz(=i`!1|1z3x+#250pc|Ja|rDL$!2-&c5da0izA!KiaKt*Y5zJnNjm zDn9Pu&quRrIy|F79t?uApZ5NB|6`(vLhI3Kby80S#zO(;n8k=i%A2GFnO;q?mYm$$ z^)94p?+Hb1JqW|afSP=N#!+GLLRh6!o}kIGn4VPKdV2m?lFuH$9?l=hAKl5t1hkch zkLfb_-z1k^;>+LsfS!2#7)d;Iw@053=NF4(GFzlgk4=G+`1oprK6~)MYkpfD5K`mQ z`m*Eh(Cv`?01dS|1-%gD3%5khdf>nDgk!yUQ#Xn6tZCE{!8*pKbSWh#e^~TEH1?r& zpQHT4qmT#1tQu7(^LpAr%USxVKK=*1!^`Fe#fvXKFCYn4saw2|!hn3Aw90;Qc`-b> zz+d9g>n9CI?bl#jRi*6VV3mcw~Yf$&; zKJr;L$CIypneHNXDAdIv0*N8t3Of8}MfvbJ+mQYbP+t>OHLgyF8YJ%ba2(@ zy1g7pP-mwYX*A{$_f$VUC%Df&xwhj5#qnq`{x0l2xgZ|e@%M|0PX5NbR>x3rQTFwU z);V>%+)ClfIw<;h>_@*Cp0Nd>$)%(SE4u0(YQpEj7JYlWhj4_i z8y?looP+hlDTEiVpU`FU{GNyB0=jpET?}J8oL8?4;?Al#8%}3)enZ#2(oinIl$kLX zkB0CW2JX+eye16g4y#kna);P%&nQj`yJP_^9^mD&F!ZNTHQ;gEHykM3w=+ZL783o! z-)>9Y0{>$bgCYJL=MwNVaLeL^sDE8CbDb?lBW}V=Jn`M#=YET0(p^LvpOpT&tL08N zQ}ymY>-x2J3Ud5lRN$+E0`F||drxys??S2dXmoi|RilXUsxjTUO9SN-;TI}E=9Ddh z`8-z&{6u%%r>9y~WM6c|1p|Z!O5u6bmV`O(M)TGi4Hahm2}aA*HyAMUzU$8E!4`db zCS8dsP+a(9`jW22Cd{e5Fwe~xQIMPK~L=&9$pjfp;$5(eGoZA-|$MM;bQ%+XW(~@9dGEBnLs*x5!EhsmO0jPjZcKXyf^4a69%)wSfFUmta2sL=d<+wBS-N^F$s2$M zDE@+M&RIpOBj`?}A+5aV7^Q}3M0c?w0(-@`Jx^$PqJ1>)NA>?KK&7Jhg$BJBCIH@3 z8l%O1Tu(3R8t;0qUJp?pSsd$66X*{M_inG`gn*duB$*CMfg+!J^pPZoPfOn(FV#X>JG68g% z>mcg)F;x%-YjOdct6e?>v0V5LwBNEFMk?INd;v_%R!gu@qc2JfrNY3~+v3Jj=xTAz z0sxJlu7}KSb*ne?YJA!zSyo&(9Vc0R-b0g>Hwa7ik{$Z@Tl!&(OAa!q0lAdgm0uzKK1qrXw{(FOo6zpYu>bTtur0dolNU_jZE4Rk%`m~GVl;r zG^myS3^?-^#c$?=-b0i5B#f2$qQ;nhQh^<|Rc$j^mw=7Iniz7Ed8EXEy#&1;48N}C z{|4>d%OP~r35cROnzfRU?^Hqp=ODqx-UQXG3%ov)J9S!rKRg9pAut6%bkJ6}XqD9) z5Qmrp>o^1+9iX!3I{9;2eUpBMHncyme2H4=&b92%9P*fJLL4|6=P5KmG_ z%WN7^7QW{t&h2-6q)grTdGH{~8((>Y%whJhl6Jg&Vh${bzj}WKKK?WV=z5T=1?_+p zv;jyOR)yYydaP_9iEV8tZ5Q%>Cdu1L`+aS;iT<{Kv4xZ4%~e~IevIF%(+=g`Noslf zf>8^4b#gHnpI4_V%12ctQ+zZ(K7yVas7*j_h?rpmyGZAbW)G*3P9CH>Wa*95O#9z! z$$iwbK(_RGe3aUpEQaCPl@Ud9K^M1oX6FM|Z1t3grviTu;~u;a582B!8)O|TzmAj5 z*%??`9a%rQ`6qd)pK}v|}d@hG7)x0j`Pt84jWHmgsDC;;bV|Kob) z*u~ziHYEqB6PBVGPt6dY;i7XqfXNA(`#3}3w611kI?5*VfUz@v>~)a{M?X8fMuf4l z9t<CdJnpMF$1Q!fTg2SH?6BFYs=m5s;dbaPwf!wV}<}nj++f>@w74;r{2C3 z&jMd@D?<}hmph7YSXT^;4gj){0Az|YVo9n(uATu%snu~km&4{zKBQ-kO_mM~s`gD< zGz(K^0@+kShDKKe^e8N$U7x-E?W`it6RpQr6YPDo0zgsr<|;LDa7;QZYp7#bDVf1M zDIh?K5DlQ-Lkbm`Ro$Is0u1Z4bjoP2L7MieuF7^+&|NyG__bTffD4fUacv^K9e1JF zAViPAypDE_uvafZ$45^lw2ya?GS

      3AwPR_2QftMc!vP^DBXP3b9|wDSc5XnUi|T zb~d?%Wb}-#^TK)BHqigYa?j}?6u5Be?DI(B){K6VyS&M`RU&8^ zyPCf29i_~_tjLt;PNsOxnI{`(vpNz89{p)9c$F-N=7I>52@MgSk9K|_>zDP6tjIKT zBGf;t>+g!i#0hnAtafqJYg`w7`CI%ulj>v$>lp4EqoOf$#t9+`7E{trm{ny?@R~%) zaNrGRDkM7ad&y#N4t11d2M!4E_HD4-Apm#BO!=sJax3%9iC3Oo+FEzsp0Vl!`O9=ei-J>$zIk;%@h zIYS8oJ%DtOVm-C69)>`U@z>a4S^{7F9hV^K^VXIcLXLNYRwvZ7LB~EFRbm>2s*Yio zzlwUtHAWkE==h!m`Xzk0_n|7 zef)T<-Re#TCy$)B)ZAWTB)qE_h~Vu*m%I4*qB{8whhi|k%Cy7UY+4c`K^|#>*3QfA zC)-C>;@YBIy6t3?Ot*4hcudLmj1Zb#Q~xczcdN(oo?&|nS1Af{(858VI1sv!^I$x` zcyw|x9G$lJc3O(bKa305dlv=l+X8%JL4>fh7&uu1VvyHrT4He!z8@gyY*g8%pLrg@ z>QP4=+Hs+p+YzuicFUqwJfcVpPMDuAMr@kgz5#0A`ESW2`Glqtw^30~9wh)Xg|_?W zFymnX+ zGmfYqTV_juXAlHr@+^U`; zm&RBxC1ss;fs~a9NfEQ@>|`cQWNgTR-tGyzgc(?+qT}A>qp{^YH?gTX8tLA*6Pgi` zyeM-Kpg}h43ll$AXa>0cCP{_@qt68T%e-GBFu&0Hf}buk0kJQ5q4Rzlw`W8$Qz?Z$ zGBvbZvsa7&!P%fv2d?$(>R1qStMd1-V?HE)KV~7sqS{s!3S(weh*87 z@v5lZ=UO^bohdkKqbuoN`E;q@h!N8};ZiLy5J6Lut1(!uv6JZ9!y}&xVdjJ%$s{u# zE|Y^^1X-F`YeYVppwFi=pc0y;>d^}uej_ItRS#Yrxq+p>mRAN|oGvQr+6b1S5wr; zGzu;etLPOYYZahzM(`rs$`Wf^T52St)SK(cgqv9x9~7;tcKl(x=t#4rlGw0rgR9$6lMF-_gW~hBH>5Tv{?`qr~yZ{$)6= zLUlkdpA~%oMFhkCY47VYQcwf(Qy}L0uR`^A|tlXfT@>Mo`ShtIIrj`;)$Xc@CEOJ4~(M@l_|UHUya=Y=H(78 zsg!SAdsS#SCw2w_J)CQoJGUcIu>1JAu67__b!`Ut2H*n%CL2Ez?YnReSm^jy*BElj z#EEa!M+)o&K3tT@?;;{BBpHW?b&C@Gdj%JAl6M9&vyJG?Pz%Aa`m&$UNQ#@M@S~^9wf;U1!oHSYsC=3-i zBYqBC=Os{5RDRt2I~|@8z}vWr1-dMxg2*~t2p4GCVVspr2PUv+;Yz86Qnf6Pm#Zd@j;~H|>CF%oy#Do4uS8XNM;cZe6KJU&j zM7xXK)pi}xDSGzmcJTm9GnT3hSS{a|;&p_&?F9}VX`M^>vUiluV^=1oj%Hn0tfZs4 zN;+|7t0X{74bBJH8OvscpZ@Xq@_=DM9nblZ&+7xt5Q^c_qQ=ftGYkqEc{s*71cEd7Opa0Q&wwIp&xc9sL`}3dg z;`vpc|6xzl5P{^*(lGY44XrJ&#Zg1CVT!+|U|I|%;9ymapbh@=v9l67Yoca}nDg{- zHWMg&O#!mKryUy@>rzQTtc!a@hAwJgj|9J`xRvq5wzQHh;nn%d>$fXel{?QIi%RBjSl zc8#lnQUOI6h^EnGVYg%UOwWe_WE=GZ#f!BhOf2aI8y#kQ!bM-1zOc={=CvYdGzVJg zl9=M|%Cf{6{s&wjbKg7pc&Z3rmr2rKkLF=}EAy2uW-6DtX%hEWG9tMEDKD!c`K5li zgo<{yYX-di@WbUjD6=;gc+`@mq2rjg*?>!exS&=L4is@r5CtUD(V|wC2JAr7f-oIu z3I^%e7@ejGX+=RbnLrT}9nxrRVpc#EChWI0(I*+A4NnT)sa_?O-TuCj6}stPE(^wR zCUlwm?jtai&UNEg*(BT|jIt<`7>iw3+HR|C?NYK`46SJLp%l?(E$!7taSXwqyDn$~ z#xuMByPl%s1lMyK>0rI^rTovM<3b7|k)^6r*tc%qRH6uQAl)89x~w`PrT4daM)8{u zKI8I8fNL%?5d#_YzXksJ== z{My&LyDtB~eH%jzVep%d?n9-(^kjaM!29sS1dg6h=tM!7yo}^-ggI}}wU^BjQg522 zD^Z9WFLQ~SV3|lz;wwPnx^$-q?PxOS9#h$BA~4U0_F(59Msq)+X`sQSfRwS(3{Ji_Uw2CaB=7R4CT7V1ew@ONn@)(=P2jqU)`i0P zCvf3vjPA8Z=9UJR8&_;O9M|pSmT&SD8E8(C<2Kt@t=UE(PAR?E;HEr*#$987KZi>F# zSORB&n^Dpm;x%FX1QnS;^3v5~2?WyB-Xk7my-a|PO`fL|*r=&G7A%-lOfiC>8+Ei2 zWef{c4k%MBpvd$X0Js*o7wIwz+f%e&8DsT4M6XN$dhVN3p)W!O<}R z1A@Cwp>Io(Zz13prkjIWjbO5tL9#+G z4(CcySUCHZfUYuFE0$e3U{$03V}(G)W?g>jI_OgXO+s1@?X(#o@du@31l6<|6$Ue< z5+6ue+)-=;ZiqKp2@@L3J2{jPLM`M9kh00piZp0 z8hFli0+1=C?kPORTSXxz#;%Y7cBN@(&V~q&GQoFT2f&W9mBKnmqYVKP)?BmO=H(Jl z#M`%&i1w?yrJBL5@uIT-9|J*